/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 77 ms] (28) YES (29) QDP (30) QDPOrderProof [EQUIVALENT, 99 ms] (31) QDP (32) DependencyGraphProof [EQUIVALENT, 0 ms] (33) QDP (34) QDPSizeChangeProof [EQUIVALENT, 0 ms] (35) YES (36) QDP (37) QDPSizeChangeProof [EQUIVALENT, 0 ms] (38) YES (39) QDP (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] (41) YES (42) QDP (43) TransformationProof [EQUIVALENT, 3826 ms] (44) QDP (45) TransformationProof [EQUIVALENT, 0 ms] (46) QDP (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] (48) YES (49) QDP (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] (51) YES (52) QDP (53) QDPSizeChangeProof [EQUIVALENT, 0 ms] (54) YES (55) QDP (56) QDPSizeChangeProof [EQUIVALENT, 0 ms] (57) YES (58) QDP (59) QDPSizeChangeProof [EQUIVALENT, 0 ms] (60) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C (\old new ->new) fm key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap 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 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 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 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 :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = 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 a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap 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 :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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 a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt fm_l@(Branch key_l elt_l _ fm_ll fm_lr) fm_r@(Branch key_r elt_r _ fm_rl fm_rr) | sIZE_RATIO * size_l < size_r = mkBalBranch key_r elt_r (mkVBalBranch key elt fm_l fm_rl) fm_rr | sIZE_RATIO * size_r < size_l = mkBalBranch key_l elt_l fm_ll (mkVBalBranch key elt fm_lr fm_r) | otherwise = mkBranch 13 key elt fm_l fm_r where { size_l = sizeFM fm_l; size_r = sizeFM fm_r; }; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 _ left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt _ fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt _ fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. Binding Reductions: The bind variable of the following binding Pattern "fm_l@(Branch vuv vuw vux vuy vuz)" is replaced by the following term "Branch vuv vuw vux vuy vuz" The bind variable of the following binding Pattern "fm_r@(Branch vvv vvw vvx vvy vvz)" is replaced by the following term "Branch vvv vvw vvx vvy vvz" ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord 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 b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkVBalBranch key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) | sIZE_RATIO * size_l < size_r = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz | sIZE_RATIO * size_r < size_l = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)) | otherwise = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) where { size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; plusFM :: Ord a => FiniteMap a b -> FiniteMap a b -> FiniteMap a b; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; lts = splitLT fm1 split_key; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = emptyFM; splitGT (Branch key elt vwu fm_l fm_r) split_key | split_key > key = splitGT fm_r split_key | split_key < key = mkVBalBranch key elt (splitGT fm_l split_key) fm_r | otherwise = fm_r; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = emptyFM; splitLT (Branch key elt vwv fm_l fm_r) split_key | split_key < key = splitLT fm_l split_key | split_key > key = mkVBalBranch key elt fm_l (splitLT fm_r split_key) | otherwise = fm_l; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; " "gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wwz wxu = gcd3 wwz wxu; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; ; gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; } ; " "gcd1 True wwz wxu = error []; gcd1 wxv wxw wxx = gcd0 wxw wxx; " "gcd2 True wwz wxu = gcd1 (wxu == 0) wwz wxu; gcd2 wxy wxz wyu = gcd0 wxz wyu; " "gcd3 wwz wxu = gcd2 (wwz == 0) wwz wxu; gcd3 wyv wyw = gcd0 wyv wyw; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_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; " "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); " "splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; " "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; " "splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); " "splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; " "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; " "splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); " "splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); " "mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; " "mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); size_l = sizeFM (Branch vuv vuw vux vuy vuz); size_r = sizeFM (Branch vvv vvw vvx vvy vvz); }; mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord 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 b => FiniteMap b a -> b -> FiniteMap b a; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x wvz = gcd'2 x wvz; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x wvz = x; gcd'1 wwu wwv www = gcd'0 wwv www; ; gcd'2 x wvz = gcd'1 (wvz == 0) x wvz; gcd'2 wwx wwy = gcd'0 wwx wwy; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x wvz = x; gcd0Gcd'1 wwu wwv www = gcd0Gcd'0 wwv www; " "gcd0Gcd'2 x wvz = gcd0Gcd'1 (wvz == 0) x wvz; gcd0Gcd'2 wwx wwy = gcd0Gcd'0 wwx wwy; " "gcd0Gcd' x wvz = gcd0Gcd'2 x wvz; gcd0Gcd' x y = gcd0Gcd'0 x y; " 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); " "reduce2Reduce1 xxv xxw x y True = error []; reduce2Reduce1 xxv xxw x y False = reduce2Reduce0 xxv xxw x y otherwise; " "reduce2D xxv xxw = gcd xxv xxw; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "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); " "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; " "mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; " "mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); " "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; " "mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; " "mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xxz; " "mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xyu; " "mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); " "mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; " "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_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); " "mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "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); " "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); " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key vww vwx vwy vwz) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vxu vxv vxw vxx) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; " "mkBranchRight_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; " "mkBranchLeft_size xyv xyw xyx = sizeFM xyv; " "mkBranchBalance_ok xyv xyw xyx = True; " "mkBranchUnbox xyv xyw xyx x = x; " "mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; " "mkBranchRight_size xyv xyw xyx = sizeFM xyx; " "mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; " The bindings of the following Let/Where expression "mkVBalBranch split_key elt1 (plusFM lts left) (plusFM gts right) where { gts = splitGT fm1 split_key; ; lts = splitLT fm1 split_key; } " are unpacked to the following functions on top level "plusFMGts xzw xzx = splitGT xzw xzx; " "plusFMLts xzw xzx = splitLT xzw xzx; " The bindings of the following Let/Where expression "mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_l < size_r) where { mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch 13 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); ; mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch0 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; ; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch2 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch1 key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * size_r < size_l); ; size_l = sizeFM (Branch vuv vuw vux vuy vuz); ; size_r = sizeFM (Branch vvv vvw vvx vvy vvz); } " are unpacked to the following functions on top level "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; " "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); " "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); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord a => FiniteMap a b -> a -> b -> FiniteMap a b; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < 2); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 xxx xxy fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 xxx xxy fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 xxx xxy fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 xxx xxy fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xyu; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xxz; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (1 + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); mkBranchRight_size xyv xyw xyx = sizeFM xyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord 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 :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addToFM :: Ord b => FiniteMap b a -> b -> a -> FiniteMap b a; addToFM fm key elt = addToFM_C addToFM0 fm key elt; addToFM0 old new = new; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 wyz wzu wzv wzw = addToFM_C3 wyz wzu wzv wzw; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vxy vxz EmptyFM) = (key,elt); findMax (Branch key elt vyu vyv fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt wvv EmptyFM wvw) = (key,elt); findMin (Branch key elt wvx fm_l wvy) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt wuw fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_R fm_L key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_R fm_L + mkBalBranch6Size_r key elt fm_R fm_L < Pos (Succ (Succ Zero))); mkBalBranch6Double_L xxx xxy xxz xyu fm_l (Branch key_r elt_r vzw (Branch key_rl elt_rl vzx fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xxx xxy fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R xxx xxy xxz xyu (Branch key_l elt_l vyx fm_ll (Branch key_lr elt_lr vyy fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xxx xxy fm_lrr fm_r); mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr); mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Double_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr True = mkBalBranch6Single_L xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr False = mkBalBranch6MkBalBranch00 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 xxx xxy xxz xyu fm_L fm_R (Branch vzy vzz wuu fm_rl fm_rr) = mkBalBranch6MkBalBranch01 xxx xxy xxz xyu fm_L fm_R vzy vzz wuu fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr); mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Double_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr True = mkBalBranch6Single_R xxx xxy xxz xyu fm_L fm_R; mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr False = mkBalBranch6MkBalBranch10 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 xxx xxy xxz xyu fm_L fm_R (Branch vyz vzu vzv fm_ll fm_lr) = mkBalBranch6MkBalBranch11 xxx xxy xxz xyu fm_L fm_R vyz vzu vzv fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 xxx xxy xxz xyu fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 xxx xxy xxz xyu key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 xxx xxy xxz xyu fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_l xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_r xxx xxy xxz xyu); mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 xxx xxy xxz xyu key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 xxx xxy xxz xyu key elt fm_L fm_R (mkBalBranch6Size_r xxx xxy xxz xyu > sIZE_RATIO * mkBalBranch6Size_l xxx xxy xxz xyu); mkBalBranch6Single_L xxx xxy xxz xyu fm_l (Branch key_r elt_r wuv fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xxx xxy fm_l fm_rl) fm_rr; mkBalBranch6Single_R xxx xxy xxz xyu (Branch key_l elt_l vyw fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xxx xxy fm_lr fm_r); mkBalBranch6Size_l xxx xxy xxz xyu = sizeFM xyu; mkBalBranch6Size_r xxx xxy xxz xyu = sizeFM xxz; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; mkBranchBalance_ok xyv xyw xyx = True; mkBranchLeft_ok xyv xyw xyx = mkBranchLeft_ok0 xyv xyw xyx xyv xyw xyv; mkBranchLeft_ok0 xyv xyw xyx fm_l key EmptyFM = True; mkBranchLeft_ok0 xyv xyw xyx fm_l key (Branch left_key vww vwx vwy vwz) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key yvx = fst (findMax yvx); mkBranchLeft_size xyv xyw xyx = sizeFM xyv; mkBranchResult xyy xyz xzu xzv = Branch xyy xyz (mkBranchUnbox xzu xyy xzv (Pos (Succ Zero) + mkBranchLeft_size xzu xyy xzv + mkBranchRight_size xzu xyy xzv)) xzu xzv; mkBranchRight_ok xyv xyw xyx = mkBranchRight_ok0 xyv xyw xyx xyx xyw xyx; mkBranchRight_ok0 xyv xyw xyx fm_r key EmptyFM = True; mkBranchRight_ok0 xyv xyw xyx fm_r key (Branch right_key vxu vxv vxw vxx) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key yvw = fst (findMin yvw); mkBranchRight_size xyv xyw xyx = sizeFM xyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox xyv xyw xyx x = x; mkVBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkVBalBranch key elt EmptyFM fm_r = mkVBalBranch5 key elt EmptyFM fm_r; mkVBalBranch key elt fm_l EmptyFM = mkVBalBranch4 key elt fm_l EmptyFM; mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3 key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz) = mkVBalBranch3MkVBalBranch2 vvv vvw vvx vvy vvz vuv vuw vux vuy vuz key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_l vvv vvw vvx vvy vvz vuv vuw vux vuy vuz < mkVBalBranch3Size_r vvv vvw vvx vvy vvz vuv vuw vux vuy vuz); mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) key elt (Branch vuv vuw vux vuy vuz) (Branch vvv vvw vvx vvy vvz); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vuv vuw vuy (mkVBalBranch key elt vuz (Branch vvv vvw vvx vvy vvz)); mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch0 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz otherwise; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz True = mkBalBranch vvv vvw (mkVBalBranch key elt (Branch vuv vuw vux vuy vuz) vvy) vvz; mkVBalBranch3MkVBalBranch2 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz False = mkVBalBranch3MkVBalBranch1 xzy xzz yuu yuv yuw yux yuy yuz yvu yvv key elt vuv vuw vux vuy vuz vvv vvw vvx vvy vvz (sIZE_RATIO * mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv < mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv); mkVBalBranch3Size_l xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch yux yuy yuz yvu yvv); mkVBalBranch3Size_r xzy xzz yuu yuv yuw yux yuy yuz yvu yvv = sizeFM (Branch xzy xzz yuu yuv yuw); mkVBalBranch4 key elt fm_l EmptyFM = addToFM fm_l key elt; mkVBalBranch4 xuu xuv xuw xux = mkVBalBranch3 xuu xuv xuw xux; mkVBalBranch5 key elt EmptyFM fm_r = addToFM fm_r key elt; mkVBalBranch5 xuz xvu xvv xvw = mkVBalBranch4 xuz xvu xvv xvw; plusFM :: Ord b => FiniteMap b a -> FiniteMap b a -> FiniteMap b a; plusFM EmptyFM fm2 = fm2; plusFM fm1 EmptyFM = fm1; plusFM fm1 (Branch split_key elt1 zz left right) = mkVBalBranch split_key elt1 (plusFM (plusFMLts fm1 split_key) left) (plusFM (plusFMGts fm1 split_key) right); plusFMGts xzw xzx = splitGT xzw xzx; plusFMLts xzw xzx = splitLT xzw xzx; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch wux wuy size wuz wvu) = size; splitGT :: Ord a => FiniteMap a b -> a -> FiniteMap a b; splitGT EmptyFM split_key = splitGT4 EmptyFM split_key; splitGT (Branch key elt vwu fm_l fm_r) split_key = splitGT3 (Branch key elt vwu fm_l fm_r) split_key; splitGT0 key elt vwu fm_l fm_r split_key True = fm_r; splitGT1 key elt vwu fm_l fm_r split_key True = mkVBalBranch key elt (splitGT fm_l split_key) fm_r; splitGT1 key elt vwu fm_l fm_r split_key False = splitGT0 key elt vwu fm_l fm_r split_key otherwise; splitGT2 key elt vwu fm_l fm_r split_key True = splitGT fm_r split_key; splitGT2 key elt vwu fm_l fm_r split_key False = splitGT1 key elt vwu fm_l fm_r split_key (split_key < key); splitGT3 (Branch key elt vwu fm_l fm_r) split_key = splitGT2 key elt vwu fm_l fm_r split_key (split_key > key); splitGT4 EmptyFM split_key = emptyFM; splitGT4 xvz xwu = splitGT3 xvz xwu; splitLT :: Ord b => FiniteMap b a -> b -> FiniteMap b a; splitLT EmptyFM split_key = splitLT4 EmptyFM split_key; splitLT (Branch key elt vwv fm_l fm_r) split_key = splitLT3 (Branch key elt vwv fm_l fm_r) split_key; splitLT0 key elt vwv fm_l fm_r split_key True = fm_l; splitLT1 key elt vwv fm_l fm_r split_key True = mkVBalBranch key elt fm_l (splitLT fm_r split_key); splitLT1 key elt vwv fm_l fm_r split_key False = splitLT0 key elt vwv fm_l fm_r split_key otherwise; splitLT2 key elt vwv fm_l fm_r split_key True = splitLT fm_l split_key; splitLT2 key elt vwv fm_l fm_r split_key False = splitLT1 key elt vwv fm_l fm_r split_key (split_key > key); splitLT3 (Branch key elt vwv fm_l fm_r) split_key = splitLT2 key elt vwv fm_l fm_r split_key (split_key < key); splitLT4 EmptyFM split_key = emptyFM; splitLT4 xwx xwy = splitLT3 xwx xwy; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.plusFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.plusFM yvy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.plusFM yvy3 yvy4",fontsize=16,color="burlywood",shape="triangle"];3651[label="yvy3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3651[label="",style="solid", color="burlywood", weight=9]; 3651 -> 5[label="",style="solid", color="burlywood", weight=3]; 3652[label="yvy3/FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3652[label="",style="solid", color="burlywood", weight=9]; 3652 -> 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"];3653[label="yvy4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 3653[label="",style="solid", color="burlywood", weight=9]; 3653 -> 8[label="",style="solid", color="burlywood", weight=3]; 3654[label="yvy4/FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44",fontsize=10,color="white",style="solid",shape="box"];6 -> 3654[label="",style="solid", color="burlywood", weight=9]; 3654 -> 9[label="",style="solid", color="burlywood", weight=3]; 7[label="yvy4",fontsize=16,color="green",shape="box"];8[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.plusFM (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) (FiniteMap.Branch yvy40 yvy41 yvy42 yvy43 yvy44)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34",fontsize=16,color="green",shape="box"];11 -> 12[label="",style="dashed", color="red", weight=0]; 11[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43) (FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44)",fontsize=16,color="magenta"];11 -> 13[label="",style="dashed", color="magenta", weight=3]; 11 -> 14[label="",style="dashed", color="magenta", weight=3]; 13 -> 4[label="",style="dashed", color="red", weight=0]; 13[label="FiniteMap.plusFM (FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy44",fontsize=16,color="magenta"];13 -> 15[label="",style="dashed", color="magenta", weight=3]; 13 -> 16[label="",style="dashed", color="magenta", weight=3]; 14 -> 4[label="",style="dashed", color="red", weight=0]; 14[label="FiniteMap.plusFM (FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40) yvy43",fontsize=16,color="magenta"];14 -> 17[label="",style="dashed", color="magenta", weight=3]; 14 -> 18[label="",style="dashed", color="magenta", weight=3]; 12[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy6 yvy5",fontsize=16,color="burlywood",shape="triangle"];3655[label="yvy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];12 -> 3655[label="",style="solid", color="burlywood", weight=9]; 3655 -> 19[label="",style="solid", color="burlywood", weight=3]; 3656[label="yvy6/FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=10,color="white",style="solid",shape="box"];12 -> 3656[label="",style="solid", color="burlywood", weight=9]; 3656 -> 20[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.plusFMGts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];15 -> 21[label="",style="solid", color="black", weight=3]; 16[label="yvy44",fontsize=16,color="green",shape="box"];17[label="FiniteMap.plusFMLts (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];17 -> 22[label="",style="solid", color="black", weight=3]; 18[label="yvy43",fontsize=16,color="green",shape="box"];19[label="FiniteMap.mkVBalBranch yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy5",fontsize=16,color="burlywood",shape="box"];3657[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];20 -> 3657[label="",style="solid", color="burlywood", weight=9]; 3657 -> 24[label="",style="solid", color="burlywood", weight=3]; 3658[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];20 -> 3658[label="",style="solid", color="burlywood", weight=9]; 3658 -> 25[label="",style="solid", color="burlywood", weight=3]; 21[label="FiniteMap.splitGT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];21 -> 26[label="",style="solid", color="black", weight=3]; 22[label="FiniteMap.splitLT (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="box"];22 -> 27[label="",style="solid", color="black", weight=3]; 23[label="FiniteMap.mkVBalBranch5 yvy40 yvy41 FiniteMap.EmptyFM yvy5",fontsize=16,color="black",shape="box"];23 -> 28[label="",style="solid", color="black", weight=3]; 24[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];24 -> 29[label="",style="solid", color="black", weight=3]; 25[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];25 -> 30[label="",style="solid", color="black", weight=3]; 26[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];26 -> 31[label="",style="solid", color="black", weight=3]; 27[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy30 yvy31 yvy32 yvy33 yvy34) yvy40",fontsize=16,color="black",shape="triangle"];27 -> 32[label="",style="solid", color="black", weight=3]; 28[label="FiniteMap.addToFM yvy5 yvy40 yvy41",fontsize=16,color="black",shape="triangle"];28 -> 33[label="",style="solid", color="black", weight=3]; 29[label="FiniteMap.mkVBalBranch4 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];29 -> 34[label="",style="solid", color="black", weight=3]; 30[label="FiniteMap.mkVBalBranch3 yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="box"];30 -> 35[label="",style="solid", color="black", weight=3]; 31 -> 36[label="",style="dashed", color="red", weight=0]; 31[label="FiniteMap.splitGT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 > yvy30)",fontsize=16,color="magenta"];31 -> 37[label="",style="dashed", color="magenta", weight=3]; 31 -> 38[label="",style="dashed", color="magenta", weight=3]; 31 -> 39[label="",style="dashed", color="magenta", weight=3]; 31 -> 40[label="",style="dashed", color="magenta", weight=3]; 31 -> 41[label="",style="dashed", color="magenta", weight=3]; 31 -> 42[label="",style="dashed", color="magenta", weight=3]; 31 -> 43[label="",style="dashed", color="magenta", weight=3]; 32 -> 44[label="",style="dashed", color="red", weight=0]; 32[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy40 (yvy40 < yvy30)",fontsize=16,color="magenta"];32 -> 45[label="",style="dashed", color="magenta", weight=3]; 32 -> 46[label="",style="dashed", color="magenta", weight=3]; 32 -> 47[label="",style="dashed", color="magenta", weight=3]; 32 -> 48[label="",style="dashed", color="magenta", weight=3]; 32 -> 49[label="",style="dashed", color="magenta", weight=3]; 32 -> 50[label="",style="dashed", color="magenta", weight=3]; 32 -> 51[label="",style="dashed", color="magenta", weight=3]; 33[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy5 yvy40 yvy41",fontsize=16,color="burlywood",shape="triangle"];3659[label="yvy5/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];33 -> 3659[label="",style="solid", color="burlywood", weight=9]; 3659 -> 52[label="",style="solid", color="burlywood", weight=3]; 3660[label="yvy5/FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=10,color="white",style="solid",shape="box"];33 -> 3660[label="",style="solid", color="burlywood", weight=9]; 3660 -> 53[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 -> 54[label="",style="dashed", color="magenta", weight=3]; 35 -> 277[label="",style="dashed", color="red", weight=0]; 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="magenta"];35 -> 278[label="",style="dashed", color="magenta", weight=3]; 37[label="yvy34",fontsize=16,color="green",shape="box"];38[label="yvy33",fontsize=16,color="green",shape="box"];39[label="yvy40 > yvy30",fontsize=16,color="blue",shape="box"];3661[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3661[label="",style="solid", color="blue", weight=9]; 3661 -> 56[label="",style="solid", color="blue", weight=3]; 3662[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 57[label="",style="solid", color="blue", weight=3]; 3663[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 58[label="",style="solid", color="blue", weight=3]; 3664[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 59[label="",style="solid", color="blue", weight=3]; 3665[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 60[label="",style="solid", color="blue", weight=3]; 3666[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 61[label="",style="solid", color="blue", weight=3]; 3667[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 62[label="",style="solid", color="blue", weight=3]; 3668[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 63[label="",style="solid", color="blue", weight=3]; 3669[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 64[label="",style="solid", color="blue", weight=3]; 3670[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 65[label="",style="solid", color="blue", weight=3]; 3671[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 66[label="",style="solid", color="blue", weight=3]; 3672[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 67[label="",style="solid", color="blue", weight=3]; 3673[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 68[label="",style="solid", color="blue", weight=3]; 3674[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];39 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 69[label="",style="solid", color="blue", weight=3]; 40[label="yvy31",fontsize=16,color="green",shape="box"];41[label="yvy30",fontsize=16,color="green",shape="box"];42[label="yvy32",fontsize=16,color="green",shape="box"];43[label="yvy40",fontsize=16,color="green",shape="box"];36[label="FiniteMap.splitGT2 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 yvy21",fontsize=16,color="burlywood",shape="triangle"];3675[label="yvy21/False",fontsize=10,color="white",style="solid",shape="box"];36 -> 3675[label="",style="solid", color="burlywood", weight=9]; 3675 -> 70[label="",style="solid", color="burlywood", weight=3]; 3676[label="yvy21/True",fontsize=10,color="white",style="solid",shape="box"];36 -> 3676[label="",style="solid", color="burlywood", weight=9]; 3676 -> 71[label="",style="solid", color="burlywood", weight=3]; 45[label="yvy32",fontsize=16,color="green",shape="box"];46[label="yvy40",fontsize=16,color="green",shape="box"];47[label="yvy40 < yvy30",fontsize=16,color="blue",shape="box"];3677[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 72[label="",style="solid", color="blue", weight=3]; 3678[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 73[label="",style="solid", color="blue", weight=3]; 3679[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 74[label="",style="solid", color="blue", weight=3]; 3680[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 75[label="",style="solid", color="blue", weight=3]; 3681[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3681[label="",style="solid", color="blue", weight=9]; 3681 -> 76[label="",style="solid", color="blue", weight=3]; 3682[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3682[label="",style="solid", color="blue", weight=9]; 3682 -> 77[label="",style="solid", color="blue", weight=3]; 3683[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3683[label="",style="solid", color="blue", weight=9]; 3683 -> 78[label="",style="solid", color="blue", weight=3]; 3684[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3684[label="",style="solid", color="blue", weight=9]; 3684 -> 79[label="",style="solid", color="blue", weight=3]; 3685[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3685[label="",style="solid", color="blue", weight=9]; 3685 -> 80[label="",style="solid", color="blue", weight=3]; 3686[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 81[label="",style="solid", color="blue", weight=3]; 3687[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 82[label="",style="solid", color="blue", weight=3]; 3688[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3688[label="",style="solid", color="blue", weight=9]; 3688 -> 83[label="",style="solid", color="blue", weight=3]; 3689[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3689[label="",style="solid", color="blue", weight=9]; 3689 -> 84[label="",style="solid", color="blue", weight=3]; 3690[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];47 -> 3690[label="",style="solid", color="blue", weight=9]; 3690 -> 85[label="",style="solid", color="blue", weight=3]; 48[label="yvy33",fontsize=16,color="green",shape="box"];49[label="yvy34",fontsize=16,color="green",shape="box"];50[label="yvy31",fontsize=16,color="green",shape="box"];51[label="yvy30",fontsize=16,color="green",shape="box"];44[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 yvy36",fontsize=16,color="burlywood",shape="triangle"];3691[label="yvy36/False",fontsize=10,color="white",style="solid",shape="box"];44 -> 3691[label="",style="solid", color="burlywood", weight=9]; 3691 -> 86[label="",style="solid", color="burlywood", weight=3]; 3692[label="yvy36/True",fontsize=10,color="white",style="solid",shape="box"];44 -> 3692[label="",style="solid", color="burlywood", weight=9]; 3692 -> 87[label="",style="solid", color="burlywood", weight=3]; 52[label="FiniteMap.addToFM_C FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];52 -> 88[label="",style="solid", color="black", weight=3]; 53[label="FiniteMap.addToFM_C FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];53 -> 89[label="",style="solid", color="black", weight=3]; 54[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];278 -> 74[label="",style="dashed", color="red", weight=0]; 278[label="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="magenta"];278 -> 283[label="",style="dashed", color="magenta", weight=3]; 278 -> 284[label="",style="dashed", color="magenta", weight=3]; 277[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 yvy84",fontsize=16,color="burlywood",shape="triangle"];3693[label="yvy84/False",fontsize=10,color="white",style="solid",shape="box"];277 -> 3693[label="",style="solid", color="burlywood", weight=9]; 3693 -> 285[label="",style="solid", color="burlywood", weight=3]; 3694[label="yvy84/True",fontsize=10,color="white",style="solid",shape="box"];277 -> 3694[label="",style="solid", color="burlywood", weight=9]; 3694 -> 286[label="",style="solid", color="burlywood", weight=3]; 56[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];56 -> 91[label="",style="solid", color="black", weight=3]; 57[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];57 -> 92[label="",style="solid", color="black", weight=3]; 58[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];58 -> 93[label="",style="solid", color="black", weight=3]; 59[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];59 -> 94[label="",style="solid", color="black", weight=3]; 60[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];60 -> 95[label="",style="solid", color="black", weight=3]; 61[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];61 -> 96[label="",style="solid", color="black", weight=3]; 62[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];62 -> 97[label="",style="solid", color="black", weight=3]; 63[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];63 -> 98[label="",style="solid", color="black", weight=3]; 64[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];64 -> 99[label="",style="solid", color="black", weight=3]; 65[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];65 -> 100[label="",style="solid", color="black", weight=3]; 66[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];66 -> 101[label="",style="solid", color="black", weight=3]; 67[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];67 -> 102[label="",style="solid", color="black", weight=3]; 68[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];68 -> 103[label="",style="solid", color="black", weight=3]; 69[label="yvy40 > yvy30",fontsize=16,color="black",shape="triangle"];69 -> 104[label="",style="solid", color="black", weight=3]; 70[label="FiniteMap.splitGT2 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 False",fontsize=16,color="black",shape="box"];70 -> 105[label="",style="solid", color="black", weight=3]; 71[label="FiniteMap.splitGT2 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 True",fontsize=16,color="black",shape="box"];71 -> 106[label="",style="solid", color="black", weight=3]; 72[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];72 -> 107[label="",style="solid", color="black", weight=3]; 73[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];73 -> 108[label="",style="solid", color="black", weight=3]; 74[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];74 -> 109[label="",style="solid", color="black", weight=3]; 75[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];75 -> 110[label="",style="solid", color="black", weight=3]; 76[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];76 -> 111[label="",style="solid", color="black", weight=3]; 77[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];77 -> 112[label="",style="solid", color="black", weight=3]; 78[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];78 -> 113[label="",style="solid", color="black", weight=3]; 79[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];79 -> 114[label="",style="solid", color="black", weight=3]; 80[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];80 -> 115[label="",style="solid", color="black", weight=3]; 81[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];81 -> 116[label="",style="solid", color="black", weight=3]; 82[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];82 -> 117[label="",style="solid", color="black", weight=3]; 83[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];83 -> 118[label="",style="solid", color="black", weight=3]; 84[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];84 -> 119[label="",style="solid", color="black", weight=3]; 85[label="yvy40 < yvy30",fontsize=16,color="black",shape="triangle"];85 -> 120[label="",style="solid", color="black", weight=3]; 86[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 False",fontsize=16,color="black",shape="box"];86 -> 121[label="",style="solid", color="black", weight=3]; 87[label="FiniteMap.splitLT2 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 True",fontsize=16,color="black",shape="box"];87 -> 122[label="",style="solid", color="black", weight=3]; 88[label="FiniteMap.addToFM_C4 FiniteMap.addToFM0 FiniteMap.EmptyFM yvy40 yvy41",fontsize=16,color="black",shape="box"];88 -> 123[label="",style="solid", color="black", weight=3]; 89[label="FiniteMap.addToFM_C3 FiniteMap.addToFM0 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54) yvy40 yvy41",fontsize=16,color="black",shape="box"];89 -> 124[label="",style="solid", color="black", weight=3]; 283 -> 616[label="",style="dashed", color="red", weight=0]; 283[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];283 -> 617[label="",style="dashed", color="magenta", weight=3]; 284[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="black",shape="triangle"];284 -> 433[label="",style="solid", color="black", weight=3]; 285[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 False",fontsize=16,color="black",shape="box"];285 -> 434[label="",style="solid", color="black", weight=3]; 286[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 True",fontsize=16,color="black",shape="box"];286 -> 435[label="",style="solid", color="black", weight=3]; 91 -> 451[label="",style="dashed", color="red", weight=0]; 91[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];91 -> 452[label="",style="dashed", color="magenta", weight=3]; 92 -> 451[label="",style="dashed", color="red", weight=0]; 92[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];92 -> 453[label="",style="dashed", color="magenta", weight=3]; 93 -> 451[label="",style="dashed", color="red", weight=0]; 93[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];93 -> 454[label="",style="dashed", color="magenta", weight=3]; 94 -> 451[label="",style="dashed", color="red", weight=0]; 94[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];94 -> 455[label="",style="dashed", color="magenta", weight=3]; 95 -> 451[label="",style="dashed", color="red", weight=0]; 95[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];95 -> 456[label="",style="dashed", color="magenta", weight=3]; 96 -> 451[label="",style="dashed", color="red", weight=0]; 96[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];96 -> 457[label="",style="dashed", color="magenta", weight=3]; 97 -> 451[label="",style="dashed", color="red", weight=0]; 97[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];97 -> 458[label="",style="dashed", color="magenta", weight=3]; 98 -> 451[label="",style="dashed", color="red", weight=0]; 98[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];98 -> 459[label="",style="dashed", color="magenta", weight=3]; 99 -> 451[label="",style="dashed", color="red", weight=0]; 99[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];99 -> 460[label="",style="dashed", color="magenta", weight=3]; 100 -> 451[label="",style="dashed", color="red", weight=0]; 100[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];100 -> 461[label="",style="dashed", color="magenta", weight=3]; 101 -> 451[label="",style="dashed", color="red", weight=0]; 101[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];101 -> 462[label="",style="dashed", color="magenta", weight=3]; 102 -> 451[label="",style="dashed", color="red", weight=0]; 102[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];102 -> 463[label="",style="dashed", color="magenta", weight=3]; 103 -> 451[label="",style="dashed", color="red", weight=0]; 103[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];103 -> 464[label="",style="dashed", color="magenta", weight=3]; 104 -> 451[label="",style="dashed", color="red", weight=0]; 104[label="compare yvy40 yvy30 == GT",fontsize=16,color="magenta"];104 -> 465[label="",style="dashed", color="magenta", weight=3]; 105 -> 141[label="",style="dashed", color="red", weight=0]; 105[label="FiniteMap.splitGT1 yvy15 yvy16 yvy17 yvy18 yvy19 yvy20 (yvy20 < yvy15)",fontsize=16,color="magenta"];105 -> 142[label="",style="dashed", color="magenta", weight=3]; 105 -> 143[label="",style="dashed", color="magenta", weight=3]; 105 -> 144[label="",style="dashed", color="magenta", weight=3]; 105 -> 145[label="",style="dashed", color="magenta", weight=3]; 105 -> 146[label="",style="dashed", color="magenta", weight=3]; 105 -> 147[label="",style="dashed", color="magenta", weight=3]; 105 -> 148[label="",style="dashed", color="magenta", weight=3]; 106[label="FiniteMap.splitGT yvy19 yvy20",fontsize=16,color="burlywood",shape="triangle"];3695[label="yvy19/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];106 -> 3695[label="",style="solid", color="burlywood", weight=9]; 3695 -> 149[label="",style="solid", color="burlywood", weight=3]; 3696[label="yvy19/FiniteMap.Branch yvy190 yvy191 yvy192 yvy193 yvy194",fontsize=10,color="white",style="solid",shape="box"];106 -> 3696[label="",style="solid", color="burlywood", weight=9]; 3696 -> 150[label="",style="solid", color="burlywood", weight=3]; 107 -> 545[label="",style="dashed", color="red", weight=0]; 107[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];107 -> 546[label="",style="dashed", color="magenta", weight=3]; 108 -> 545[label="",style="dashed", color="red", weight=0]; 108[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];108 -> 547[label="",style="dashed", color="magenta", weight=3]; 109 -> 545[label="",style="dashed", color="red", weight=0]; 109[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];109 -> 548[label="",style="dashed", color="magenta", weight=3]; 110 -> 545[label="",style="dashed", color="red", weight=0]; 110[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];110 -> 549[label="",style="dashed", color="magenta", weight=3]; 111 -> 545[label="",style="dashed", color="red", weight=0]; 111[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];111 -> 550[label="",style="dashed", color="magenta", weight=3]; 112 -> 545[label="",style="dashed", color="red", weight=0]; 112[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];112 -> 551[label="",style="dashed", color="magenta", weight=3]; 113 -> 545[label="",style="dashed", color="red", weight=0]; 113[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];113 -> 552[label="",style="dashed", color="magenta", weight=3]; 114 -> 545[label="",style="dashed", color="red", weight=0]; 114[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];114 -> 553[label="",style="dashed", color="magenta", weight=3]; 115 -> 545[label="",style="dashed", color="red", weight=0]; 115[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];115 -> 554[label="",style="dashed", color="magenta", weight=3]; 116 -> 545[label="",style="dashed", color="red", weight=0]; 116[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];116 -> 555[label="",style="dashed", color="magenta", weight=3]; 117 -> 545[label="",style="dashed", color="red", weight=0]; 117[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];117 -> 556[label="",style="dashed", color="magenta", weight=3]; 118 -> 545[label="",style="dashed", color="red", weight=0]; 118[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];118 -> 557[label="",style="dashed", color="magenta", weight=3]; 119 -> 545[label="",style="dashed", color="red", weight=0]; 119[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];119 -> 558[label="",style="dashed", color="magenta", weight=3]; 120 -> 545[label="",style="dashed", color="red", weight=0]; 120[label="compare yvy40 yvy30 == LT",fontsize=16,color="magenta"];120 -> 559[label="",style="dashed", color="magenta", weight=3]; 121 -> 166[label="",style="dashed", color="red", weight=0]; 121[label="FiniteMap.splitLT1 yvy30 yvy31 yvy32 yvy33 yvy34 yvy35 (yvy35 > yvy30)",fontsize=16,color="magenta"];121 -> 167[label="",style="dashed", color="magenta", weight=3]; 121 -> 168[label="",style="dashed", color="magenta", weight=3]; 121 -> 169[label="",style="dashed", color="magenta", weight=3]; 121 -> 170[label="",style="dashed", color="magenta", weight=3]; 121 -> 171[label="",style="dashed", color="magenta", weight=3]; 121 -> 172[label="",style="dashed", color="magenta", weight=3]; 121 -> 173[label="",style="dashed", color="magenta", weight=3]; 122[label="FiniteMap.splitLT yvy33 yvy35",fontsize=16,color="burlywood",shape="triangle"];3697[label="yvy33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];122 -> 3697[label="",style="solid", color="burlywood", weight=9]; 3697 -> 174[label="",style="solid", color="burlywood", weight=3]; 3698[label="yvy33/FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334",fontsize=10,color="white",style="solid",shape="box"];122 -> 3698[label="",style="solid", color="burlywood", weight=9]; 3698 -> 175[label="",style="solid", color="burlywood", weight=3]; 123[label="FiniteMap.unitFM yvy40 yvy41",fontsize=16,color="black",shape="box"];123 -> 176[label="",style="solid", color="black", weight=3]; 124 -> 177[label="",style="dashed", color="red", weight=0]; 124[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy40 yvy41 (yvy40 < yvy50)",fontsize=16,color="magenta"];124 -> 178[label="",style="dashed", color="magenta", weight=3]; 124 -> 179[label="",style="dashed", color="magenta", weight=3]; 124 -> 180[label="",style="dashed", color="magenta", weight=3]; 124 -> 181[label="",style="dashed", color="magenta", weight=3]; 124 -> 182[label="",style="dashed", color="magenta", weight=3]; 124 -> 183[label="",style="dashed", color="magenta", weight=3]; 124 -> 184[label="",style="dashed", color="magenta", weight=3]; 124 -> 185[label="",style="dashed", color="magenta", weight=3]; 617[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="black",shape="triangle"];617 -> 619[label="",style="solid", color="black", weight=3]; 616[label="FiniteMap.sIZE_RATIO * yvy95",fontsize=16,color="black",shape="triangle"];616 -> 620[label="",style="solid", color="black", weight=3]; 433[label="FiniteMap.sizeFM (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="black",shape="triangle"];433 -> 490[label="",style="solid", color="black", weight=3]; 434 -> 491[label="",style="dashed", color="red", weight=0]; 434[label="FiniteMap.mkVBalBranch3MkVBalBranch1 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_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="magenta"];434 -> 492[label="",style="dashed", color="magenta", weight=3]; 435 -> 493[label="",style="dashed", color="red", weight=0]; 435[label="FiniteMap.mkBalBranch yvy50 yvy51 (FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy53) yvy54",fontsize=16,color="magenta"];435 -> 494[label="",style="dashed", color="magenta", weight=3]; 452[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3699[label="yvy40/()",fontsize=10,color="white",style="solid",shape="box"];452 -> 3699[label="",style="solid", color="burlywood", weight=9]; 3699 -> 499[label="",style="solid", color="burlywood", weight=3]; 451[label="yvy87 == GT",fontsize=16,color="burlywood",shape="triangle"];3700[label="yvy87/LT",fontsize=10,color="white",style="solid",shape="box"];451 -> 3700[label="",style="solid", color="burlywood", weight=9]; 3700 -> 500[label="",style="solid", color="burlywood", weight=3]; 3701[label="yvy87/EQ",fontsize=10,color="white",style="solid",shape="box"];451 -> 3701[label="",style="solid", color="burlywood", weight=9]; 3701 -> 501[label="",style="solid", color="burlywood", weight=3]; 3702[label="yvy87/GT",fontsize=10,color="white",style="solid",shape="box"];451 -> 3702[label="",style="solid", color="burlywood", weight=9]; 3702 -> 502[label="",style="solid", color="burlywood", weight=3]; 453[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];453 -> 503[label="",style="solid", color="black", weight=3]; 454[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];454 -> 504[label="",style="solid", color="black", weight=3]; 455[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3703[label="yvy40/Integer yvy400",fontsize=10,color="white",style="solid",shape="box"];455 -> 3703[label="",style="solid", color="burlywood", weight=9]; 3703 -> 505[label="",style="solid", color="burlywood", weight=3]; 456[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3704[label="yvy40/yvy400 :% yvy401",fontsize=10,color="white",style="solid",shape="box"];456 -> 3704[label="",style="solid", color="burlywood", weight=9]; 3704 -> 506[label="",style="solid", color="burlywood", weight=3]; 457[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];457 -> 507[label="",style="solid", color="black", weight=3]; 458[label="compare yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3705[label="yvy40/yvy400 : yvy401",fontsize=10,color="white",style="solid",shape="box"];458 -> 3705[label="",style="solid", color="burlywood", weight=9]; 3705 -> 508[label="",style="solid", color="burlywood", weight=3]; 3706[label="yvy40/[]",fontsize=10,color="white",style="solid",shape="box"];458 -> 3706[label="",style="solid", color="burlywood", weight=9]; 3706 -> 509[label="",style="solid", color="burlywood", weight=3]; 459[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];459 -> 510[label="",style="solid", color="black", weight=3]; 460[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];460 -> 511[label="",style="solid", color="black", weight=3]; 461[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];461 -> 512[label="",style="solid", color="black", weight=3]; 462[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];462 -> 513[label="",style="solid", color="black", weight=3]; 463[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];463 -> 514[label="",style="solid", color="black", weight=3]; 464[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];464 -> 515[label="",style="solid", color="black", weight=3]; 465[label="compare yvy40 yvy30",fontsize=16,color="black",shape="triangle"];465 -> 516[label="",style="solid", color="black", weight=3]; 142[label="yvy18",fontsize=16,color="green",shape="box"];143[label="yvy20",fontsize=16,color="green",shape="box"];144[label="yvy19",fontsize=16,color="green",shape="box"];145[label="yvy20 < yvy15",fontsize=16,color="blue",shape="box"];3707[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 205[label="",style="solid", color="blue", weight=3]; 3708[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3708[label="",style="solid", color="blue", weight=9]; 3708 -> 206[label="",style="solid", color="blue", weight=3]; 3709[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 207[label="",style="solid", color="blue", weight=3]; 3710[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 208[label="",style="solid", color="blue", weight=3]; 3711[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 209[label="",style="solid", color="blue", weight=3]; 3712[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 210[label="",style="solid", color="blue", weight=3]; 3713[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 211[label="",style="solid", color="blue", weight=3]; 3714[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 212[label="",style="solid", color="blue", weight=3]; 3715[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 213[label="",style="solid", color="blue", weight=3]; 3716[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 214[label="",style="solid", color="blue", weight=3]; 3717[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 215[label="",style="solid", color="blue", weight=3]; 3718[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 216[label="",style="solid", color="blue", weight=3]; 3719[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 217[label="",style="solid", color="blue", weight=3]; 3720[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];145 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 218[label="",style="solid", color="blue", weight=3]; 146[label="yvy17",fontsize=16,color="green",shape="box"];147[label="yvy16",fontsize=16,color="green",shape="box"];148[label="yvy15",fontsize=16,color="green",shape="box"];141[label="FiniteMap.splitGT1 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 yvy51",fontsize=16,color="burlywood",shape="triangle"];3721[label="yvy51/False",fontsize=10,color="white",style="solid",shape="box"];141 -> 3721[label="",style="solid", color="burlywood", weight=9]; 3721 -> 219[label="",style="solid", color="burlywood", weight=3]; 3722[label="yvy51/True",fontsize=10,color="white",style="solid",shape="box"];141 -> 3722[label="",style="solid", color="burlywood", weight=9]; 3722 -> 220[label="",style="solid", color="burlywood", weight=3]; 149[label="FiniteMap.splitGT FiniteMap.EmptyFM yvy20",fontsize=16,color="black",shape="box"];149 -> 221[label="",style="solid", color="black", weight=3]; 150[label="FiniteMap.splitGT (FiniteMap.Branch yvy190 yvy191 yvy192 yvy193 yvy194) yvy20",fontsize=16,color="black",shape="box"];150 -> 222[label="",style="solid", color="black", weight=3]; 546 -> 452[label="",style="dashed", color="red", weight=0]; 546[label="compare yvy40 yvy30",fontsize=16,color="magenta"];545[label="yvy93 == LT",fontsize=16,color="burlywood",shape="triangle"];3723[label="yvy93/LT",fontsize=10,color="white",style="solid",shape="box"];545 -> 3723[label="",style="solid", color="burlywood", weight=9]; 3723 -> 583[label="",style="solid", color="burlywood", weight=3]; 3724[label="yvy93/EQ",fontsize=10,color="white",style="solid",shape="box"];545 -> 3724[label="",style="solid", color="burlywood", weight=9]; 3724 -> 584[label="",style="solid", color="burlywood", weight=3]; 3725[label="yvy93/GT",fontsize=10,color="white",style="solid",shape="box"];545 -> 3725[label="",style="solid", color="burlywood", weight=9]; 3725 -> 585[label="",style="solid", color="burlywood", weight=3]; 547 -> 453[label="",style="dashed", color="red", weight=0]; 547[label="compare yvy40 yvy30",fontsize=16,color="magenta"];548 -> 454[label="",style="dashed", color="red", weight=0]; 548[label="compare yvy40 yvy30",fontsize=16,color="magenta"];549 -> 455[label="",style="dashed", color="red", weight=0]; 549[label="compare yvy40 yvy30",fontsize=16,color="magenta"];550 -> 456[label="",style="dashed", color="red", weight=0]; 550[label="compare yvy40 yvy30",fontsize=16,color="magenta"];551 -> 457[label="",style="dashed", color="red", weight=0]; 551[label="compare yvy40 yvy30",fontsize=16,color="magenta"];552 -> 458[label="",style="dashed", color="red", weight=0]; 552[label="compare yvy40 yvy30",fontsize=16,color="magenta"];553 -> 459[label="",style="dashed", color="red", weight=0]; 553[label="compare yvy40 yvy30",fontsize=16,color="magenta"];554 -> 460[label="",style="dashed", color="red", weight=0]; 554[label="compare yvy40 yvy30",fontsize=16,color="magenta"];555 -> 461[label="",style="dashed", color="red", weight=0]; 555[label="compare yvy40 yvy30",fontsize=16,color="magenta"];556 -> 462[label="",style="dashed", color="red", weight=0]; 556[label="compare yvy40 yvy30",fontsize=16,color="magenta"];557 -> 463[label="",style="dashed", color="red", weight=0]; 557[label="compare yvy40 yvy30",fontsize=16,color="magenta"];558 -> 464[label="",style="dashed", color="red", weight=0]; 558[label="compare yvy40 yvy30",fontsize=16,color="magenta"];559 -> 465[label="",style="dashed", color="red", weight=0]; 559[label="compare yvy40 yvy30",fontsize=16,color="magenta"];167[label="yvy31",fontsize=16,color="green",shape="box"];168[label="yvy34",fontsize=16,color="green",shape="box"];169[label="yvy32",fontsize=16,color="green",shape="box"];170[label="yvy35 > yvy30",fontsize=16,color="blue",shape="box"];3726[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 241[label="",style="solid", color="blue", weight=3]; 3727[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 242[label="",style="solid", color="blue", weight=3]; 3728[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 243[label="",style="solid", color="blue", weight=3]; 3729[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 244[label="",style="solid", color="blue", weight=3]; 3730[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 245[label="",style="solid", color="blue", weight=3]; 3731[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 246[label="",style="solid", color="blue", weight=3]; 3732[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 247[label="",style="solid", color="blue", weight=3]; 3733[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 248[label="",style="solid", color="blue", weight=3]; 3734[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 249[label="",style="solid", color="blue", weight=3]; 3735[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 250[label="",style="solid", color="blue", weight=3]; 3736[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 251[label="",style="solid", color="blue", weight=3]; 3737[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 252[label="",style="solid", color="blue", weight=3]; 3738[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 253[label="",style="solid", color="blue", weight=3]; 3739[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];170 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 254[label="",style="solid", color="blue", weight=3]; 171[label="yvy33",fontsize=16,color="green",shape="box"];172[label="yvy35",fontsize=16,color="green",shape="box"];173[label="yvy30",fontsize=16,color="green",shape="box"];166[label="FiniteMap.splitLT1 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 yvy66",fontsize=16,color="burlywood",shape="triangle"];3740[label="yvy66/False",fontsize=10,color="white",style="solid",shape="box"];166 -> 3740[label="",style="solid", color="burlywood", weight=9]; 3740 -> 255[label="",style="solid", color="burlywood", weight=3]; 3741[label="yvy66/True",fontsize=10,color="white",style="solid",shape="box"];166 -> 3741[label="",style="solid", color="burlywood", weight=9]; 3741 -> 256[label="",style="solid", color="burlywood", weight=3]; 174[label="FiniteMap.splitLT FiniteMap.EmptyFM yvy35",fontsize=16,color="black",shape="box"];174 -> 257[label="",style="solid", color="black", weight=3]; 175[label="FiniteMap.splitLT (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) yvy35",fontsize=16,color="black",shape="box"];175 -> 258[label="",style="solid", color="black", weight=3]; 176[label="FiniteMap.Branch yvy40 yvy41 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];176 -> 259[label="",style="dashed", color="green", weight=3]; 176 -> 260[label="",style="dashed", color="green", weight=3]; 178[label="yvy40 < yvy50",fontsize=16,color="blue",shape="box"];3742[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 261[label="",style="solid", color="blue", weight=3]; 3743[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 262[label="",style="solid", color="blue", weight=3]; 3744[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 263[label="",style="solid", color="blue", weight=3]; 3745[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 264[label="",style="solid", color="blue", weight=3]; 3746[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 265[label="",style="solid", color="blue", weight=3]; 3747[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 266[label="",style="solid", color="blue", weight=3]; 3748[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 267[label="",style="solid", color="blue", weight=3]; 3749[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 268[label="",style="solid", color="blue", weight=3]; 3750[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 269[label="",style="solid", color="blue", weight=3]; 3751[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 270[label="",style="solid", color="blue", weight=3]; 3752[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 271[label="",style="solid", color="blue", weight=3]; 3753[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 272[label="",style="solid", color="blue", weight=3]; 3754[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 273[label="",style="solid", color="blue", weight=3]; 3755[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];178 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 274[label="",style="solid", color="blue", weight=3]; 179[label="yvy50",fontsize=16,color="green",shape="box"];180[label="yvy54",fontsize=16,color="green",shape="box"];181[label="yvy40",fontsize=16,color="green",shape="box"];182[label="yvy52",fontsize=16,color="green",shape="box"];183[label="yvy41",fontsize=16,color="green",shape="box"];184[label="yvy51",fontsize=16,color="green",shape="box"];185[label="yvy53",fontsize=16,color="green",shape="box"];177[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 yvy83",fontsize=16,color="burlywood",shape="triangle"];3756[label="yvy83/False",fontsize=10,color="white",style="solid",shape="box"];177 -> 3756[label="",style="solid", color="burlywood", weight=9]; 3756 -> 275[label="",style="solid", color="burlywood", weight=3]; 3757[label="yvy83/True",fontsize=10,color="white",style="solid",shape="box"];177 -> 3757[label="",style="solid", color="burlywood", weight=9]; 3757 -> 276[label="",style="solid", color="burlywood", weight=3]; 619 -> 433[label="",style="dashed", color="red", weight=0]; 619[label="FiniteMap.sizeFM (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64)",fontsize=16,color="magenta"];619 -> 665[label="",style="dashed", color="magenta", weight=3]; 619 -> 666[label="",style="dashed", color="magenta", weight=3]; 619 -> 667[label="",style="dashed", color="magenta", weight=3]; 619 -> 668[label="",style="dashed", color="magenta", weight=3]; 619 -> 669[label="",style="dashed", color="magenta", weight=3]; 620[label="primMulInt FiniteMap.sIZE_RATIO yvy95",fontsize=16,color="black",shape="box"];620 -> 670[label="",style="solid", color="black", weight=3]; 490[label="yvy52",fontsize=16,color="green",shape="box"];492 -> 74[label="",style="dashed", color="red", weight=0]; 492[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 < FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];492 -> 518[label="",style="dashed", color="magenta", weight=3]; 492 -> 519[label="",style="dashed", color="magenta", weight=3]; 491[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 yvy88",fontsize=16,color="burlywood",shape="triangle"];3758[label="yvy88/False",fontsize=10,color="white",style="solid",shape="box"];491 -> 3758[label="",style="solid", color="burlywood", weight=9]; 3758 -> 520[label="",style="solid", color="burlywood", weight=3]; 3759[label="yvy88/True",fontsize=10,color="white",style="solid",shape="box"];491 -> 3759[label="",style="solid", color="burlywood", weight=9]; 3759 -> 521[label="",style="solid", color="burlywood", weight=3]; 494 -> 12[label="",style="dashed", color="red", weight=0]; 494[label="FiniteMap.mkVBalBranch yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) yvy53",fontsize=16,color="magenta"];494 -> 522[label="",style="dashed", color="magenta", weight=3]; 494 -> 523[label="",style="dashed", color="magenta", weight=3]; 493[label="FiniteMap.mkBalBranch yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="triangle"];493 -> 524[label="",style="solid", color="black", weight=3]; 499[label="compare () yvy30",fontsize=16,color="burlywood",shape="box"];3760[label="yvy30/()",fontsize=10,color="white",style="solid",shape="box"];499 -> 3760[label="",style="solid", color="burlywood", weight=9]; 3760 -> 586[label="",style="solid", color="burlywood", weight=3]; 500[label="LT == GT",fontsize=16,color="black",shape="box"];500 -> 587[label="",style="solid", color="black", weight=3]; 501[label="EQ == GT",fontsize=16,color="black",shape="box"];501 -> 588[label="",style="solid", color="black", weight=3]; 502[label="GT == GT",fontsize=16,color="black",shape="box"];502 -> 589[label="",style="solid", color="black", weight=3]; 503[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];503 -> 590[label="",style="solid", color="black", weight=3]; 504[label="primCmpInt yvy40 yvy30",fontsize=16,color="burlywood",shape="triangle"];3761[label="yvy40/Pos yvy400",fontsize=10,color="white",style="solid",shape="box"];504 -> 3761[label="",style="solid", color="burlywood", weight=9]; 3761 -> 591[label="",style="solid", color="burlywood", weight=3]; 3762[label="yvy40/Neg yvy400",fontsize=10,color="white",style="solid",shape="box"];504 -> 3762[label="",style="solid", color="burlywood", weight=9]; 3762 -> 592[label="",style="solid", color="burlywood", weight=3]; 505[label="compare (Integer yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3763[label="yvy30/Integer yvy300",fontsize=10,color="white",style="solid",shape="box"];505 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 593[label="",style="solid", color="burlywood", weight=3]; 506[label="compare (yvy400 :% yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3764[label="yvy30/yvy300 :% yvy301",fontsize=10,color="white",style="solid",shape="box"];506 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 594[label="",style="solid", color="burlywood", weight=3]; 507[label="primCmpFloat yvy40 yvy30",fontsize=16,color="burlywood",shape="box"];3765[label="yvy40/Float yvy400 yvy401",fontsize=10,color="white",style="solid",shape="box"];507 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 595[label="",style="solid", color="burlywood", weight=3]; 508[label="compare (yvy400 : yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3766[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];508 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 596[label="",style="solid", color="burlywood", weight=3]; 3767[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];508 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 597[label="",style="solid", color="burlywood", weight=3]; 509[label="compare [] yvy30",fontsize=16,color="burlywood",shape="box"];3768[label="yvy30/yvy300 : yvy301",fontsize=10,color="white",style="solid",shape="box"];509 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 598[label="",style="solid", color="burlywood", weight=3]; 3769[label="yvy30/[]",fontsize=10,color="white",style="solid",shape="box"];509 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 599[label="",style="solid", color="burlywood", weight=3]; 510[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];510 -> 600[label="",style="solid", color="black", weight=3]; 511[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];511 -> 601[label="",style="solid", color="black", weight=3]; 512[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];512 -> 602[label="",style="solid", color="black", weight=3]; 513[label="primCmpChar yvy40 yvy30",fontsize=16,color="burlywood",shape="box"];3770[label="yvy40/Char yvy400",fontsize=10,color="white",style="solid",shape="box"];513 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 603[label="",style="solid", color="burlywood", weight=3]; 514[label="primCmpDouble yvy40 yvy30",fontsize=16,color="burlywood",shape="box"];3771[label="yvy40/Double yvy400 yvy401",fontsize=10,color="white",style="solid",shape="box"];514 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 604[label="",style="solid", color="burlywood", weight=3]; 515[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];515 -> 605[label="",style="solid", color="black", weight=3]; 516[label="compare3 yvy40 yvy30",fontsize=16,color="black",shape="box"];516 -> 606[label="",style="solid", color="black", weight=3]; 205 -> 72[label="",style="dashed", color="red", weight=0]; 205[label="yvy20 < yvy15",fontsize=16,color="magenta"];205 -> 314[label="",style="dashed", color="magenta", weight=3]; 205 -> 315[label="",style="dashed", color="magenta", weight=3]; 206 -> 73[label="",style="dashed", color="red", weight=0]; 206[label="yvy20 < yvy15",fontsize=16,color="magenta"];206 -> 316[label="",style="dashed", color="magenta", weight=3]; 206 -> 317[label="",style="dashed", color="magenta", weight=3]; 207 -> 74[label="",style="dashed", color="red", weight=0]; 207[label="yvy20 < yvy15",fontsize=16,color="magenta"];207 -> 318[label="",style="dashed", color="magenta", weight=3]; 207 -> 319[label="",style="dashed", color="magenta", weight=3]; 208 -> 75[label="",style="dashed", color="red", weight=0]; 208[label="yvy20 < yvy15",fontsize=16,color="magenta"];208 -> 320[label="",style="dashed", color="magenta", weight=3]; 208 -> 321[label="",style="dashed", color="magenta", weight=3]; 209 -> 76[label="",style="dashed", color="red", weight=0]; 209[label="yvy20 < yvy15",fontsize=16,color="magenta"];209 -> 322[label="",style="dashed", color="magenta", weight=3]; 209 -> 323[label="",style="dashed", color="magenta", weight=3]; 210 -> 77[label="",style="dashed", color="red", weight=0]; 210[label="yvy20 < yvy15",fontsize=16,color="magenta"];210 -> 324[label="",style="dashed", color="magenta", weight=3]; 210 -> 325[label="",style="dashed", color="magenta", weight=3]; 211 -> 78[label="",style="dashed", color="red", weight=0]; 211[label="yvy20 < yvy15",fontsize=16,color="magenta"];211 -> 326[label="",style="dashed", color="magenta", weight=3]; 211 -> 327[label="",style="dashed", color="magenta", weight=3]; 212 -> 79[label="",style="dashed", color="red", weight=0]; 212[label="yvy20 < yvy15",fontsize=16,color="magenta"];212 -> 328[label="",style="dashed", color="magenta", weight=3]; 212 -> 329[label="",style="dashed", color="magenta", weight=3]; 213 -> 80[label="",style="dashed", color="red", weight=0]; 213[label="yvy20 < yvy15",fontsize=16,color="magenta"];213 -> 330[label="",style="dashed", color="magenta", weight=3]; 213 -> 331[label="",style="dashed", color="magenta", weight=3]; 214 -> 81[label="",style="dashed", color="red", weight=0]; 214[label="yvy20 < yvy15",fontsize=16,color="magenta"];214 -> 332[label="",style="dashed", color="magenta", weight=3]; 214 -> 333[label="",style="dashed", color="magenta", weight=3]; 215 -> 82[label="",style="dashed", color="red", weight=0]; 215[label="yvy20 < yvy15",fontsize=16,color="magenta"];215 -> 334[label="",style="dashed", color="magenta", weight=3]; 215 -> 335[label="",style="dashed", color="magenta", weight=3]; 216 -> 83[label="",style="dashed", color="red", weight=0]; 216[label="yvy20 < yvy15",fontsize=16,color="magenta"];216 -> 336[label="",style="dashed", color="magenta", weight=3]; 216 -> 337[label="",style="dashed", color="magenta", weight=3]; 217 -> 84[label="",style="dashed", color="red", weight=0]; 217[label="yvy20 < yvy15",fontsize=16,color="magenta"];217 -> 338[label="",style="dashed", color="magenta", weight=3]; 217 -> 339[label="",style="dashed", color="magenta", weight=3]; 218 -> 85[label="",style="dashed", color="red", weight=0]; 218[label="yvy20 < yvy15",fontsize=16,color="magenta"];218 -> 340[label="",style="dashed", color="magenta", weight=3]; 218 -> 341[label="",style="dashed", color="magenta", weight=3]; 219[label="FiniteMap.splitGT1 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 False",fontsize=16,color="black",shape="box"];219 -> 342[label="",style="solid", color="black", weight=3]; 220[label="FiniteMap.splitGT1 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 True",fontsize=16,color="black",shape="box"];220 -> 343[label="",style="solid", color="black", weight=3]; 221[label="FiniteMap.splitGT4 FiniteMap.EmptyFM yvy20",fontsize=16,color="black",shape="box"];221 -> 344[label="",style="solid", color="black", weight=3]; 222 -> 26[label="",style="dashed", color="red", weight=0]; 222[label="FiniteMap.splitGT3 (FiniteMap.Branch yvy190 yvy191 yvy192 yvy193 yvy194) yvy20",fontsize=16,color="magenta"];222 -> 345[label="",style="dashed", color="magenta", weight=3]; 222 -> 346[label="",style="dashed", color="magenta", weight=3]; 222 -> 347[label="",style="dashed", color="magenta", weight=3]; 222 -> 348[label="",style="dashed", color="magenta", weight=3]; 222 -> 349[label="",style="dashed", color="magenta", weight=3]; 222 -> 350[label="",style="dashed", color="magenta", weight=3]; 583[label="LT == LT",fontsize=16,color="black",shape="box"];583 -> 610[label="",style="solid", color="black", weight=3]; 584[label="EQ == LT",fontsize=16,color="black",shape="box"];584 -> 611[label="",style="solid", color="black", weight=3]; 585[label="GT == LT",fontsize=16,color="black",shape="box"];585 -> 612[label="",style="solid", color="black", weight=3]; 241 -> 56[label="",style="dashed", color="red", weight=0]; 241[label="yvy35 > yvy30",fontsize=16,color="magenta"];241 -> 378[label="",style="dashed", color="magenta", weight=3]; 241 -> 379[label="",style="dashed", color="magenta", weight=3]; 242 -> 57[label="",style="dashed", color="red", weight=0]; 242[label="yvy35 > yvy30",fontsize=16,color="magenta"];242 -> 380[label="",style="dashed", color="magenta", weight=3]; 242 -> 381[label="",style="dashed", color="magenta", weight=3]; 243 -> 58[label="",style="dashed", color="red", weight=0]; 243[label="yvy35 > yvy30",fontsize=16,color="magenta"];243 -> 382[label="",style="dashed", color="magenta", weight=3]; 243 -> 383[label="",style="dashed", color="magenta", weight=3]; 244 -> 59[label="",style="dashed", color="red", weight=0]; 244[label="yvy35 > yvy30",fontsize=16,color="magenta"];244 -> 384[label="",style="dashed", color="magenta", weight=3]; 244 -> 385[label="",style="dashed", color="magenta", weight=3]; 245 -> 60[label="",style="dashed", color="red", weight=0]; 245[label="yvy35 > yvy30",fontsize=16,color="magenta"];245 -> 386[label="",style="dashed", color="magenta", weight=3]; 245 -> 387[label="",style="dashed", color="magenta", weight=3]; 246 -> 61[label="",style="dashed", color="red", weight=0]; 246[label="yvy35 > yvy30",fontsize=16,color="magenta"];246 -> 388[label="",style="dashed", color="magenta", weight=3]; 246 -> 389[label="",style="dashed", color="magenta", weight=3]; 247 -> 62[label="",style="dashed", color="red", weight=0]; 247[label="yvy35 > yvy30",fontsize=16,color="magenta"];247 -> 390[label="",style="dashed", color="magenta", weight=3]; 247 -> 391[label="",style="dashed", color="magenta", weight=3]; 248 -> 63[label="",style="dashed", color="red", weight=0]; 248[label="yvy35 > yvy30",fontsize=16,color="magenta"];248 -> 392[label="",style="dashed", color="magenta", weight=3]; 248 -> 393[label="",style="dashed", color="magenta", weight=3]; 249 -> 64[label="",style="dashed", color="red", weight=0]; 249[label="yvy35 > yvy30",fontsize=16,color="magenta"];249 -> 394[label="",style="dashed", color="magenta", weight=3]; 249 -> 395[label="",style="dashed", color="magenta", weight=3]; 250 -> 65[label="",style="dashed", color="red", weight=0]; 250[label="yvy35 > yvy30",fontsize=16,color="magenta"];250 -> 396[label="",style="dashed", color="magenta", weight=3]; 250 -> 397[label="",style="dashed", color="magenta", weight=3]; 251 -> 66[label="",style="dashed", color="red", weight=0]; 251[label="yvy35 > yvy30",fontsize=16,color="magenta"];251 -> 398[label="",style="dashed", color="magenta", weight=3]; 251 -> 399[label="",style="dashed", color="magenta", weight=3]; 252 -> 67[label="",style="dashed", color="red", weight=0]; 252[label="yvy35 > yvy30",fontsize=16,color="magenta"];252 -> 400[label="",style="dashed", color="magenta", weight=3]; 252 -> 401[label="",style="dashed", color="magenta", weight=3]; 253 -> 68[label="",style="dashed", color="red", weight=0]; 253[label="yvy35 > yvy30",fontsize=16,color="magenta"];253 -> 402[label="",style="dashed", color="magenta", weight=3]; 253 -> 403[label="",style="dashed", color="magenta", weight=3]; 254 -> 69[label="",style="dashed", color="red", weight=0]; 254[label="yvy35 > yvy30",fontsize=16,color="magenta"];254 -> 404[label="",style="dashed", color="magenta", weight=3]; 254 -> 405[label="",style="dashed", color="magenta", weight=3]; 255[label="FiniteMap.splitLT1 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 False",fontsize=16,color="black",shape="box"];255 -> 406[label="",style="solid", color="black", weight=3]; 256[label="FiniteMap.splitLT1 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 True",fontsize=16,color="black",shape="box"];256 -> 407[label="",style="solid", color="black", weight=3]; 257[label="FiniteMap.splitLT4 FiniteMap.EmptyFM yvy35",fontsize=16,color="black",shape="box"];257 -> 408[label="",style="solid", color="black", weight=3]; 258 -> 27[label="",style="dashed", color="red", weight=0]; 258[label="FiniteMap.splitLT3 (FiniteMap.Branch yvy330 yvy331 yvy332 yvy333 yvy334) yvy35",fontsize=16,color="magenta"];258 -> 409[label="",style="dashed", color="magenta", weight=3]; 258 -> 410[label="",style="dashed", color="magenta", weight=3]; 258 -> 411[label="",style="dashed", color="magenta", weight=3]; 258 -> 412[label="",style="dashed", color="magenta", weight=3]; 258 -> 413[label="",style="dashed", color="magenta", weight=3]; 258 -> 414[label="",style="dashed", color="magenta", weight=3]; 259[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];259 -> 415[label="",style="solid", color="black", weight=3]; 260 -> 259[label="",style="dashed", color="red", weight=0]; 260[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];261 -> 72[label="",style="dashed", color="red", weight=0]; 261[label="yvy40 < yvy50",fontsize=16,color="magenta"];261 -> 416[label="",style="dashed", color="magenta", weight=3]; 262 -> 73[label="",style="dashed", color="red", weight=0]; 262[label="yvy40 < yvy50",fontsize=16,color="magenta"];262 -> 417[label="",style="dashed", color="magenta", weight=3]; 263 -> 74[label="",style="dashed", color="red", weight=0]; 263[label="yvy40 < yvy50",fontsize=16,color="magenta"];263 -> 418[label="",style="dashed", color="magenta", weight=3]; 264 -> 75[label="",style="dashed", color="red", weight=0]; 264[label="yvy40 < yvy50",fontsize=16,color="magenta"];264 -> 419[label="",style="dashed", color="magenta", weight=3]; 265 -> 76[label="",style="dashed", color="red", weight=0]; 265[label="yvy40 < yvy50",fontsize=16,color="magenta"];265 -> 420[label="",style="dashed", color="magenta", weight=3]; 266 -> 77[label="",style="dashed", color="red", weight=0]; 266[label="yvy40 < yvy50",fontsize=16,color="magenta"];266 -> 421[label="",style="dashed", color="magenta", weight=3]; 267 -> 78[label="",style="dashed", color="red", weight=0]; 267[label="yvy40 < yvy50",fontsize=16,color="magenta"];267 -> 422[label="",style="dashed", color="magenta", weight=3]; 268 -> 79[label="",style="dashed", color="red", weight=0]; 268[label="yvy40 < yvy50",fontsize=16,color="magenta"];268 -> 423[label="",style="dashed", color="magenta", weight=3]; 269 -> 80[label="",style="dashed", color="red", weight=0]; 269[label="yvy40 < yvy50",fontsize=16,color="magenta"];269 -> 424[label="",style="dashed", color="magenta", weight=3]; 270 -> 81[label="",style="dashed", color="red", weight=0]; 270[label="yvy40 < yvy50",fontsize=16,color="magenta"];270 -> 425[label="",style="dashed", color="magenta", weight=3]; 271 -> 82[label="",style="dashed", color="red", weight=0]; 271[label="yvy40 < yvy50",fontsize=16,color="magenta"];271 -> 426[label="",style="dashed", color="magenta", weight=3]; 272 -> 83[label="",style="dashed", color="red", weight=0]; 272[label="yvy40 < yvy50",fontsize=16,color="magenta"];272 -> 427[label="",style="dashed", color="magenta", weight=3]; 273 -> 84[label="",style="dashed", color="red", weight=0]; 273[label="yvy40 < yvy50",fontsize=16,color="magenta"];273 -> 428[label="",style="dashed", color="magenta", weight=3]; 274 -> 85[label="",style="dashed", color="red", weight=0]; 274[label="yvy40 < yvy50",fontsize=16,color="magenta"];274 -> 429[label="",style="dashed", color="magenta", weight=3]; 275[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 False",fontsize=16,color="black",shape="box"];275 -> 430[label="",style="solid", color="black", weight=3]; 276[label="FiniteMap.addToFM_C2 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 True",fontsize=16,color="black",shape="box"];276 -> 431[label="",style="solid", color="black", weight=3]; 665[label="yvy60",fontsize=16,color="green",shape="box"];666[label="yvy63",fontsize=16,color="green",shape="box"];667[label="yvy64",fontsize=16,color="green",shape="box"];668[label="yvy61",fontsize=16,color="green",shape="box"];669[label="yvy62",fontsize=16,color="green",shape="box"];670[label="primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy95",fontsize=16,color="burlywood",shape="box"];3772[label="yvy95/Pos yvy950",fontsize=10,color="white",style="solid",shape="box"];670 -> 3772[label="",style="solid", color="burlywood", weight=9]; 3772 -> 678[label="",style="solid", color="burlywood", weight=3]; 3773[label="yvy95/Neg yvy950",fontsize=10,color="white",style="solid",shape="box"];670 -> 3773[label="",style="solid", color="burlywood", weight=9]; 3773 -> 679[label="",style="solid", color="burlywood", weight=3]; 518 -> 616[label="",style="dashed", color="red", weight=0]; 518[label="FiniteMap.sIZE_RATIO * FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];518 -> 618[label="",style="dashed", color="magenta", weight=3]; 519 -> 617[label="",style="dashed", color="red", weight=0]; 519[label="FiniteMap.mkVBalBranch3Size_l yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];520[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 False",fontsize=16,color="black",shape="box"];520 -> 621[label="",style="solid", color="black", weight=3]; 521[label="FiniteMap.mkVBalBranch3MkVBalBranch1 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];521 -> 622[label="",style="solid", color="black", weight=3]; 522[label="yvy53",fontsize=16,color="green",shape="box"];523[label="FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="green",shape="box"];524[label="FiniteMap.mkBalBranch6 yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="box"];524 -> 623[label="",style="solid", color="black", weight=3]; 586[label="compare () ()",fontsize=16,color="black",shape="box"];586 -> 624[label="",style="solid", color="black", weight=3]; 587[label="False",fontsize=16,color="green",shape="box"];588[label="False",fontsize=16,color="green",shape="box"];589[label="True",fontsize=16,color="green",shape="box"];590[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3774[label="yvy40/False",fontsize=10,color="white",style="solid",shape="box"];590 -> 3774[label="",style="solid", color="burlywood", weight=9]; 3774 -> 625[label="",style="solid", color="burlywood", weight=3]; 3775[label="yvy40/True",fontsize=10,color="white",style="solid",shape="box"];590 -> 3775[label="",style="solid", color="burlywood", weight=9]; 3775 -> 626[label="",style="solid", color="burlywood", weight=3]; 591[label="primCmpInt (Pos yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3776[label="yvy400/Succ yvy4000",fontsize=10,color="white",style="solid",shape="box"];591 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 627[label="",style="solid", color="burlywood", weight=3]; 3777[label="yvy400/Zero",fontsize=10,color="white",style="solid",shape="box"];591 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 628[label="",style="solid", color="burlywood", weight=3]; 592[label="primCmpInt (Neg yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3778[label="yvy400/Succ yvy4000",fontsize=10,color="white",style="solid",shape="box"];592 -> 3778[label="",style="solid", color="burlywood", weight=9]; 3778 -> 629[label="",style="solid", color="burlywood", weight=3]; 3779[label="yvy400/Zero",fontsize=10,color="white",style="solid",shape="box"];592 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 630[label="",style="solid", color="burlywood", weight=3]; 593[label="compare (Integer yvy400) (Integer yvy300)",fontsize=16,color="black",shape="box"];593 -> 631[label="",style="solid", color="black", weight=3]; 594[label="compare (yvy400 :% yvy401) (yvy300 :% yvy301)",fontsize=16,color="black",shape="box"];594 -> 632[label="",style="solid", color="black", weight=3]; 595[label="primCmpFloat (Float yvy400 yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3780[label="yvy401/Pos yvy4010",fontsize=10,color="white",style="solid",shape="box"];595 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 633[label="",style="solid", color="burlywood", weight=3]; 3781[label="yvy401/Neg yvy4010",fontsize=10,color="white",style="solid",shape="box"];595 -> 3781[label="",style="solid", color="burlywood", weight=9]; 3781 -> 634[label="",style="solid", color="burlywood", weight=3]; 596[label="compare (yvy400 : yvy401) (yvy300 : yvy301)",fontsize=16,color="black",shape="box"];596 -> 635[label="",style="solid", color="black", weight=3]; 597[label="compare (yvy400 : yvy401) []",fontsize=16,color="black",shape="box"];597 -> 636[label="",style="solid", color="black", weight=3]; 598[label="compare [] (yvy300 : yvy301)",fontsize=16,color="black",shape="box"];598 -> 637[label="",style="solid", color="black", weight=3]; 599[label="compare [] []",fontsize=16,color="black",shape="box"];599 -> 638[label="",style="solid", color="black", weight=3]; 600[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3782[label="yvy40/(yvy400,yvy401,yvy402)",fontsize=10,color="white",style="solid",shape="box"];600 -> 3782[label="",style="solid", color="burlywood", weight=9]; 3782 -> 639[label="",style="solid", color="burlywood", weight=3]; 601[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3783[label="yvy40/Nothing",fontsize=10,color="white",style="solid",shape="box"];601 -> 3783[label="",style="solid", color="burlywood", weight=9]; 3783 -> 640[label="",style="solid", color="burlywood", weight=3]; 3784[label="yvy40/Just yvy400",fontsize=10,color="white",style="solid",shape="box"];601 -> 3784[label="",style="solid", color="burlywood", weight=9]; 3784 -> 641[label="",style="solid", color="burlywood", weight=3]; 602[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3785[label="yvy40/LT",fontsize=10,color="white",style="solid",shape="box"];602 -> 3785[label="",style="solid", color="burlywood", weight=9]; 3785 -> 642[label="",style="solid", color="burlywood", weight=3]; 3786[label="yvy40/EQ",fontsize=10,color="white",style="solid",shape="box"];602 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 643[label="",style="solid", color="burlywood", weight=3]; 3787[label="yvy40/GT",fontsize=10,color="white",style="solid",shape="box"];602 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 644[label="",style="solid", color="burlywood", weight=3]; 603[label="primCmpChar (Char yvy400) yvy30",fontsize=16,color="burlywood",shape="box"];3788[label="yvy30/Char yvy300",fontsize=10,color="white",style="solid",shape="box"];603 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 645[label="",style="solid", color="burlywood", weight=3]; 604[label="primCmpDouble (Double yvy400 yvy401) yvy30",fontsize=16,color="burlywood",shape="box"];3789[label="yvy401/Pos yvy4010",fontsize=10,color="white",style="solid",shape="box"];604 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 646[label="",style="solid", color="burlywood", weight=3]; 3790[label="yvy401/Neg yvy4010",fontsize=10,color="white",style="solid",shape="box"];604 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 647[label="",style="solid", color="burlywood", weight=3]; 605[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3791[label="yvy40/Left yvy400",fontsize=10,color="white",style="solid",shape="box"];605 -> 3791[label="",style="solid", color="burlywood", weight=9]; 3791 -> 648[label="",style="solid", color="burlywood", weight=3]; 3792[label="yvy40/Right yvy400",fontsize=10,color="white",style="solid",shape="box"];605 -> 3792[label="",style="solid", color="burlywood", weight=9]; 3792 -> 649[label="",style="solid", color="burlywood", weight=3]; 606[label="compare2 yvy40 yvy30 (yvy40 == yvy30)",fontsize=16,color="burlywood",shape="box"];3793[label="yvy40/(yvy400,yvy401)",fontsize=10,color="white",style="solid",shape="box"];606 -> 3793[label="",style="solid", color="burlywood", weight=9]; 3793 -> 650[label="",style="solid", color="burlywood", weight=3]; 314[label="yvy20",fontsize=16,color="green",shape="box"];315[label="yvy15",fontsize=16,color="green",shape="box"];316[label="yvy20",fontsize=16,color="green",shape="box"];317[label="yvy15",fontsize=16,color="green",shape="box"];318[label="yvy20",fontsize=16,color="green",shape="box"];319[label="yvy15",fontsize=16,color="green",shape="box"];320[label="yvy20",fontsize=16,color="green",shape="box"];321[label="yvy15",fontsize=16,color="green",shape="box"];322[label="yvy20",fontsize=16,color="green",shape="box"];323[label="yvy15",fontsize=16,color="green",shape="box"];324[label="yvy20",fontsize=16,color="green",shape="box"];325[label="yvy15",fontsize=16,color="green",shape="box"];326[label="yvy20",fontsize=16,color="green",shape="box"];327[label="yvy15",fontsize=16,color="green",shape="box"];328[label="yvy20",fontsize=16,color="green",shape="box"];329[label="yvy15",fontsize=16,color="green",shape="box"];330[label="yvy20",fontsize=16,color="green",shape="box"];331[label="yvy15",fontsize=16,color="green",shape="box"];332[label="yvy20",fontsize=16,color="green",shape="box"];333[label="yvy15",fontsize=16,color="green",shape="box"];334[label="yvy20",fontsize=16,color="green",shape="box"];335[label="yvy15",fontsize=16,color="green",shape="box"];336[label="yvy20",fontsize=16,color="green",shape="box"];337[label="yvy15",fontsize=16,color="green",shape="box"];338[label="yvy20",fontsize=16,color="green",shape="box"];339[label="yvy15",fontsize=16,color="green",shape="box"];340[label="yvy20",fontsize=16,color="green",shape="box"];341[label="yvy15",fontsize=16,color="green",shape="box"];342[label="FiniteMap.splitGT0 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 otherwise",fontsize=16,color="black",shape="box"];342 -> 525[label="",style="solid", color="black", weight=3]; 343 -> 12[label="",style="dashed", color="red", weight=0]; 343[label="FiniteMap.mkVBalBranch yvy45 yvy46 (FiniteMap.splitGT yvy48 yvy50) yvy49",fontsize=16,color="magenta"];343 -> 526[label="",style="dashed", color="magenta", weight=3]; 343 -> 527[label="",style="dashed", color="magenta", weight=3]; 343 -> 528[label="",style="dashed", color="magenta", weight=3]; 343 -> 529[label="",style="dashed", color="magenta", weight=3]; 344 -> 259[label="",style="dashed", color="red", weight=0]; 344[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];345[label="yvy20",fontsize=16,color="green",shape="box"];346[label="yvy191",fontsize=16,color="green",shape="box"];347[label="yvy194",fontsize=16,color="green",shape="box"];348[label="yvy190",fontsize=16,color="green",shape="box"];349[label="yvy192",fontsize=16,color="green",shape="box"];350[label="yvy193",fontsize=16,color="green",shape="box"];610[label="True",fontsize=16,color="green",shape="box"];611[label="False",fontsize=16,color="green",shape="box"];612[label="False",fontsize=16,color="green",shape="box"];378[label="yvy35",fontsize=16,color="green",shape="box"];379[label="yvy30",fontsize=16,color="green",shape="box"];380[label="yvy35",fontsize=16,color="green",shape="box"];381[label="yvy30",fontsize=16,color="green",shape="box"];382[label="yvy35",fontsize=16,color="green",shape="box"];383[label="yvy30",fontsize=16,color="green",shape="box"];384[label="yvy35",fontsize=16,color="green",shape="box"];385[label="yvy30",fontsize=16,color="green",shape="box"];386[label="yvy35",fontsize=16,color="green",shape="box"];387[label="yvy30",fontsize=16,color="green",shape="box"];388[label="yvy35",fontsize=16,color="green",shape="box"];389[label="yvy30",fontsize=16,color="green",shape="box"];390[label="yvy35",fontsize=16,color="green",shape="box"];391[label="yvy30",fontsize=16,color="green",shape="box"];392[label="yvy35",fontsize=16,color="green",shape="box"];393[label="yvy30",fontsize=16,color="green",shape="box"];394[label="yvy35",fontsize=16,color="green",shape="box"];395[label="yvy30",fontsize=16,color="green",shape="box"];396[label="yvy35",fontsize=16,color="green",shape="box"];397[label="yvy30",fontsize=16,color="green",shape="box"];398[label="yvy35",fontsize=16,color="green",shape="box"];399[label="yvy30",fontsize=16,color="green",shape="box"];400[label="yvy35",fontsize=16,color="green",shape="box"];401[label="yvy30",fontsize=16,color="green",shape="box"];402[label="yvy35",fontsize=16,color="green",shape="box"];403[label="yvy30",fontsize=16,color="green",shape="box"];404[label="yvy35",fontsize=16,color="green",shape="box"];405[label="yvy30",fontsize=16,color="green",shape="box"];406[label="FiniteMap.splitLT0 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 otherwise",fontsize=16,color="black",shape="box"];406 -> 651[label="",style="solid", color="black", weight=3]; 407 -> 12[label="",style="dashed", color="red", weight=0]; 407[label="FiniteMap.mkVBalBranch yvy60 yvy61 yvy63 (FiniteMap.splitLT yvy64 yvy65)",fontsize=16,color="magenta"];407 -> 652[label="",style="dashed", color="magenta", weight=3]; 407 -> 653[label="",style="dashed", color="magenta", weight=3]; 407 -> 654[label="",style="dashed", color="magenta", weight=3]; 407 -> 655[label="",style="dashed", color="magenta", weight=3]; 408 -> 259[label="",style="dashed", color="red", weight=0]; 408[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];409[label="yvy35",fontsize=16,color="green",shape="box"];410[label="yvy331",fontsize=16,color="green",shape="box"];411[label="yvy334",fontsize=16,color="green",shape="box"];412[label="yvy330",fontsize=16,color="green",shape="box"];413[label="yvy332",fontsize=16,color="green",shape="box"];414[label="yvy333",fontsize=16,color="green",shape="box"];415[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];416[label="yvy50",fontsize=16,color="green",shape="box"];417[label="yvy50",fontsize=16,color="green",shape="box"];418[label="yvy50",fontsize=16,color="green",shape="box"];419[label="yvy50",fontsize=16,color="green",shape="box"];420[label="yvy50",fontsize=16,color="green",shape="box"];421[label="yvy50",fontsize=16,color="green",shape="box"];422[label="yvy50",fontsize=16,color="green",shape="box"];423[label="yvy50",fontsize=16,color="green",shape="box"];424[label="yvy50",fontsize=16,color="green",shape="box"];425[label="yvy50",fontsize=16,color="green",shape="box"];426[label="yvy50",fontsize=16,color="green",shape="box"];427[label="yvy50",fontsize=16,color="green",shape="box"];428[label="yvy50",fontsize=16,color="green",shape="box"];429[label="yvy50",fontsize=16,color="green",shape="box"];430 -> 656[label="",style="dashed", color="red", weight=0]; 430[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy76 yvy77 yvy78 yvy79 yvy80 yvy81 yvy82 (yvy81 > yvy76)",fontsize=16,color="magenta"];430 -> 657[label="",style="dashed", color="magenta", weight=3]; 430 -> 658[label="",style="dashed", color="magenta", weight=3]; 430 -> 659[label="",style="dashed", color="magenta", weight=3]; 430 -> 660[label="",style="dashed", color="magenta", weight=3]; 430 -> 661[label="",style="dashed", color="magenta", weight=3]; 430 -> 662[label="",style="dashed", color="magenta", weight=3]; 430 -> 663[label="",style="dashed", color="magenta", weight=3]; 430 -> 664[label="",style="dashed", color="magenta", weight=3]; 431 -> 493[label="",style="dashed", color="red", weight=0]; 431[label="FiniteMap.mkBalBranch yvy76 yvy77 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy79 yvy81 yvy82) yvy80",fontsize=16,color="magenta"];431 -> 495[label="",style="dashed", color="magenta", weight=3]; 431 -> 496[label="",style="dashed", color="magenta", weight=3]; 431 -> 497[label="",style="dashed", color="magenta", weight=3]; 431 -> 498[label="",style="dashed", color="magenta", weight=3]; 678[label="primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Pos yvy950)",fontsize=16,color="black",shape="box"];678 -> 700[label="",style="solid", color="black", weight=3]; 679[label="primMulInt (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) (Neg yvy950)",fontsize=16,color="black",shape="box"];679 -> 701[label="",style="solid", color="black", weight=3]; 618 -> 284[label="",style="dashed", color="red", weight=0]; 618[label="FiniteMap.mkVBalBranch3Size_r yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64",fontsize=16,color="magenta"];621[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 otherwise",fontsize=16,color="black",shape="box"];621 -> 671[label="",style="solid", color="black", weight=3]; 622 -> 493[label="",style="dashed", color="red", weight=0]; 622[label="FiniteMap.mkBalBranch yvy60 yvy61 yvy63 (FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54))",fontsize=16,color="magenta"];622 -> 672[label="",style="dashed", color="magenta", weight=3]; 622 -> 673[label="",style="dashed", color="magenta", weight=3]; 622 -> 674[label="",style="dashed", color="magenta", weight=3]; 622 -> 675[label="",style="dashed", color="magenta", weight=3]; 623 -> 676[label="",style="dashed", color="red", weight=0]; 623[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];623 -> 677[label="",style="dashed", color="magenta", weight=3]; 624[label="EQ",fontsize=16,color="green",shape="box"];625[label="compare2 False yvy30 (False == yvy30)",fontsize=16,color="burlywood",shape="box"];3794[label="yvy30/False",fontsize=10,color="white",style="solid",shape="box"];625 -> 3794[label="",style="solid", color="burlywood", weight=9]; 3794 -> 680[label="",style="solid", color="burlywood", weight=3]; 3795[label="yvy30/True",fontsize=10,color="white",style="solid",shape="box"];625 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 681[label="",style="solid", color="burlywood", weight=3]; 626[label="compare2 True yvy30 (True == yvy30)",fontsize=16,color="burlywood",shape="box"];3796[label="yvy30/False",fontsize=10,color="white",style="solid",shape="box"];626 -> 3796[label="",style="solid", color="burlywood", weight=9]; 3796 -> 682[label="",style="solid", color="burlywood", weight=3]; 3797[label="yvy30/True",fontsize=10,color="white",style="solid",shape="box"];626 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 683[label="",style="solid", color="burlywood", weight=3]; 627[label="primCmpInt (Pos (Succ yvy4000)) yvy30",fontsize=16,color="burlywood",shape="box"];3798[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];627 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 684[label="",style="solid", color="burlywood", weight=3]; 3799[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];627 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 685[label="",style="solid", color="burlywood", weight=3]; 628[label="primCmpInt (Pos Zero) yvy30",fontsize=16,color="burlywood",shape="box"];3800[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];628 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 686[label="",style="solid", color="burlywood", weight=3]; 3801[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];628 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 687[label="",style="solid", color="burlywood", weight=3]; 629[label="primCmpInt (Neg (Succ yvy4000)) yvy30",fontsize=16,color="burlywood",shape="box"];3802[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];629 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 688[label="",style="solid", color="burlywood", weight=3]; 3803[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];629 -> 3803[label="",style="solid", color="burlywood", weight=9]; 3803 -> 689[label="",style="solid", color="burlywood", weight=3]; 630[label="primCmpInt (Neg Zero) yvy30",fontsize=16,color="burlywood",shape="box"];3804[label="yvy30/Pos yvy300",fontsize=10,color="white",style="solid",shape="box"];630 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 690[label="",style="solid", color="burlywood", weight=3]; 3805[label="yvy30/Neg yvy300",fontsize=10,color="white",style="solid",shape="box"];630 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 691[label="",style="solid", color="burlywood", weight=3]; 631 -> 504[label="",style="dashed", color="red", weight=0]; 631[label="primCmpInt yvy400 yvy300",fontsize=16,color="magenta"];631 -> 692[label="",style="dashed", color="magenta", weight=3]; 631 -> 693[label="",style="dashed", color="magenta", weight=3]; 632[label="compare (yvy400 * yvy301) (yvy300 * yvy401)",fontsize=16,color="blue",shape="box"];3806[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];632 -> 3806[label="",style="solid", color="blue", weight=9]; 3806 -> 694[label="",style="solid", color="blue", weight=3]; 3807[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];632 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 695[label="",style="solid", color="blue", weight=3]; 633[label="primCmpFloat (Float yvy400 (Pos yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3808[label="yvy30/Float yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];633 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 696[label="",style="solid", color="burlywood", weight=3]; 634[label="primCmpFloat (Float yvy400 (Neg yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3809[label="yvy30/Float yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];634 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 697[label="",style="solid", color="burlywood", weight=3]; 635 -> 698[label="",style="dashed", color="red", weight=0]; 635[label="primCompAux yvy400 yvy300 (compare yvy401 yvy301)",fontsize=16,color="magenta"];635 -> 699[label="",style="dashed", color="magenta", weight=3]; 636[label="GT",fontsize=16,color="green",shape="box"];637[label="LT",fontsize=16,color="green",shape="box"];638[label="EQ",fontsize=16,color="green",shape="box"];639[label="compare2 (yvy400,yvy401,yvy402) yvy30 ((yvy400,yvy401,yvy402) == yvy30)",fontsize=16,color="burlywood",shape="box"];3810[label="yvy30/(yvy300,yvy301,yvy302)",fontsize=10,color="white",style="solid",shape="box"];639 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 702[label="",style="solid", color="burlywood", weight=3]; 640[label="compare2 Nothing yvy30 (Nothing == yvy30)",fontsize=16,color="burlywood",shape="box"];3811[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];640 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 703[label="",style="solid", color="burlywood", weight=3]; 3812[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];640 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 704[label="",style="solid", color="burlywood", weight=3]; 641[label="compare2 (Just yvy400) yvy30 (Just yvy400 == yvy30)",fontsize=16,color="burlywood",shape="box"];3813[label="yvy30/Nothing",fontsize=10,color="white",style="solid",shape="box"];641 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 705[label="",style="solid", color="burlywood", weight=3]; 3814[label="yvy30/Just yvy300",fontsize=10,color="white",style="solid",shape="box"];641 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 706[label="",style="solid", color="burlywood", weight=3]; 642[label="compare2 LT yvy30 (LT == yvy30)",fontsize=16,color="burlywood",shape="box"];3815[label="yvy30/LT",fontsize=10,color="white",style="solid",shape="box"];642 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 707[label="",style="solid", color="burlywood", weight=3]; 3816[label="yvy30/EQ",fontsize=10,color="white",style="solid",shape="box"];642 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 708[label="",style="solid", color="burlywood", weight=3]; 3817[label="yvy30/GT",fontsize=10,color="white",style="solid",shape="box"];642 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 709[label="",style="solid", color="burlywood", weight=3]; 643[label="compare2 EQ yvy30 (EQ == yvy30)",fontsize=16,color="burlywood",shape="box"];3818[label="yvy30/LT",fontsize=10,color="white",style="solid",shape="box"];643 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 710[label="",style="solid", color="burlywood", weight=3]; 3819[label="yvy30/EQ",fontsize=10,color="white",style="solid",shape="box"];643 -> 3819[label="",style="solid", color="burlywood", weight=9]; 3819 -> 711[label="",style="solid", color="burlywood", weight=3]; 3820[label="yvy30/GT",fontsize=10,color="white",style="solid",shape="box"];643 -> 3820[label="",style="solid", color="burlywood", weight=9]; 3820 -> 712[label="",style="solid", color="burlywood", weight=3]; 644[label="compare2 GT yvy30 (GT == yvy30)",fontsize=16,color="burlywood",shape="box"];3821[label="yvy30/LT",fontsize=10,color="white",style="solid",shape="box"];644 -> 3821[label="",style="solid", color="burlywood", weight=9]; 3821 -> 713[label="",style="solid", color="burlywood", weight=3]; 3822[label="yvy30/EQ",fontsize=10,color="white",style="solid",shape="box"];644 -> 3822[label="",style="solid", color="burlywood", weight=9]; 3822 -> 714[label="",style="solid", color="burlywood", weight=3]; 3823[label="yvy30/GT",fontsize=10,color="white",style="solid",shape="box"];644 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 715[label="",style="solid", color="burlywood", weight=3]; 645[label="primCmpChar (Char yvy400) (Char yvy300)",fontsize=16,color="black",shape="box"];645 -> 716[label="",style="solid", color="black", weight=3]; 646[label="primCmpDouble (Double yvy400 (Pos yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3824[label="yvy30/Double yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];646 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 717[label="",style="solid", color="burlywood", weight=3]; 647[label="primCmpDouble (Double yvy400 (Neg yvy4010)) yvy30",fontsize=16,color="burlywood",shape="box"];3825[label="yvy30/Double yvy300 yvy301",fontsize=10,color="white",style="solid",shape="box"];647 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 718[label="",style="solid", color="burlywood", weight=3]; 648[label="compare2 (Left yvy400) yvy30 (Left yvy400 == yvy30)",fontsize=16,color="burlywood",shape="box"];3826[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];648 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 719[label="",style="solid", color="burlywood", weight=3]; 3827[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];648 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 720[label="",style="solid", color="burlywood", weight=3]; 649[label="compare2 (Right yvy400) yvy30 (Right yvy400 == yvy30)",fontsize=16,color="burlywood",shape="box"];3828[label="yvy30/Left yvy300",fontsize=10,color="white",style="solid",shape="box"];649 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 721[label="",style="solid", color="burlywood", weight=3]; 3829[label="yvy30/Right yvy300",fontsize=10,color="white",style="solid",shape="box"];649 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 722[label="",style="solid", color="burlywood", weight=3]; 650[label="compare2 (yvy400,yvy401) yvy30 ((yvy400,yvy401) == yvy30)",fontsize=16,color="burlywood",shape="box"];3830[label="yvy30/(yvy300,yvy301)",fontsize=10,color="white",style="solid",shape="box"];650 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 723[label="",style="solid", color="burlywood", weight=3]; 525[label="FiniteMap.splitGT0 yvy45 yvy46 yvy47 yvy48 yvy49 yvy50 True",fontsize=16,color="black",shape="box"];525 -> 724[label="",style="solid", color="black", weight=3]; 526[label="yvy45",fontsize=16,color="green",shape="box"];527[label="yvy49",fontsize=16,color="green",shape="box"];528 -> 106[label="",style="dashed", color="red", weight=0]; 528[label="FiniteMap.splitGT yvy48 yvy50",fontsize=16,color="magenta"];528 -> 725[label="",style="dashed", color="magenta", weight=3]; 528 -> 726[label="",style="dashed", color="magenta", weight=3]; 529[label="yvy46",fontsize=16,color="green",shape="box"];651[label="FiniteMap.splitLT0 yvy60 yvy61 yvy62 yvy63 yvy64 yvy65 True",fontsize=16,color="black",shape="box"];651 -> 727[label="",style="solid", color="black", weight=3]; 652[label="yvy60",fontsize=16,color="green",shape="box"];653 -> 122[label="",style="dashed", color="red", weight=0]; 653[label="FiniteMap.splitLT yvy64 yvy65",fontsize=16,color="magenta"];653 -> 728[label="",style="dashed", color="magenta", weight=3]; 653 -> 729[label="",style="dashed", color="magenta", weight=3]; 654[label="yvy63",fontsize=16,color="green",shape="box"];655[label="yvy61",fontsize=16,color="green",shape="box"];657[label="yvy78",fontsize=16,color="green",shape="box"];658[label="yvy82",fontsize=16,color="green",shape="box"];659[label="yvy81 > yvy76",fontsize=16,color="blue",shape="box"];3831[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3831[label="",style="solid", color="blue", weight=9]; 3831 -> 730[label="",style="solid", color="blue", weight=3]; 3832[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3832[label="",style="solid", color="blue", weight=9]; 3832 -> 731[label="",style="solid", color="blue", weight=3]; 3833[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 732[label="",style="solid", color="blue", weight=3]; 3834[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 733[label="",style="solid", color="blue", weight=3]; 3835[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 734[label="",style="solid", color="blue", weight=3]; 3836[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 735[label="",style="solid", color="blue", weight=3]; 3837[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 736[label="",style="solid", color="blue", weight=3]; 3838[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3838[label="",style="solid", color="blue", weight=9]; 3838 -> 737[label="",style="solid", color="blue", weight=3]; 3839[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 738[label="",style="solid", color="blue", weight=3]; 3840[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 739[label="",style="solid", color="blue", weight=3]; 3841[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 740[label="",style="solid", color="blue", weight=3]; 3842[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 741[label="",style="solid", color="blue", weight=3]; 3843[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 742[label="",style="solid", color="blue", weight=3]; 3844[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];659 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 743[label="",style="solid", color="blue", weight=3]; 660[label="yvy76",fontsize=16,color="green",shape="box"];661[label="yvy77",fontsize=16,color="green",shape="box"];662[label="yvy79",fontsize=16,color="green",shape="box"];663[label="yvy80",fontsize=16,color="green",shape="box"];664[label="yvy81",fontsize=16,color="green",shape="box"];656[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy105 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 yvy112",fontsize=16,color="burlywood",shape="triangle"];3845[label="yvy112/False",fontsize=10,color="white",style="solid",shape="box"];656 -> 3845[label="",style="solid", color="burlywood", weight=9]; 3845 -> 744[label="",style="solid", color="burlywood", weight=3]; 3846[label="yvy112/True",fontsize=10,color="white",style="solid",shape="box"];656 -> 3846[label="",style="solid", color="burlywood", weight=9]; 3846 -> 745[label="",style="solid", color="burlywood", weight=3]; 495[label="yvy76",fontsize=16,color="green",shape="box"];496[label="yvy80",fontsize=16,color="green",shape="box"];497 -> 33[label="",style="dashed", color="red", weight=0]; 497[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy79 yvy81 yvy82",fontsize=16,color="magenta"];497 -> 746[label="",style="dashed", color="magenta", weight=3]; 497 -> 747[label="",style="dashed", color="magenta", weight=3]; 497 -> 748[label="",style="dashed", color="magenta", weight=3]; 498[label="yvy77",fontsize=16,color="green",shape="box"];700[label="Pos (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy950)",fontsize=16,color="green",shape="box"];700 -> 783[label="",style="dashed", color="green", weight=3]; 701[label="Neg (primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy950)",fontsize=16,color="green",shape="box"];701 -> 784[label="",style="dashed", color="green", weight=3]; 671[label="FiniteMap.mkVBalBranch3MkVBalBranch0 yvy50 yvy51 yvy52 yvy53 yvy54 yvy60 yvy61 yvy62 yvy63 yvy64 yvy40 yvy41 yvy60 yvy61 yvy62 yvy63 yvy64 yvy50 yvy51 yvy52 yvy53 yvy54 True",fontsize=16,color="black",shape="box"];671 -> 749[label="",style="solid", color="black", weight=3]; 672[label="yvy60",fontsize=16,color="green",shape="box"];673 -> 12[label="",style="dashed", color="red", weight=0]; 673[label="FiniteMap.mkVBalBranch yvy40 yvy41 yvy64 (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];673 -> 750[label="",style="dashed", color="magenta", weight=3]; 673 -> 751[label="",style="dashed", color="magenta", weight=3]; 674[label="yvy63",fontsize=16,color="green",shape="box"];675[label="yvy61",fontsize=16,color="green",shape="box"];677 -> 74[label="",style="dashed", color="red", weight=0]; 677[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];677 -> 752[label="",style="dashed", color="magenta", weight=3]; 677 -> 753[label="",style="dashed", color="magenta", weight=3]; 676[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 yvy113",fontsize=16,color="burlywood",shape="triangle"];3847[label="yvy113/False",fontsize=10,color="white",style="solid",shape="box"];676 -> 3847[label="",style="solid", color="burlywood", weight=9]; 3847 -> 754[label="",style="solid", color="burlywood", weight=3]; 3848[label="yvy113/True",fontsize=10,color="white",style="solid",shape="box"];676 -> 3848[label="",style="solid", color="burlywood", weight=9]; 3848 -> 755[label="",style="solid", color="burlywood", weight=3]; 680[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];680 -> 756[label="",style="solid", color="black", weight=3]; 681[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];681 -> 757[label="",style="solid", color="black", weight=3]; 682[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];682 -> 758[label="",style="solid", color="black", weight=3]; 683[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];683 -> 759[label="",style="solid", color="black", weight=3]; 684[label="primCmpInt (Pos (Succ yvy4000)) (Pos yvy300)",fontsize=16,color="black",shape="box"];684 -> 760[label="",style="solid", color="black", weight=3]; 685[label="primCmpInt (Pos (Succ yvy4000)) (Neg yvy300)",fontsize=16,color="black",shape="box"];685 -> 761[label="",style="solid", color="black", weight=3]; 686[label="primCmpInt (Pos Zero) (Pos yvy300)",fontsize=16,color="burlywood",shape="box"];3849[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];686 -> 3849[label="",style="solid", color="burlywood", weight=9]; 3849 -> 762[label="",style="solid", color="burlywood", weight=3]; 3850[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];686 -> 3850[label="",style="solid", color="burlywood", weight=9]; 3850 -> 763[label="",style="solid", color="burlywood", weight=3]; 687[label="primCmpInt (Pos Zero) (Neg yvy300)",fontsize=16,color="burlywood",shape="box"];3851[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];687 -> 3851[label="",style="solid", color="burlywood", weight=9]; 3851 -> 764[label="",style="solid", color="burlywood", weight=3]; 3852[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];687 -> 3852[label="",style="solid", color="burlywood", weight=9]; 3852 -> 765[label="",style="solid", color="burlywood", weight=3]; 688[label="primCmpInt (Neg (Succ yvy4000)) (Pos yvy300)",fontsize=16,color="black",shape="box"];688 -> 766[label="",style="solid", color="black", weight=3]; 689[label="primCmpInt (Neg (Succ yvy4000)) (Neg yvy300)",fontsize=16,color="black",shape="box"];689 -> 767[label="",style="solid", color="black", weight=3]; 690[label="primCmpInt (Neg Zero) (Pos yvy300)",fontsize=16,color="burlywood",shape="box"];3853[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];690 -> 3853[label="",style="solid", color="burlywood", weight=9]; 3853 -> 768[label="",style="solid", color="burlywood", weight=3]; 3854[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];690 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 769[label="",style="solid", color="burlywood", weight=3]; 691[label="primCmpInt (Neg Zero) (Neg yvy300)",fontsize=16,color="burlywood",shape="box"];3855[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];691 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 770[label="",style="solid", color="burlywood", weight=3]; 3856[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];691 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 771[label="",style="solid", color="burlywood", weight=3]; 692[label="yvy400",fontsize=16,color="green",shape="box"];693[label="yvy300",fontsize=16,color="green",shape="box"];694 -> 454[label="",style="dashed", color="red", weight=0]; 694[label="compare (yvy400 * yvy301) (yvy300 * yvy401)",fontsize=16,color="magenta"];694 -> 772[label="",style="dashed", color="magenta", weight=3]; 694 -> 773[label="",style="dashed", color="magenta", weight=3]; 695 -> 455[label="",style="dashed", color="red", weight=0]; 695[label="compare (yvy400 * yvy301) (yvy300 * yvy401)",fontsize=16,color="magenta"];695 -> 774[label="",style="dashed", color="magenta", weight=3]; 695 -> 775[label="",style="dashed", color="magenta", weight=3]; 696[label="primCmpFloat (Float yvy400 (Pos yvy4010)) (Float yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3857[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];696 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 776[label="",style="solid", color="burlywood", weight=3]; 3858[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];696 -> 3858[label="",style="solid", color="burlywood", weight=9]; 3858 -> 777[label="",style="solid", color="burlywood", weight=3]; 697[label="primCmpFloat (Float yvy400 (Neg yvy4010)) (Float yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3859[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];697 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 778[label="",style="solid", color="burlywood", weight=3]; 3860[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];697 -> 3860[label="",style="solid", color="burlywood", weight=9]; 3860 -> 779[label="",style="solid", color="burlywood", weight=3]; 699 -> 458[label="",style="dashed", color="red", weight=0]; 699[label="compare yvy401 yvy301",fontsize=16,color="magenta"];699 -> 780[label="",style="dashed", color="magenta", weight=3]; 699 -> 781[label="",style="dashed", color="magenta", weight=3]; 698[label="primCompAux yvy400 yvy300 yvy114",fontsize=16,color="black",shape="triangle"];698 -> 782[label="",style="solid", color="black", weight=3]; 702[label="compare2 (yvy400,yvy401,yvy402) (yvy300,yvy301,yvy302) ((yvy400,yvy401,yvy402) == (yvy300,yvy301,yvy302))",fontsize=16,color="black",shape="box"];702 -> 785[label="",style="solid", color="black", weight=3]; 703[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];703 -> 786[label="",style="solid", color="black", weight=3]; 704[label="compare2 Nothing (Just yvy300) (Nothing == Just yvy300)",fontsize=16,color="black",shape="box"];704 -> 787[label="",style="solid", color="black", weight=3]; 705[label="compare2 (Just yvy400) Nothing (Just yvy400 == Nothing)",fontsize=16,color="black",shape="box"];705 -> 788[label="",style="solid", color="black", weight=3]; 706[label="compare2 (Just yvy400) (Just yvy300) (Just yvy400 == Just yvy300)",fontsize=16,color="black",shape="box"];706 -> 789[label="",style="solid", color="black", weight=3]; 707[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];707 -> 790[label="",style="solid", color="black", weight=3]; 708[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];708 -> 791[label="",style="solid", color="black", weight=3]; 709[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];709 -> 792[label="",style="solid", color="black", weight=3]; 710[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];710 -> 793[label="",style="solid", color="black", weight=3]; 711[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];711 -> 794[label="",style="solid", color="black", weight=3]; 712[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];712 -> 795[label="",style="solid", color="black", weight=3]; 713[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];713 -> 796[label="",style="solid", color="black", weight=3]; 714[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];714 -> 797[label="",style="solid", color="black", weight=3]; 715[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];715 -> 798[label="",style="solid", color="black", weight=3]; 716[label="primCmpNat yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];3861[label="yvy400/Succ yvy4000",fontsize=10,color="white",style="solid",shape="box"];716 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 799[label="",style="solid", color="burlywood", weight=3]; 3862[label="yvy400/Zero",fontsize=10,color="white",style="solid",shape="box"];716 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 800[label="",style="solid", color="burlywood", weight=3]; 717[label="primCmpDouble (Double yvy400 (Pos yvy4010)) (Double yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3863[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];717 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 801[label="",style="solid", color="burlywood", weight=3]; 3864[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];717 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 802[label="",style="solid", color="burlywood", weight=3]; 718[label="primCmpDouble (Double yvy400 (Neg yvy4010)) (Double yvy300 yvy301)",fontsize=16,color="burlywood",shape="box"];3865[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];718 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 803[label="",style="solid", color="burlywood", weight=3]; 3866[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];718 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 804[label="",style="solid", color="burlywood", weight=3]; 719[label="compare2 (Left yvy400) (Left yvy300) (Left yvy400 == Left yvy300)",fontsize=16,color="black",shape="box"];719 -> 805[label="",style="solid", color="black", weight=3]; 720[label="compare2 (Left yvy400) (Right yvy300) (Left yvy400 == Right yvy300)",fontsize=16,color="black",shape="box"];720 -> 806[label="",style="solid", color="black", weight=3]; 721[label="compare2 (Right yvy400) (Left yvy300) (Right yvy400 == Left yvy300)",fontsize=16,color="black",shape="box"];721 -> 807[label="",style="solid", color="black", weight=3]; 722[label="compare2 (Right yvy400) (Right yvy300) (Right yvy400 == Right yvy300)",fontsize=16,color="black",shape="box"];722 -> 808[label="",style="solid", color="black", weight=3]; 723[label="compare2 (yvy400,yvy401) (yvy300,yvy301) ((yvy400,yvy401) == (yvy300,yvy301))",fontsize=16,color="black",shape="box"];723 -> 809[label="",style="solid", color="black", weight=3]; 724[label="yvy49",fontsize=16,color="green",shape="box"];725[label="yvy48",fontsize=16,color="green",shape="box"];726[label="yvy50",fontsize=16,color="green",shape="box"];727[label="yvy63",fontsize=16,color="green",shape="box"];728[label="yvy65",fontsize=16,color="green",shape="box"];729[label="yvy64",fontsize=16,color="green",shape="box"];730 -> 56[label="",style="dashed", color="red", weight=0]; 730[label="yvy81 > yvy76",fontsize=16,color="magenta"];730 -> 810[label="",style="dashed", color="magenta", weight=3]; 730 -> 811[label="",style="dashed", color="magenta", weight=3]; 731 -> 57[label="",style="dashed", color="red", weight=0]; 731[label="yvy81 > yvy76",fontsize=16,color="magenta"];731 -> 812[label="",style="dashed", color="magenta", weight=3]; 731 -> 813[label="",style="dashed", color="magenta", weight=3]; 732 -> 58[label="",style="dashed", color="red", weight=0]; 732[label="yvy81 > yvy76",fontsize=16,color="magenta"];732 -> 814[label="",style="dashed", color="magenta", weight=3]; 732 -> 815[label="",style="dashed", color="magenta", weight=3]; 733 -> 59[label="",style="dashed", color="red", weight=0]; 733[label="yvy81 > yvy76",fontsize=16,color="magenta"];733 -> 816[label="",style="dashed", color="magenta", weight=3]; 733 -> 817[label="",style="dashed", color="magenta", weight=3]; 734 -> 60[label="",style="dashed", color="red", weight=0]; 734[label="yvy81 > yvy76",fontsize=16,color="magenta"];734 -> 818[label="",style="dashed", color="magenta", weight=3]; 734 -> 819[label="",style="dashed", color="magenta", weight=3]; 735 -> 61[label="",style="dashed", color="red", weight=0]; 735[label="yvy81 > yvy76",fontsize=16,color="magenta"];735 -> 820[label="",style="dashed", color="magenta", weight=3]; 735 -> 821[label="",style="dashed", color="magenta", weight=3]; 736 -> 62[label="",style="dashed", color="red", weight=0]; 736[label="yvy81 > yvy76",fontsize=16,color="magenta"];736 -> 822[label="",style="dashed", color="magenta", weight=3]; 736 -> 823[label="",style="dashed", color="magenta", weight=3]; 737 -> 63[label="",style="dashed", color="red", weight=0]; 737[label="yvy81 > yvy76",fontsize=16,color="magenta"];737 -> 824[label="",style="dashed", color="magenta", weight=3]; 737 -> 825[label="",style="dashed", color="magenta", weight=3]; 738 -> 64[label="",style="dashed", color="red", weight=0]; 738[label="yvy81 > yvy76",fontsize=16,color="magenta"];738 -> 826[label="",style="dashed", color="magenta", weight=3]; 738 -> 827[label="",style="dashed", color="magenta", weight=3]; 739 -> 65[label="",style="dashed", color="red", weight=0]; 739[label="yvy81 > yvy76",fontsize=16,color="magenta"];739 -> 828[label="",style="dashed", color="magenta", weight=3]; 739 -> 829[label="",style="dashed", color="magenta", weight=3]; 740 -> 66[label="",style="dashed", color="red", weight=0]; 740[label="yvy81 > yvy76",fontsize=16,color="magenta"];740 -> 830[label="",style="dashed", color="magenta", weight=3]; 740 -> 831[label="",style="dashed", color="magenta", weight=3]; 741 -> 67[label="",style="dashed", color="red", weight=0]; 741[label="yvy81 > yvy76",fontsize=16,color="magenta"];741 -> 832[label="",style="dashed", color="magenta", weight=3]; 741 -> 833[label="",style="dashed", color="magenta", weight=3]; 742 -> 68[label="",style="dashed", color="red", weight=0]; 742[label="yvy81 > yvy76",fontsize=16,color="magenta"];742 -> 834[label="",style="dashed", color="magenta", weight=3]; 742 -> 835[label="",style="dashed", color="magenta", weight=3]; 743 -> 69[label="",style="dashed", color="red", weight=0]; 743[label="yvy81 > yvy76",fontsize=16,color="magenta"];743 -> 836[label="",style="dashed", color="magenta", weight=3]; 743 -> 837[label="",style="dashed", color="magenta", weight=3]; 744[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy105 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 False",fontsize=16,color="black",shape="box"];744 -> 838[label="",style="solid", color="black", weight=3]; 745[label="FiniteMap.addToFM_C1 FiniteMap.addToFM0 yvy105 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 True",fontsize=16,color="black",shape="box"];745 -> 839[label="",style="solid", color="black", weight=3]; 746[label="yvy81",fontsize=16,color="green",shape="box"];747[label="yvy79",fontsize=16,color="green",shape="box"];748[label="yvy82",fontsize=16,color="green",shape="box"];783[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy950",fontsize=16,color="burlywood",shape="triangle"];3867[label="yvy950/Succ yvy9500",fontsize=10,color="white",style="solid",shape="box"];783 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 854[label="",style="solid", color="burlywood", weight=3]; 3868[label="yvy950/Zero",fontsize=10,color="white",style="solid",shape="box"];783 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 855[label="",style="solid", color="burlywood", weight=3]; 784 -> 783[label="",style="dashed", color="red", weight=0]; 784[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) yvy950",fontsize=16,color="magenta"];784 -> 856[label="",style="dashed", color="magenta", weight=3]; 749 -> 840[label="",style="dashed", color="red", weight=0]; 749[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))))) yvy40 yvy41 (FiniteMap.Branch yvy60 yvy61 yvy62 yvy63 yvy64) (FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54)",fontsize=16,color="magenta"];749 -> 841[label="",style="dashed", color="magenta", weight=3]; 749 -> 842[label="",style="dashed", color="magenta", weight=3]; 749 -> 843[label="",style="dashed", color="magenta", weight=3]; 749 -> 844[label="",style="dashed", color="magenta", weight=3]; 749 -> 845[label="",style="dashed", color="magenta", weight=3]; 749 -> 846[label="",style="dashed", color="magenta", weight=3]; 749 -> 847[label="",style="dashed", color="magenta", weight=3]; 749 -> 848[label="",style="dashed", color="magenta", weight=3]; 749 -> 849[label="",style="dashed", color="magenta", weight=3]; 749 -> 850[label="",style="dashed", color="magenta", weight=3]; 749 -> 851[label="",style="dashed", color="magenta", weight=3]; 749 -> 852[label="",style="dashed", color="magenta", weight=3]; 749 -> 853[label="",style="dashed", color="magenta", weight=3]; 750[label="FiniteMap.Branch yvy50 yvy51 yvy52 yvy53 yvy54",fontsize=16,color="green",shape="box"];751[label="yvy64",fontsize=16,color="green",shape="box"];752[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 + FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="black",shape="box"];752 -> 857[label="",style="solid", color="black", weight=3]; 753[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];754[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 False",fontsize=16,color="black",shape="box"];754 -> 858[label="",style="solid", color="black", weight=3]; 755[label="FiniteMap.mkBalBranch6MkBalBranch5 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];755 -> 859[label="",style="solid", color="black", weight=3]; 756[label="compare2 False False True",fontsize=16,color="black",shape="box"];756 -> 860[label="",style="solid", color="black", weight=3]; 757[label="compare2 False True False",fontsize=16,color="black",shape="box"];757 -> 861[label="",style="solid", color="black", weight=3]; 758[label="compare2 True False False",fontsize=16,color="black",shape="box"];758 -> 862[label="",style="solid", color="black", weight=3]; 759[label="compare2 True True True",fontsize=16,color="black",shape="box"];759 -> 863[label="",style="solid", color="black", weight=3]; 760 -> 716[label="",style="dashed", color="red", weight=0]; 760[label="primCmpNat (Succ yvy4000) yvy300",fontsize=16,color="magenta"];760 -> 864[label="",style="dashed", color="magenta", weight=3]; 760 -> 865[label="",style="dashed", color="magenta", weight=3]; 761[label="GT",fontsize=16,color="green",shape="box"];762[label="primCmpInt (Pos Zero) (Pos (Succ yvy3000))",fontsize=16,color="black",shape="box"];762 -> 866[label="",style="solid", color="black", weight=3]; 763[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];763 -> 867[label="",style="solid", color="black", weight=3]; 764[label="primCmpInt (Pos Zero) (Neg (Succ yvy3000))",fontsize=16,color="black",shape="box"];764 -> 868[label="",style="solid", color="black", weight=3]; 765[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];765 -> 869[label="",style="solid", color="black", weight=3]; 766[label="LT",fontsize=16,color="green",shape="box"];767 -> 716[label="",style="dashed", color="red", weight=0]; 767[label="primCmpNat yvy300 (Succ yvy4000)",fontsize=16,color="magenta"];767 -> 870[label="",style="dashed", color="magenta", weight=3]; 767 -> 871[label="",style="dashed", color="magenta", weight=3]; 768[label="primCmpInt (Neg Zero) (Pos (Succ yvy3000))",fontsize=16,color="black",shape="box"];768 -> 872[label="",style="solid", color="black", weight=3]; 769[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];769 -> 873[label="",style="solid", color="black", weight=3]; 770[label="primCmpInt (Neg Zero) (Neg (Succ yvy3000))",fontsize=16,color="black",shape="box"];770 -> 874[label="",style="solid", color="black", weight=3]; 771[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];771 -> 875[label="",style="solid", color="black", weight=3]; 772[label="yvy400 * yvy301",fontsize=16,color="black",shape="triangle"];772 -> 876[label="",style="solid", color="black", weight=3]; 773 -> 772[label="",style="dashed", color="red", weight=0]; 773[label="yvy300 * yvy401",fontsize=16,color="magenta"];773 -> 877[label="",style="dashed", color="magenta", weight=3]; 773 -> 878[label="",style="dashed", color="magenta", weight=3]; 774[label="yvy400 * yvy301",fontsize=16,color="burlywood",shape="triangle"];3869[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];774 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 879[label="",style="solid", color="burlywood", weight=3]; 775 -> 774[label="",style="dashed", color="red", weight=0]; 775[label="yvy300 * yvy401",fontsize=16,color="magenta"];775 -> 880[label="",style="dashed", color="magenta", weight=3]; 775 -> 881[label="",style="dashed", color="magenta", weight=3]; 776[label="primCmpFloat (Float yvy400 (Pos yvy4010)) (Float yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];776 -> 882[label="",style="solid", color="black", weight=3]; 777[label="primCmpFloat (Float yvy400 (Pos yvy4010)) (Float yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];777 -> 883[label="",style="solid", color="black", weight=3]; 778[label="primCmpFloat (Float yvy400 (Neg yvy4010)) (Float yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];778 -> 884[label="",style="solid", color="black", weight=3]; 779[label="primCmpFloat (Float yvy400 (Neg yvy4010)) (Float yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];779 -> 885[label="",style="solid", color="black", weight=3]; 780[label="yvy401",fontsize=16,color="green",shape="box"];781[label="yvy301",fontsize=16,color="green",shape="box"];782 -> 886[label="",style="dashed", color="red", weight=0]; 782[label="primCompAux0 yvy114 (compare yvy400 yvy300)",fontsize=16,color="magenta"];782 -> 887[label="",style="dashed", color="magenta", weight=3]; 782 -> 888[label="",style="dashed", color="magenta", weight=3]; 785 -> 1558[label="",style="dashed", color="red", weight=0]; 785[label="compare2 (yvy400,yvy401,yvy402) (yvy300,yvy301,yvy302) (yvy400 == yvy300 && yvy401 == yvy301 && yvy402 == yvy302)",fontsize=16,color="magenta"];785 -> 1559[label="",style="dashed", color="magenta", weight=3]; 785 -> 1560[label="",style="dashed", color="magenta", weight=3]; 785 -> 1561[label="",style="dashed", color="magenta", weight=3]; 785 -> 1562[label="",style="dashed", color="magenta", weight=3]; 785 -> 1563[label="",style="dashed", color="magenta", weight=3]; 785 -> 1564[label="",style="dashed", color="magenta", weight=3]; 785 -> 1565[label="",style="dashed", color="magenta", weight=3]; 786[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];786 -> 897[label="",style="solid", color="black", weight=3]; 787[label="compare2 Nothing (Just yvy300) False",fontsize=16,color="black",shape="box"];787 -> 898[label="",style="solid", color="black", weight=3]; 788[label="compare2 (Just yvy400) Nothing False",fontsize=16,color="black",shape="box"];788 -> 899[label="",style="solid", color="black", weight=3]; 789 -> 900[label="",style="dashed", color="red", weight=0]; 789[label="compare2 (Just yvy400) (Just yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];789 -> 901[label="",style="dashed", color="magenta", weight=3]; 789 -> 902[label="",style="dashed", color="magenta", weight=3]; 789 -> 903[label="",style="dashed", color="magenta", weight=3]; 790[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];790 -> 904[label="",style="solid", color="black", weight=3]; 791[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];791 -> 905[label="",style="solid", color="black", weight=3]; 792[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];792 -> 906[label="",style="solid", color="black", weight=3]; 793[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];793 -> 907[label="",style="solid", color="black", weight=3]; 794[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];794 -> 908[label="",style="solid", color="black", weight=3]; 795[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];795 -> 909[label="",style="solid", color="black", weight=3]; 796[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];796 -> 910[label="",style="solid", color="black", weight=3]; 797[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];797 -> 911[label="",style="solid", color="black", weight=3]; 798[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];798 -> 912[label="",style="solid", color="black", weight=3]; 799[label="primCmpNat (Succ yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];3870[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];799 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 913[label="",style="solid", color="burlywood", weight=3]; 3871[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];799 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 914[label="",style="solid", color="burlywood", weight=3]; 800[label="primCmpNat Zero yvy300",fontsize=16,color="burlywood",shape="box"];3872[label="yvy300/Succ yvy3000",fontsize=10,color="white",style="solid",shape="box"];800 -> 3872[label="",style="solid", color="burlywood", weight=9]; 3872 -> 915[label="",style="solid", color="burlywood", weight=3]; 3873[label="yvy300/Zero",fontsize=10,color="white",style="solid",shape="box"];800 -> 3873[label="",style="solid", color="burlywood", weight=9]; 3873 -> 916[label="",style="solid", color="burlywood", weight=3]; 801[label="primCmpDouble (Double yvy400 (Pos yvy4010)) (Double yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];801 -> 917[label="",style="solid", color="black", weight=3]; 802[label="primCmpDouble (Double yvy400 (Pos yvy4010)) (Double yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];802 -> 918[label="",style="solid", color="black", weight=3]; 803[label="primCmpDouble (Double yvy400 (Neg yvy4010)) (Double yvy300 (Pos yvy3010))",fontsize=16,color="black",shape="box"];803 -> 919[label="",style="solid", color="black", weight=3]; 804[label="primCmpDouble (Double yvy400 (Neg yvy4010)) (Double yvy300 (Neg yvy3010))",fontsize=16,color="black",shape="box"];804 -> 920[label="",style="solid", color="black", weight=3]; 805 -> 921[label="",style="dashed", color="red", weight=0]; 805[label="compare2 (Left yvy400) (Left yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];805 -> 922[label="",style="dashed", color="magenta", weight=3]; 805 -> 923[label="",style="dashed", color="magenta", weight=3]; 805 -> 924[label="",style="dashed", color="magenta", weight=3]; 806[label="compare2 (Left yvy400) (Right yvy300) False",fontsize=16,color="black",shape="box"];806 -> 925[label="",style="solid", color="black", weight=3]; 807[label="compare2 (Right yvy400) (Left yvy300) False",fontsize=16,color="black",shape="box"];807 -> 926[label="",style="solid", color="black", weight=3]; 808 -> 927[label="",style="dashed", color="red", weight=0]; 808[label="compare2 (Right yvy400) (Right yvy300) (yvy400 == yvy300)",fontsize=16,color="magenta"];808 -> 928[label="",style="dashed", color="magenta", weight=3]; 808 -> 929[label="",style="dashed", color="magenta", weight=3]; 808 -> 930[label="",style="dashed", color="magenta", weight=3]; 809 -> 1392[label="",style="dashed", color="red", weight=0]; 809[label="compare2 (yvy400,yvy401) (yvy300,yvy301) (yvy400 == yvy300 && yvy401 == yvy301)",fontsize=16,color="magenta"];809 -> 1393[label="",style="dashed", color="magenta", weight=3]; 809 -> 1394[label="",style="dashed", color="magenta", weight=3]; 809 -> 1395[label="",style="dashed", color="magenta", weight=3]; 809 -> 1396[label="",style="dashed", color="magenta", weight=3]; 809 -> 1397[label="",style="dashed", color="magenta", weight=3]; 810[label="yvy81",fontsize=16,color="green",shape="box"];811[label="yvy76",fontsize=16,color="green",shape="box"];812[label="yvy81",fontsize=16,color="green",shape="box"];813[label="yvy76",fontsize=16,color="green",shape="box"];814[label="yvy81",fontsize=16,color="green",shape="box"];815[label="yvy76",fontsize=16,color="green",shape="box"];816[label="yvy81",fontsize=16,color="green",shape="box"];817[label="yvy76",fontsize=16,color="green",shape="box"];818[label="yvy81",fontsize=16,color="green",shape="box"];819[label="yvy76",fontsize=16,color="green",shape="box"];820[label="yvy81",fontsize=16,color="green",shape="box"];821[label="yvy76",fontsize=16,color="green",shape="box"];822[label="yvy81",fontsize=16,color="green",shape="box"];823[label="yvy76",fontsize=16,color="green",shape="box"];824[label="yvy81",fontsize=16,color="green",shape="box"];825[label="yvy76",fontsize=16,color="green",shape="box"];826[label="yvy81",fontsize=16,color="green",shape="box"];827[label="yvy76",fontsize=16,color="green",shape="box"];828[label="yvy81",fontsize=16,color="green",shape="box"];829[label="yvy76",fontsize=16,color="green",shape="box"];830[label="yvy81",fontsize=16,color="green",shape="box"];831[label="yvy76",fontsize=16,color="green",shape="box"];832[label="yvy81",fontsize=16,color="green",shape="box"];833[label="yvy76",fontsize=16,color="green",shape="box"];834[label="yvy81",fontsize=16,color="green",shape="box"];835[label="yvy76",fontsize=16,color="green",shape="box"];836[label="yvy81",fontsize=16,color="green",shape="box"];837[label="yvy76",fontsize=16,color="green",shape="box"];838[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 yvy105 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 otherwise",fontsize=16,color="black",shape="box"];838 -> 937[label="",style="solid", color="black", weight=3]; 839 -> 493[label="",style="dashed", color="red", weight=0]; 839[label="FiniteMap.mkBalBranch yvy105 yvy106 yvy108 (FiniteMap.addToFM_C FiniteMap.addToFM0 yvy109 yvy110 yvy111)",fontsize=16,color="magenta"];839 -> 938[label="",style="dashed", color="magenta", weight=3]; 839 -> 939[label="",style="dashed", color="magenta", weight=3]; 839 -> 940[label="",style="dashed", color="magenta", weight=3]; 839 -> 941[label="",style="dashed", color="magenta", weight=3]; 854[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) (Succ yvy9500)",fontsize=16,color="black",shape="box"];854 -> 942[label="",style="solid", color="black", weight=3]; 855[label="primMulNat (Succ (Succ (Succ (Succ (Succ Zero))))) Zero",fontsize=16,color="black",shape="box"];855 -> 943[label="",style="solid", color="black", weight=3]; 856[label="yvy950",fontsize=16,color="green",shape="box"];841[label="yvy64",fontsize=16,color="green",shape="box"];842[label="yvy50",fontsize=16,color="green",shape="box"];843[label="yvy51",fontsize=16,color="green",shape="box"];844[label="yvy54",fontsize=16,color="green",shape="box"];845[label="yvy63",fontsize=16,color="green",shape="box"];846[label="yvy53",fontsize=16,color="green",shape="box"];847[label="yvy60",fontsize=16,color="green",shape="box"];848[label="yvy61",fontsize=16,color="green",shape="box"];849[label="yvy52",fontsize=16,color="green",shape="box"];850[label="yvy40",fontsize=16,color="green",shape="box"];851[label="yvy41",fontsize=16,color="green",shape="box"];852[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))",fontsize=16,color="green",shape="box"];853[label="yvy62",fontsize=16,color="green",shape="box"];840[label="FiniteMap.mkBranch (Pos (Succ yvy116)) yvy117 yvy118 (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="black",shape="triangle"];840 -> 944[label="",style="solid", color="black", weight=3]; 857 -> 1472[label="",style="dashed", color="red", weight=0]; 857[label="primPlusInt (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90) (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90)",fontsize=16,color="magenta"];857 -> 1473[label="",style="dashed", color="magenta", weight=3]; 857 -> 1474[label="",style="dashed", color="magenta", weight=3]; 858 -> 946[label="",style="dashed", color="red", weight=0]; 858[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 (FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90)",fontsize=16,color="magenta"];858 -> 947[label="",style="dashed", color="magenta", weight=3]; 859[label="FiniteMap.mkBranch (Pos (Succ Zero)) yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="box"];859 -> 948[label="",style="solid", color="black", weight=3]; 860[label="EQ",fontsize=16,color="green",shape="box"];861[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];861 -> 949[label="",style="solid", color="black", weight=3]; 862[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];862 -> 950[label="",style="solid", color="black", weight=3]; 863[label="EQ",fontsize=16,color="green",shape="box"];864[label="yvy300",fontsize=16,color="green",shape="box"];865[label="Succ yvy4000",fontsize=16,color="green",shape="box"];866 -> 716[label="",style="dashed", color="red", weight=0]; 866[label="primCmpNat Zero (Succ yvy3000)",fontsize=16,color="magenta"];866 -> 951[label="",style="dashed", color="magenta", weight=3]; 866 -> 952[label="",style="dashed", color="magenta", weight=3]; 867[label="EQ",fontsize=16,color="green",shape="box"];868[label="GT",fontsize=16,color="green",shape="box"];869[label="EQ",fontsize=16,color="green",shape="box"];870[label="Succ yvy4000",fontsize=16,color="green",shape="box"];871[label="yvy300",fontsize=16,color="green",shape="box"];872[label="LT",fontsize=16,color="green",shape="box"];873[label="EQ",fontsize=16,color="green",shape="box"];874 -> 716[label="",style="dashed", color="red", weight=0]; 874[label="primCmpNat (Succ yvy3000) Zero",fontsize=16,color="magenta"];874 -> 953[label="",style="dashed", color="magenta", weight=3]; 874 -> 954[label="",style="dashed", color="magenta", weight=3]; 875[label="EQ",fontsize=16,color="green",shape="box"];876[label="primMulInt yvy400 yvy301",fontsize=16,color="burlywood",shape="triangle"];3874[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];876 -> 3874[label="",style="solid", color="burlywood", weight=9]; 3874 -> 955[label="",style="solid", color="burlywood", weight=3]; 3875[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];876 -> 3875[label="",style="solid", color="burlywood", weight=9]; 3875 -> 956[label="",style="solid", color="burlywood", weight=3]; 877[label="yvy401",fontsize=16,color="green",shape="box"];878[label="yvy300",fontsize=16,color="green",shape="box"];879[label="Integer yvy4000 * yvy301",fontsize=16,color="burlywood",shape="box"];3876[label="yvy301/Integer yvy3010",fontsize=10,color="white",style="solid",shape="box"];879 -> 3876[label="",style="solid", color="burlywood", weight=9]; 3876 -> 957[label="",style="solid", color="burlywood", weight=3]; 880[label="yvy401",fontsize=16,color="green",shape="box"];881[label="yvy300",fontsize=16,color="green",shape="box"];882 -> 454[label="",style="dashed", color="red", weight=0]; 882[label="compare (yvy400 * Pos yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];882 -> 958[label="",style="dashed", color="magenta", weight=3]; 882 -> 959[label="",style="dashed", color="magenta", weight=3]; 883 -> 454[label="",style="dashed", color="red", weight=0]; 883[label="compare (yvy400 * Pos yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];883 -> 960[label="",style="dashed", color="magenta", weight=3]; 883 -> 961[label="",style="dashed", color="magenta", weight=3]; 884 -> 454[label="",style="dashed", color="red", weight=0]; 884[label="compare (yvy400 * Neg yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];884 -> 962[label="",style="dashed", color="magenta", weight=3]; 884 -> 963[label="",style="dashed", color="magenta", weight=3]; 885 -> 454[label="",style="dashed", color="red", weight=0]; 885[label="compare (yvy400 * Neg yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];885 -> 964[label="",style="dashed", color="magenta", weight=3]; 885 -> 965[label="",style="dashed", color="magenta", weight=3]; 887[label="yvy114",fontsize=16,color="green",shape="box"];888[label="compare yvy400 yvy300",fontsize=16,color="blue",shape="box"];3877[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 966[label="",style="solid", color="blue", weight=3]; 3878[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 967[label="",style="solid", color="blue", weight=3]; 3879[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 968[label="",style="solid", color="blue", weight=3]; 3880[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 969[label="",style="solid", color="blue", weight=3]; 3881[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 970[label="",style="solid", color="blue", weight=3]; 3882[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 971[label="",style="solid", color="blue", weight=3]; 3883[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 972[label="",style="solid", color="blue", weight=3]; 3884[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 973[label="",style="solid", color="blue", weight=3]; 3885[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 974[label="",style="solid", color="blue", weight=3]; 3886[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 975[label="",style="solid", color="blue", weight=3]; 3887[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 976[label="",style="solid", color="blue", weight=3]; 3888[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 977[label="",style="solid", color="blue", weight=3]; 3889[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 978[label="",style="solid", color="blue", weight=3]; 3890[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];888 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 979[label="",style="solid", color="blue", weight=3]; 886[label="primCompAux0 yvy132 yvy133",fontsize=16,color="burlywood",shape="triangle"];3891[label="yvy133/LT",fontsize=10,color="white",style="solid",shape="box"];886 -> 3891[label="",style="solid", color="burlywood", weight=9]; 3891 -> 980[label="",style="solid", color="burlywood", weight=3]; 3892[label="yvy133/EQ",fontsize=10,color="white",style="solid",shape="box"];886 -> 3892[label="",style="solid", color="burlywood", weight=9]; 3892 -> 981[label="",style="solid", color="burlywood", weight=3]; 3893[label="yvy133/GT",fontsize=10,color="white",style="solid",shape="box"];886 -> 3893[label="",style="solid", color="burlywood", weight=9]; 3893 -> 982[label="",style="solid", color="burlywood", weight=3]; 1559[label="yvy300",fontsize=16,color="green",shape="box"];1560 -> 1610[label="",style="dashed", color="red", weight=0]; 1560[label="yvy400 == yvy300 && yvy401 == yvy301 && yvy402 == yvy302",fontsize=16,color="magenta"];1560 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1561[label="yvy302",fontsize=16,color="green",shape="box"];1562[label="yvy301",fontsize=16,color="green",shape="box"];1563[label="yvy401",fontsize=16,color="green",shape="box"];1564[label="yvy400",fontsize=16,color="green",shape="box"];1565[label="yvy402",fontsize=16,color="green",shape="box"];1558[label="compare2 (yvy191,yvy192,yvy193) (yvy194,yvy195,yvy196) yvy223",fontsize=16,color="burlywood",shape="triangle"];3894[label="yvy223/False",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3894[label="",style="solid", color="burlywood", weight=9]; 3894 -> 1605[label="",style="solid", color="burlywood", weight=3]; 3895[label="yvy223/True",fontsize=10,color="white",style="solid",shape="box"];1558 -> 3895[label="",style="solid", color="burlywood", weight=9]; 3895 -> 1606[label="",style="solid", color="burlywood", weight=3]; 897[label="EQ",fontsize=16,color="green",shape="box"];898[label="compare1 Nothing (Just yvy300) (Nothing <= Just yvy300)",fontsize=16,color="black",shape="box"];898 -> 999[label="",style="solid", color="black", weight=3]; 899[label="compare1 (Just yvy400) Nothing (Just yvy400 <= Nothing)",fontsize=16,color="black",shape="box"];899 -> 1000[label="",style="solid", color="black", weight=3]; 901[label="yvy400",fontsize=16,color="green",shape="box"];902[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3896[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 1001[label="",style="solid", color="blue", weight=3]; 3897[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 1002[label="",style="solid", color="blue", weight=3]; 3898[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 1003[label="",style="solid", color="blue", weight=3]; 3899[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 1004[label="",style="solid", color="blue", weight=3]; 3900[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 1005[label="",style="solid", color="blue", weight=3]; 3901[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 1006[label="",style="solid", color="blue", weight=3]; 3902[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 1007[label="",style="solid", color="blue", weight=3]; 3903[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 1008[label="",style="solid", color="blue", weight=3]; 3904[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 1009[label="",style="solid", color="blue", weight=3]; 3905[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 1010[label="",style="solid", color="blue", weight=3]; 3906[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 1011[label="",style="solid", color="blue", weight=3]; 3907[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 1012[label="",style="solid", color="blue", weight=3]; 3908[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 1013[label="",style="solid", color="blue", weight=3]; 3909[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];902 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 1014[label="",style="solid", color="blue", weight=3]; 903[label="yvy300",fontsize=16,color="green",shape="box"];900[label="compare2 (Just yvy153) (Just yvy154) yvy155",fontsize=16,color="burlywood",shape="triangle"];3910[label="yvy155/False",fontsize=10,color="white",style="solid",shape="box"];900 -> 3910[label="",style="solid", color="burlywood", weight=9]; 3910 -> 1015[label="",style="solid", color="burlywood", weight=3]; 3911[label="yvy155/True",fontsize=10,color="white",style="solid",shape="box"];900 -> 3911[label="",style="solid", color="burlywood", weight=9]; 3911 -> 1016[label="",style="solid", color="burlywood", weight=3]; 904[label="EQ",fontsize=16,color="green",shape="box"];905[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];905 -> 1017[label="",style="solid", color="black", weight=3]; 906[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];906 -> 1018[label="",style="solid", color="black", weight=3]; 907[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];907 -> 1019[label="",style="solid", color="black", weight=3]; 908[label="EQ",fontsize=16,color="green",shape="box"];909[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];909 -> 1020[label="",style="solid", color="black", weight=3]; 910[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];910 -> 1021[label="",style="solid", color="black", weight=3]; 911[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];911 -> 1022[label="",style="solid", color="black", weight=3]; 912[label="EQ",fontsize=16,color="green",shape="box"];913[label="primCmpNat (Succ yvy4000) (Succ yvy3000)",fontsize=16,color="black",shape="box"];913 -> 1023[label="",style="solid", color="black", weight=3]; 914[label="primCmpNat (Succ yvy4000) Zero",fontsize=16,color="black",shape="box"];914 -> 1024[label="",style="solid", color="black", weight=3]; 915[label="primCmpNat Zero (Succ yvy3000)",fontsize=16,color="black",shape="box"];915 -> 1025[label="",style="solid", color="black", weight=3]; 916[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];916 -> 1026[label="",style="solid", color="black", weight=3]; 917 -> 454[label="",style="dashed", color="red", weight=0]; 917[label="compare (yvy400 * Pos yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];917 -> 1027[label="",style="dashed", color="magenta", weight=3]; 917 -> 1028[label="",style="dashed", color="magenta", weight=3]; 918 -> 454[label="",style="dashed", color="red", weight=0]; 918[label="compare (yvy400 * Pos yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];918 -> 1029[label="",style="dashed", color="magenta", weight=3]; 918 -> 1030[label="",style="dashed", color="magenta", weight=3]; 919 -> 454[label="",style="dashed", color="red", weight=0]; 919[label="compare (yvy400 * Neg yvy3010) (Pos yvy4010 * yvy300)",fontsize=16,color="magenta"];919 -> 1031[label="",style="dashed", color="magenta", weight=3]; 919 -> 1032[label="",style="dashed", color="magenta", weight=3]; 920 -> 454[label="",style="dashed", color="red", weight=0]; 920[label="compare (yvy400 * Neg yvy3010) (Neg yvy4010 * yvy300)",fontsize=16,color="magenta"];920 -> 1033[label="",style="dashed", color="magenta", weight=3]; 920 -> 1034[label="",style="dashed", color="magenta", weight=3]; 922[label="yvy300",fontsize=16,color="green",shape="box"];923[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3912[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 1035[label="",style="solid", color="blue", weight=3]; 3913[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 1036[label="",style="solid", color="blue", weight=3]; 3914[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 1037[label="",style="solid", color="blue", weight=3]; 3915[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 1038[label="",style="solid", color="blue", weight=3]; 3916[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 1039[label="",style="solid", color="blue", weight=3]; 3917[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 1040[label="",style="solid", color="blue", weight=3]; 3918[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 1041[label="",style="solid", color="blue", weight=3]; 3919[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 1042[label="",style="solid", color="blue", weight=3]; 3920[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 1043[label="",style="solid", color="blue", weight=3]; 3921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 1044[label="",style="solid", color="blue", weight=3]; 3922[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 1045[label="",style="solid", color="blue", weight=3]; 3923[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 1046[label="",style="solid", color="blue", weight=3]; 3924[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 1047[label="",style="solid", color="blue", weight=3]; 3925[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];923 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 1048[label="",style="solid", color="blue", weight=3]; 924[label="yvy400",fontsize=16,color="green",shape="box"];921[label="compare2 (Left yvy160) (Left yvy161) yvy162",fontsize=16,color="burlywood",shape="triangle"];3926[label="yvy162/False",fontsize=10,color="white",style="solid",shape="box"];921 -> 3926[label="",style="solid", color="burlywood", weight=9]; 3926 -> 1049[label="",style="solid", color="burlywood", weight=3]; 3927[label="yvy162/True",fontsize=10,color="white",style="solid",shape="box"];921 -> 3927[label="",style="solid", color="burlywood", weight=9]; 3927 -> 1050[label="",style="solid", color="burlywood", weight=3]; 925[label="compare1 (Left yvy400) (Right yvy300) (Left yvy400 <= Right yvy300)",fontsize=16,color="black",shape="box"];925 -> 1051[label="",style="solid", color="black", weight=3]; 926[label="compare1 (Right yvy400) (Left yvy300) (Right yvy400 <= Left yvy300)",fontsize=16,color="black",shape="box"];926 -> 1052[label="",style="solid", color="black", weight=3]; 928[label="yvy400",fontsize=16,color="green",shape="box"];929[label="yvy300",fontsize=16,color="green",shape="box"];930[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3928[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 1053[label="",style="solid", color="blue", weight=3]; 3929[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 1054[label="",style="solid", color="blue", weight=3]; 3930[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 1055[label="",style="solid", color="blue", weight=3]; 3931[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 1056[label="",style="solid", color="blue", weight=3]; 3932[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 1057[label="",style="solid", color="blue", weight=3]; 3933[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 1058[label="",style="solid", color="blue", weight=3]; 3934[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 1059[label="",style="solid", color="blue", weight=3]; 3935[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 1060[label="",style="solid", color="blue", weight=3]; 3936[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 1061[label="",style="solid", color="blue", weight=3]; 3937[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3937[label="",style="solid", color="blue", weight=9]; 3937 -> 1062[label="",style="solid", color="blue", weight=3]; 3938[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 1063[label="",style="solid", color="blue", weight=3]; 3939[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 1064[label="",style="solid", color="blue", weight=3]; 3940[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 1065[label="",style="solid", color="blue", weight=3]; 3941[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 1066[label="",style="solid", color="blue", weight=3]; 927[label="compare2 (Right yvy167) (Right yvy168) yvy169",fontsize=16,color="burlywood",shape="triangle"];3942[label="yvy169/False",fontsize=10,color="white",style="solid",shape="box"];927 -> 3942[label="",style="solid", color="burlywood", weight=9]; 3942 -> 1067[label="",style="solid", color="burlywood", weight=3]; 3943[label="yvy169/True",fontsize=10,color="white",style="solid",shape="box"];927 -> 3943[label="",style="solid", color="burlywood", weight=9]; 3943 -> 1068[label="",style="solid", color="burlywood", weight=3]; 1393[label="yvy300",fontsize=16,color="green",shape="box"];1394[label="yvy301",fontsize=16,color="green",shape="box"];1395[label="yvy400",fontsize=16,color="green",shape="box"];1396 -> 1610[label="",style="dashed", color="red", weight=0]; 1396[label="yvy400 == yvy300 && yvy401 == yvy301",fontsize=16,color="magenta"];1396 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1397[label="yvy401",fontsize=16,color="green",shape="box"];1392[label="compare2 (yvy204,yvy205) (yvy206,yvy207) yvy208",fontsize=16,color="burlywood",shape="triangle"];3944[label="yvy208/False",fontsize=10,color="white",style="solid",shape="box"];1392 -> 3944[label="",style="solid", color="burlywood", weight=9]; 3944 -> 1417[label="",style="solid", color="burlywood", weight=3]; 3945[label="yvy208/True",fontsize=10,color="white",style="solid",shape="box"];1392 -> 3945[label="",style="solid", color="burlywood", weight=9]; 3945 -> 1418[label="",style="solid", color="burlywood", weight=3]; 937[label="FiniteMap.addToFM_C0 FiniteMap.addToFM0 yvy105 yvy106 yvy107 yvy108 yvy109 yvy110 yvy111 True",fontsize=16,color="black",shape="box"];937 -> 1085[label="",style="solid", color="black", weight=3]; 938[label="yvy105",fontsize=16,color="green",shape="box"];939 -> 33[label="",style="dashed", color="red", weight=0]; 939[label="FiniteMap.addToFM_C FiniteMap.addToFM0 yvy109 yvy110 yvy111",fontsize=16,color="magenta"];939 -> 1086[label="",style="dashed", color="magenta", weight=3]; 939 -> 1087[label="",style="dashed", color="magenta", weight=3]; 939 -> 1088[label="",style="dashed", color="magenta", weight=3]; 940[label="yvy108",fontsize=16,color="green",shape="box"];941[label="yvy106",fontsize=16,color="green",shape="box"];942[label="primPlusNat (primMulNat (Succ (Succ (Succ (Succ Zero)))) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="black",shape="box"];942 -> 1089[label="",style="solid", color="black", weight=3]; 943[label="Zero",fontsize=16,color="green",shape="box"];944[label="FiniteMap.mkBranchResult yvy117 yvy118 (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="black",shape="box"];944 -> 1090[label="",style="solid", color="black", weight=3]; 1473 -> 1093[label="",style="dashed", color="red", weight=0]; 1473[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1474[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="black",shape="triangle"];1474 -> 1482[label="",style="solid", color="black", weight=3]; 1472[label="primPlusInt yvy902 yvy217",fontsize=16,color="burlywood",shape="triangle"];3946[label="yvy902/Pos yvy9020",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3946[label="",style="solid", color="burlywood", weight=9]; 3946 -> 1483[label="",style="solid", color="burlywood", weight=3]; 3947[label="yvy902/Neg yvy9020",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3947[label="",style="solid", color="burlywood", weight=9]; 3947 -> 1484[label="",style="solid", color="burlywood", weight=3]; 947 -> 58[label="",style="dashed", color="red", weight=0]; 947[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];947 -> 1093[label="",style="dashed", color="magenta", weight=3]; 947 -> 1094[label="",style="dashed", color="magenta", weight=3]; 946[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 yvy181",fontsize=16,color="burlywood",shape="triangle"];3948[label="yvy181/False",fontsize=10,color="white",style="solid",shape="box"];946 -> 3948[label="",style="solid", color="burlywood", weight=9]; 3948 -> 1095[label="",style="solid", color="burlywood", weight=3]; 3949[label="yvy181/True",fontsize=10,color="white",style="solid",shape="box"];946 -> 3949[label="",style="solid", color="burlywood", weight=9]; 3949 -> 1096[label="",style="solid", color="burlywood", weight=3]; 948[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="triangle"];948 -> 1097[label="",style="solid", color="black", weight=3]; 949[label="compare1 False True True",fontsize=16,color="black",shape="box"];949 -> 1098[label="",style="solid", color="black", weight=3]; 950[label="compare1 True False False",fontsize=16,color="black",shape="box"];950 -> 1099[label="",style="solid", color="black", weight=3]; 951[label="Succ yvy3000",fontsize=16,color="green",shape="box"];952[label="Zero",fontsize=16,color="green",shape="box"];953[label="Zero",fontsize=16,color="green",shape="box"];954[label="Succ yvy3000",fontsize=16,color="green",shape="box"];955[label="primMulInt (Pos yvy4000) yvy301",fontsize=16,color="burlywood",shape="box"];3950[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];955 -> 3950[label="",style="solid", color="burlywood", weight=9]; 3950 -> 1100[label="",style="solid", color="burlywood", weight=3]; 3951[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];955 -> 3951[label="",style="solid", color="burlywood", weight=9]; 3951 -> 1101[label="",style="solid", color="burlywood", weight=3]; 956[label="primMulInt (Neg yvy4000) yvy301",fontsize=16,color="burlywood",shape="box"];3952[label="yvy301/Pos yvy3010",fontsize=10,color="white",style="solid",shape="box"];956 -> 3952[label="",style="solid", color="burlywood", weight=9]; 3952 -> 1102[label="",style="solid", color="burlywood", weight=3]; 3953[label="yvy301/Neg yvy3010",fontsize=10,color="white",style="solid",shape="box"];956 -> 3953[label="",style="solid", color="burlywood", weight=9]; 3953 -> 1103[label="",style="solid", color="burlywood", weight=3]; 957[label="Integer yvy4000 * Integer yvy3010",fontsize=16,color="black",shape="box"];957 -> 1104[label="",style="solid", color="black", weight=3]; 958 -> 772[label="",style="dashed", color="red", weight=0]; 958[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];958 -> 1105[label="",style="dashed", color="magenta", weight=3]; 958 -> 1106[label="",style="dashed", color="magenta", weight=3]; 959 -> 772[label="",style="dashed", color="red", weight=0]; 959[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];959 -> 1107[label="",style="dashed", color="magenta", weight=3]; 959 -> 1108[label="",style="dashed", color="magenta", weight=3]; 960 -> 772[label="",style="dashed", color="red", weight=0]; 960[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];960 -> 1109[label="",style="dashed", color="magenta", weight=3]; 960 -> 1110[label="",style="dashed", color="magenta", weight=3]; 961 -> 772[label="",style="dashed", color="red", weight=0]; 961[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];961 -> 1111[label="",style="dashed", color="magenta", weight=3]; 961 -> 1112[label="",style="dashed", color="magenta", weight=3]; 962 -> 772[label="",style="dashed", color="red", weight=0]; 962[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];962 -> 1113[label="",style="dashed", color="magenta", weight=3]; 962 -> 1114[label="",style="dashed", color="magenta", weight=3]; 963 -> 772[label="",style="dashed", color="red", weight=0]; 963[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];963 -> 1115[label="",style="dashed", color="magenta", weight=3]; 963 -> 1116[label="",style="dashed", color="magenta", weight=3]; 964 -> 772[label="",style="dashed", color="red", weight=0]; 964[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];964 -> 1117[label="",style="dashed", color="magenta", weight=3]; 964 -> 1118[label="",style="dashed", color="magenta", weight=3]; 965 -> 772[label="",style="dashed", color="red", weight=0]; 965[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];965 -> 1119[label="",style="dashed", color="magenta", weight=3]; 965 -> 1120[label="",style="dashed", color="magenta", weight=3]; 966 -> 452[label="",style="dashed", color="red", weight=0]; 966[label="compare yvy400 yvy300",fontsize=16,color="magenta"];966 -> 1121[label="",style="dashed", color="magenta", weight=3]; 966 -> 1122[label="",style="dashed", color="magenta", weight=3]; 967 -> 453[label="",style="dashed", color="red", weight=0]; 967[label="compare yvy400 yvy300",fontsize=16,color="magenta"];967 -> 1123[label="",style="dashed", color="magenta", weight=3]; 967 -> 1124[label="",style="dashed", color="magenta", weight=3]; 968 -> 454[label="",style="dashed", color="red", weight=0]; 968[label="compare yvy400 yvy300",fontsize=16,color="magenta"];968 -> 1125[label="",style="dashed", color="magenta", weight=3]; 968 -> 1126[label="",style="dashed", color="magenta", weight=3]; 969 -> 455[label="",style="dashed", color="red", weight=0]; 969[label="compare yvy400 yvy300",fontsize=16,color="magenta"];969 -> 1127[label="",style="dashed", color="magenta", weight=3]; 969 -> 1128[label="",style="dashed", color="magenta", weight=3]; 970 -> 456[label="",style="dashed", color="red", weight=0]; 970[label="compare yvy400 yvy300",fontsize=16,color="magenta"];970 -> 1129[label="",style="dashed", color="magenta", weight=3]; 970 -> 1130[label="",style="dashed", color="magenta", weight=3]; 971 -> 457[label="",style="dashed", color="red", weight=0]; 971[label="compare yvy400 yvy300",fontsize=16,color="magenta"];971 -> 1131[label="",style="dashed", color="magenta", weight=3]; 971 -> 1132[label="",style="dashed", color="magenta", weight=3]; 972 -> 458[label="",style="dashed", color="red", weight=0]; 972[label="compare yvy400 yvy300",fontsize=16,color="magenta"];972 -> 1133[label="",style="dashed", color="magenta", weight=3]; 972 -> 1134[label="",style="dashed", color="magenta", weight=3]; 973 -> 459[label="",style="dashed", color="red", weight=0]; 973[label="compare yvy400 yvy300",fontsize=16,color="magenta"];973 -> 1135[label="",style="dashed", color="magenta", weight=3]; 973 -> 1136[label="",style="dashed", color="magenta", weight=3]; 974 -> 460[label="",style="dashed", color="red", weight=0]; 974[label="compare yvy400 yvy300",fontsize=16,color="magenta"];974 -> 1137[label="",style="dashed", color="magenta", weight=3]; 974 -> 1138[label="",style="dashed", color="magenta", weight=3]; 975 -> 461[label="",style="dashed", color="red", weight=0]; 975[label="compare yvy400 yvy300",fontsize=16,color="magenta"];975 -> 1139[label="",style="dashed", color="magenta", weight=3]; 975 -> 1140[label="",style="dashed", color="magenta", weight=3]; 976 -> 462[label="",style="dashed", color="red", weight=0]; 976[label="compare yvy400 yvy300",fontsize=16,color="magenta"];976 -> 1141[label="",style="dashed", color="magenta", weight=3]; 976 -> 1142[label="",style="dashed", color="magenta", weight=3]; 977 -> 463[label="",style="dashed", color="red", weight=0]; 977[label="compare yvy400 yvy300",fontsize=16,color="magenta"];977 -> 1143[label="",style="dashed", color="magenta", weight=3]; 977 -> 1144[label="",style="dashed", color="magenta", weight=3]; 978 -> 464[label="",style="dashed", color="red", weight=0]; 978[label="compare yvy400 yvy300",fontsize=16,color="magenta"];978 -> 1145[label="",style="dashed", color="magenta", weight=3]; 978 -> 1146[label="",style="dashed", color="magenta", weight=3]; 979 -> 465[label="",style="dashed", color="red", weight=0]; 979[label="compare yvy400 yvy300",fontsize=16,color="magenta"];979 -> 1147[label="",style="dashed", color="magenta", weight=3]; 979 -> 1148[label="",style="dashed", color="magenta", weight=3]; 980[label="primCompAux0 yvy132 LT",fontsize=16,color="black",shape="box"];980 -> 1149[label="",style="solid", color="black", weight=3]; 981[label="primCompAux0 yvy132 EQ",fontsize=16,color="black",shape="box"];981 -> 1150[label="",style="solid", color="black", weight=3]; 982[label="primCompAux0 yvy132 GT",fontsize=16,color="black",shape="box"];982 -> 1151[label="",style="solid", color="black", weight=3]; 1611 -> 1610[label="",style="dashed", color="red", weight=0]; 1611[label="yvy401 == yvy301 && yvy402 == yvy302",fontsize=16,color="magenta"];1611 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1612[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3954[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 1631[label="",style="solid", color="blue", weight=3]; 3955[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 1632[label="",style="solid", color="blue", weight=3]; 3956[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 1633[label="",style="solid", color="blue", weight=3]; 3957[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 1634[label="",style="solid", color="blue", weight=3]; 3958[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 1635[label="",style="solid", color="blue", weight=3]; 3959[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 1636[label="",style="solid", color="blue", weight=3]; 3960[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 1637[label="",style="solid", color="blue", weight=3]; 3961[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 1638[label="",style="solid", color="blue", weight=3]; 3962[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 1639[label="",style="solid", color="blue", weight=3]; 3963[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 1640[label="",style="solid", color="blue", weight=3]; 3964[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 1641[label="",style="solid", color="blue", weight=3]; 3965[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 1642[label="",style="solid", color="blue", weight=3]; 3966[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 1643[label="",style="solid", color="blue", weight=3]; 3967[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 1644[label="",style="solid", color="blue", weight=3]; 1610[label="yvy228 && yvy229",fontsize=16,color="burlywood",shape="triangle"];3968[label="yvy228/False",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3968[label="",style="solid", color="burlywood", weight=9]; 3968 -> 1645[label="",style="solid", color="burlywood", weight=3]; 3969[label="yvy228/True",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3969[label="",style="solid", color="burlywood", weight=9]; 3969 -> 1646[label="",style="solid", color="burlywood", weight=3]; 1605[label="compare2 (yvy191,yvy192,yvy193) (yvy194,yvy195,yvy196) False",fontsize=16,color="black",shape="box"];1605 -> 1647[label="",style="solid", color="black", weight=3]; 1606[label="compare2 (yvy191,yvy192,yvy193) (yvy194,yvy195,yvy196) True",fontsize=16,color="black",shape="box"];1606 -> 1648[label="",style="solid", color="black", weight=3]; 999[label="compare1 Nothing (Just yvy300) True",fontsize=16,color="black",shape="box"];999 -> 1174[label="",style="solid", color="black", weight=3]; 1000[label="compare1 (Just yvy400) Nothing False",fontsize=16,color="black",shape="box"];1000 -> 1175[label="",style="solid", color="black", weight=3]; 1001 -> 983[label="",style="dashed", color="red", weight=0]; 1001[label="yvy400 == yvy300",fontsize=16,color="magenta"];1001 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1001 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1002 -> 984[label="",style="dashed", color="red", weight=0]; 1002[label="yvy400 == yvy300",fontsize=16,color="magenta"];1002 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1002 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1003 -> 985[label="",style="dashed", color="red", weight=0]; 1003[label="yvy400 == yvy300",fontsize=16,color="magenta"];1003 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1003 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1004 -> 986[label="",style="dashed", color="red", weight=0]; 1004[label="yvy400 == yvy300",fontsize=16,color="magenta"];1004 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1005 -> 987[label="",style="dashed", color="red", weight=0]; 1005[label="yvy400 == yvy300",fontsize=16,color="magenta"];1005 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1006 -> 988[label="",style="dashed", color="red", weight=0]; 1006[label="yvy400 == yvy300",fontsize=16,color="magenta"];1006 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1007 -> 989[label="",style="dashed", color="red", weight=0]; 1007[label="yvy400 == yvy300",fontsize=16,color="magenta"];1007 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1008 -> 990[label="",style="dashed", color="red", weight=0]; 1008[label="yvy400 == yvy300",fontsize=16,color="magenta"];1008 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1009 -> 991[label="",style="dashed", color="red", weight=0]; 1009[label="yvy400 == yvy300",fontsize=16,color="magenta"];1009 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1010 -> 992[label="",style="dashed", color="red", weight=0]; 1010[label="yvy400 == yvy300",fontsize=16,color="magenta"];1010 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1011 -> 993[label="",style="dashed", color="red", weight=0]; 1011[label="yvy400 == yvy300",fontsize=16,color="magenta"];1011 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1012 -> 994[label="",style="dashed", color="red", weight=0]; 1012[label="yvy400 == yvy300",fontsize=16,color="magenta"];1012 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1013 -> 995[label="",style="dashed", color="red", weight=0]; 1013[label="yvy400 == yvy300",fontsize=16,color="magenta"];1013 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1014 -> 996[label="",style="dashed", color="red", weight=0]; 1014[label="yvy400 == yvy300",fontsize=16,color="magenta"];1014 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1015[label="compare2 (Just yvy153) (Just yvy154) False",fontsize=16,color="black",shape="box"];1015 -> 1204[label="",style="solid", color="black", weight=3]; 1016[label="compare2 (Just yvy153) (Just yvy154) True",fontsize=16,color="black",shape="box"];1016 -> 1205[label="",style="solid", color="black", weight=3]; 1017[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];1017 -> 1206[label="",style="solid", color="black", weight=3]; 1018[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];1018 -> 1207[label="",style="solid", color="black", weight=3]; 1019[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];1019 -> 1208[label="",style="solid", color="black", weight=3]; 1020[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];1020 -> 1209[label="",style="solid", color="black", weight=3]; 1021[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];1021 -> 1210[label="",style="solid", color="black", weight=3]; 1022[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];1022 -> 1211[label="",style="solid", color="black", weight=3]; 1023 -> 716[label="",style="dashed", color="red", weight=0]; 1023[label="primCmpNat yvy4000 yvy3000",fontsize=16,color="magenta"];1023 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1024[label="GT",fontsize=16,color="green",shape="box"];1025[label="LT",fontsize=16,color="green",shape="box"];1026[label="EQ",fontsize=16,color="green",shape="box"];1027 -> 772[label="",style="dashed", color="red", weight=0]; 1027[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];1027 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1028 -> 772[label="",style="dashed", color="red", weight=0]; 1028[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];1028 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1029 -> 772[label="",style="dashed", color="red", weight=0]; 1029[label="yvy400 * Pos yvy3010",fontsize=16,color="magenta"];1029 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1030 -> 772[label="",style="dashed", color="red", weight=0]; 1030[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];1030 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1031 -> 772[label="",style="dashed", color="red", weight=0]; 1031[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];1031 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1032 -> 772[label="",style="dashed", color="red", weight=0]; 1032[label="Pos yvy4010 * yvy300",fontsize=16,color="magenta"];1032 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1033 -> 772[label="",style="dashed", color="red", weight=0]; 1033[label="yvy400 * Neg yvy3010",fontsize=16,color="magenta"];1033 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1034 -> 772[label="",style="dashed", color="red", weight=0]; 1034[label="Neg yvy4010 * yvy300",fontsize=16,color="magenta"];1034 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1035 -> 983[label="",style="dashed", color="red", weight=0]; 1035[label="yvy400 == yvy300",fontsize=16,color="magenta"];1035 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1036 -> 984[label="",style="dashed", color="red", weight=0]; 1036[label="yvy400 == yvy300",fontsize=16,color="magenta"];1036 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1036 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1037 -> 985[label="",style="dashed", color="red", weight=0]; 1037[label="yvy400 == yvy300",fontsize=16,color="magenta"];1037 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1038 -> 986[label="",style="dashed", color="red", weight=0]; 1038[label="yvy400 == yvy300",fontsize=16,color="magenta"];1038 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1038 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1039 -> 987[label="",style="dashed", color="red", weight=0]; 1039[label="yvy400 == yvy300",fontsize=16,color="magenta"];1039 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1040 -> 988[label="",style="dashed", color="red", weight=0]; 1040[label="yvy400 == yvy300",fontsize=16,color="magenta"];1040 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1041 -> 989[label="",style="dashed", color="red", weight=0]; 1041[label="yvy400 == yvy300",fontsize=16,color="magenta"];1041 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1042 -> 990[label="",style="dashed", color="red", weight=0]; 1042[label="yvy400 == yvy300",fontsize=16,color="magenta"];1042 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1043 -> 991[label="",style="dashed", color="red", weight=0]; 1043[label="yvy400 == yvy300",fontsize=16,color="magenta"];1043 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1044 -> 992[label="",style="dashed", color="red", weight=0]; 1044[label="yvy400 == yvy300",fontsize=16,color="magenta"];1044 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1045 -> 993[label="",style="dashed", color="red", weight=0]; 1045[label="yvy400 == yvy300",fontsize=16,color="magenta"];1045 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1046 -> 994[label="",style="dashed", color="red", weight=0]; 1046[label="yvy400 == yvy300",fontsize=16,color="magenta"];1046 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1047 -> 995[label="",style="dashed", color="red", weight=0]; 1047[label="yvy400 == yvy300",fontsize=16,color="magenta"];1047 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1047 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1048 -> 996[label="",style="dashed", color="red", weight=0]; 1048[label="yvy400 == yvy300",fontsize=16,color="magenta"];1048 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1049[label="compare2 (Left yvy160) (Left yvy161) False",fontsize=16,color="black",shape="box"];1049 -> 1258[label="",style="solid", color="black", weight=3]; 1050[label="compare2 (Left yvy160) (Left yvy161) True",fontsize=16,color="black",shape="box"];1050 -> 1259[label="",style="solid", color="black", weight=3]; 1051[label="compare1 (Left yvy400) (Right yvy300) True",fontsize=16,color="black",shape="box"];1051 -> 1260[label="",style="solid", color="black", weight=3]; 1052[label="compare1 (Right yvy400) (Left yvy300) False",fontsize=16,color="black",shape="box"];1052 -> 1261[label="",style="solid", color="black", weight=3]; 1053 -> 983[label="",style="dashed", color="red", weight=0]; 1053[label="yvy400 == yvy300",fontsize=16,color="magenta"];1053 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1053 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1054 -> 984[label="",style="dashed", color="red", weight=0]; 1054[label="yvy400 == yvy300",fontsize=16,color="magenta"];1054 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1054 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1055 -> 985[label="",style="dashed", color="red", weight=0]; 1055[label="yvy400 == yvy300",fontsize=16,color="magenta"];1055 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1055 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1056 -> 986[label="",style="dashed", color="red", weight=0]; 1056[label="yvy400 == yvy300",fontsize=16,color="magenta"];1056 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1056 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1057 -> 987[label="",style="dashed", color="red", weight=0]; 1057[label="yvy400 == yvy300",fontsize=16,color="magenta"];1057 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1057 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1058 -> 988[label="",style="dashed", color="red", weight=0]; 1058[label="yvy400 == yvy300",fontsize=16,color="magenta"];1058 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1059 -> 989[label="",style="dashed", color="red", weight=0]; 1059[label="yvy400 == yvy300",fontsize=16,color="magenta"];1059 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1059 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1060 -> 990[label="",style="dashed", color="red", weight=0]; 1060[label="yvy400 == yvy300",fontsize=16,color="magenta"];1060 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1061 -> 991[label="",style="dashed", color="red", weight=0]; 1061[label="yvy400 == yvy300",fontsize=16,color="magenta"];1061 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1062 -> 992[label="",style="dashed", color="red", weight=0]; 1062[label="yvy400 == yvy300",fontsize=16,color="magenta"];1062 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1063 -> 993[label="",style="dashed", color="red", weight=0]; 1063[label="yvy400 == yvy300",fontsize=16,color="magenta"];1063 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1064 -> 994[label="",style="dashed", color="red", weight=0]; 1064[label="yvy400 == yvy300",fontsize=16,color="magenta"];1064 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1064 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1065 -> 995[label="",style="dashed", color="red", weight=0]; 1065[label="yvy400 == yvy300",fontsize=16,color="magenta"];1065 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1066 -> 996[label="",style="dashed", color="red", weight=0]; 1066[label="yvy400 == yvy300",fontsize=16,color="magenta"];1066 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1067[label="compare2 (Right yvy167) (Right yvy168) False",fontsize=16,color="black",shape="box"];1067 -> 1290[label="",style="solid", color="black", weight=3]; 1068[label="compare2 (Right yvy167) (Right yvy168) True",fontsize=16,color="black",shape="box"];1068 -> 1291[label="",style="solid", color="black", weight=3]; 1613[label="yvy401 == yvy301",fontsize=16,color="blue",shape="box"];3970[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 1649[label="",style="solid", color="blue", weight=3]; 3971[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 1650[label="",style="solid", color="blue", weight=3]; 3972[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 1651[label="",style="solid", color="blue", weight=3]; 3973[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 1652[label="",style="solid", color="blue", weight=3]; 3974[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 1653[label="",style="solid", color="blue", weight=3]; 3975[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 1654[label="",style="solid", color="blue", weight=3]; 3976[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 1655[label="",style="solid", color="blue", weight=3]; 3977[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 1656[label="",style="solid", color="blue", weight=3]; 3978[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 1657[label="",style="solid", color="blue", weight=3]; 3979[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 1658[label="",style="solid", color="blue", weight=3]; 3980[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 1659[label="",style="solid", color="blue", weight=3]; 3981[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 1660[label="",style="solid", color="blue", weight=3]; 3982[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 1661[label="",style="solid", color="blue", weight=3]; 3983[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1613 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 1662[label="",style="solid", color="blue", weight=3]; 1614[label="yvy400 == yvy300",fontsize=16,color="blue",shape="box"];3984[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 1663[label="",style="solid", color="blue", weight=3]; 3985[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 1664[label="",style="solid", color="blue", weight=3]; 3986[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 1665[label="",style="solid", color="blue", weight=3]; 3987[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 1666[label="",style="solid", color="blue", weight=3]; 3988[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 1667[label="",style="solid", color="blue", weight=3]; 3989[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 1668[label="",style="solid", color="blue", weight=3]; 3990[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 1669[label="",style="solid", color="blue", weight=3]; 3991[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 1670[label="",style="solid", color="blue", weight=3]; 3992[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 1671[label="",style="solid", color="blue", weight=3]; 3993[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 1672[label="",style="solid", color="blue", weight=3]; 3994[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 1673[label="",style="solid", color="blue", weight=3]; 3995[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 1674[label="",style="solid", color="blue", weight=3]; 3996[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 1675[label="",style="solid", color="blue", weight=3]; 3997[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 1676[label="",style="solid", color="blue", weight=3]; 1417[label="compare2 (yvy204,yvy205) (yvy206,yvy207) False",fontsize=16,color="black",shape="box"];1417 -> 1440[label="",style="solid", color="black", weight=3]; 1418[label="compare2 (yvy204,yvy205) (yvy206,yvy207) True",fontsize=16,color="black",shape="box"];1418 -> 1441[label="",style="solid", color="black", weight=3]; 1085[label="FiniteMap.Branch yvy110 (FiniteMap.addToFM0 yvy106 yvy111) yvy107 yvy108 yvy109",fontsize=16,color="green",shape="box"];1085 -> 1322[label="",style="dashed", color="green", weight=3]; 1086[label="yvy110",fontsize=16,color="green",shape="box"];1087[label="yvy109",fontsize=16,color="green",shape="box"];1088[label="yvy111",fontsize=16,color="green",shape="box"];1089[label="primPlusNat (primPlusNat (primMulNat (Succ (Succ (Succ Zero))) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="black",shape="box"];1089 -> 1323[label="",style="solid", color="black", weight=3]; 1090[label="FiniteMap.Branch yvy117 yvy118 (FiniteMap.mkBranchUnbox (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128) + FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128))) (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="green",shape="box"];1090 -> 1324[label="",style="dashed", color="green", weight=3]; 1093[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="black",shape="triangle"];1093 -> 1327[label="",style="solid", color="black", weight=3]; 1482 -> 1327[label="",style="dashed", color="red", weight=0]; 1482[label="FiniteMap.sizeFM yvy90",fontsize=16,color="magenta"];1482 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1483[label="primPlusInt (Pos yvy9020) yvy217",fontsize=16,color="burlywood",shape="box"];3998[label="yvy217/Pos yvy2170",fontsize=10,color="white",style="solid",shape="box"];1483 -> 3998[label="",style="solid", color="burlywood", weight=9]; 3998 -> 1492[label="",style="solid", color="burlywood", weight=3]; 3999[label="yvy217/Neg yvy2170",fontsize=10,color="white",style="solid",shape="box"];1483 -> 3999[label="",style="solid", color="burlywood", weight=9]; 3999 -> 1493[label="",style="solid", color="burlywood", weight=3]; 1484[label="primPlusInt (Neg yvy9020) yvy217",fontsize=16,color="burlywood",shape="box"];4000[label="yvy217/Pos yvy2170",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4000[label="",style="solid", color="burlywood", weight=9]; 4000 -> 1494[label="",style="solid", color="burlywood", weight=3]; 4001[label="yvy217/Neg yvy2170",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4001[label="",style="solid", color="burlywood", weight=9]; 4001 -> 1495[label="",style="solid", color="burlywood", weight=3]; 1094 -> 772[label="",style="dashed", color="red", weight=0]; 1094[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1094 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1095[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 False",fontsize=16,color="black",shape="box"];1095 -> 1330[label="",style="solid", color="black", weight=3]; 1096[label="FiniteMap.mkBalBranch6MkBalBranch4 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];1096 -> 1331[label="",style="solid", color="black", weight=3]; 1097[label="FiniteMap.Branch yvy50 yvy51 (FiniteMap.mkBranchUnbox yvy90 yvy50 yvy54 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54 + FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54)) yvy90 yvy54",fontsize=16,color="green",shape="box"];1097 -> 1332[label="",style="dashed", color="green", weight=3]; 1098[label="LT",fontsize=16,color="green",shape="box"];1099[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];1099 -> 1333[label="",style="solid", color="black", weight=3]; 1100[label="primMulInt (Pos yvy4000) (Pos yvy3010)",fontsize=16,color="black",shape="box"];1100 -> 1334[label="",style="solid", color="black", weight=3]; 1101[label="primMulInt (Pos yvy4000) (Neg yvy3010)",fontsize=16,color="black",shape="box"];1101 -> 1335[label="",style="solid", color="black", weight=3]; 1102[label="primMulInt (Neg yvy4000) (Pos yvy3010)",fontsize=16,color="black",shape="box"];1102 -> 1336[label="",style="solid", color="black", weight=3]; 1103[label="primMulInt (Neg yvy4000) (Neg yvy3010)",fontsize=16,color="black",shape="box"];1103 -> 1337[label="",style="solid", color="black", weight=3]; 1104[label="Integer (primMulInt yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1104 -> 1338[label="",style="dashed", color="green", weight=3]; 1105[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1106[label="yvy400",fontsize=16,color="green",shape="box"];1107[label="yvy300",fontsize=16,color="green",shape="box"];1108[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1109[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1110[label="yvy400",fontsize=16,color="green",shape="box"];1111[label="yvy300",fontsize=16,color="green",shape="box"];1112[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1113[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1114[label="yvy400",fontsize=16,color="green",shape="box"];1115[label="yvy300",fontsize=16,color="green",shape="box"];1116[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1117[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1118[label="yvy400",fontsize=16,color="green",shape="box"];1119[label="yvy300",fontsize=16,color="green",shape="box"];1120[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1121[label="yvy400",fontsize=16,color="green",shape="box"];1122[label="yvy300",fontsize=16,color="green",shape="box"];1123[label="yvy400",fontsize=16,color="green",shape="box"];1124[label="yvy300",fontsize=16,color="green",shape="box"];1125[label="yvy400",fontsize=16,color="green",shape="box"];1126[label="yvy300",fontsize=16,color="green",shape="box"];1127[label="yvy400",fontsize=16,color="green",shape="box"];1128[label="yvy300",fontsize=16,color="green",shape="box"];1129[label="yvy400",fontsize=16,color="green",shape="box"];1130[label="yvy300",fontsize=16,color="green",shape="box"];1131[label="yvy400",fontsize=16,color="green",shape="box"];1132[label="yvy300",fontsize=16,color="green",shape="box"];1133[label="yvy400",fontsize=16,color="green",shape="box"];1134[label="yvy300",fontsize=16,color="green",shape="box"];1135[label="yvy400",fontsize=16,color="green",shape="box"];1136[label="yvy300",fontsize=16,color="green",shape="box"];1137[label="yvy400",fontsize=16,color="green",shape="box"];1138[label="yvy300",fontsize=16,color="green",shape="box"];1139[label="yvy400",fontsize=16,color="green",shape="box"];1140[label="yvy300",fontsize=16,color="green",shape="box"];1141[label="yvy400",fontsize=16,color="green",shape="box"];1142[label="yvy300",fontsize=16,color="green",shape="box"];1143[label="yvy400",fontsize=16,color="green",shape="box"];1144[label="yvy300",fontsize=16,color="green",shape="box"];1145[label="yvy400",fontsize=16,color="green",shape="box"];1146[label="yvy300",fontsize=16,color="green",shape="box"];1147[label="yvy400",fontsize=16,color="green",shape="box"];1148[label="yvy300",fontsize=16,color="green",shape="box"];1149[label="LT",fontsize=16,color="green",shape="box"];1150[label="yvy132",fontsize=16,color="green",shape="box"];1151[label="GT",fontsize=16,color="green",shape="box"];1629[label="yvy402 == yvy302",fontsize=16,color="blue",shape="box"];4002[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 1689[label="",style="solid", color="blue", weight=3]; 4003[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 1690[label="",style="solid", color="blue", weight=3]; 4004[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 1691[label="",style="solid", color="blue", weight=3]; 4005[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 1692[label="",style="solid", color="blue", weight=3]; 4006[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4006[label="",style="solid", color="blue", weight=9]; 4006 -> 1693[label="",style="solid", color="blue", weight=3]; 4007[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4007[label="",style="solid", color="blue", weight=9]; 4007 -> 1694[label="",style="solid", color="blue", weight=3]; 4008[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 1695[label="",style="solid", color="blue", weight=3]; 4009[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 1696[label="",style="solid", color="blue", weight=3]; 4010[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 1697[label="",style="solid", color="blue", weight=3]; 4011[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 1698[label="",style="solid", color="blue", weight=3]; 4012[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 1699[label="",style="solid", color="blue", weight=3]; 4013[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 1700[label="",style="solid", color="blue", weight=3]; 4014[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 1701[label="",style="solid", color="blue", weight=3]; 4015[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1629 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 1702[label="",style="solid", color="blue", weight=3]; 1630[label="yvy401 == yvy301",fontsize=16,color="blue",shape="box"];4016[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 1703[label="",style="solid", color="blue", weight=3]; 4017[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 1704[label="",style="solid", color="blue", weight=3]; 4018[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 1705[label="",style="solid", color="blue", weight=3]; 4019[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 1706[label="",style="solid", color="blue", weight=3]; 4020[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 1707[label="",style="solid", color="blue", weight=3]; 4021[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 1708[label="",style="solid", color="blue", weight=3]; 4022[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4022[label="",style="solid", color="blue", weight=9]; 4022 -> 1709[label="",style="solid", color="blue", weight=3]; 4023[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4023[label="",style="solid", color="blue", weight=9]; 4023 -> 1710[label="",style="solid", color="blue", weight=3]; 4024[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4024[label="",style="solid", color="blue", weight=9]; 4024 -> 1711[label="",style="solid", color="blue", weight=3]; 4025[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4025[label="",style="solid", color="blue", weight=9]; 4025 -> 1712[label="",style="solid", color="blue", weight=3]; 4026[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4026[label="",style="solid", color="blue", weight=9]; 4026 -> 1713[label="",style="solid", color="blue", weight=3]; 4027[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4027[label="",style="solid", color="blue", weight=9]; 4027 -> 1714[label="",style="solid", color="blue", weight=3]; 4028[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4028[label="",style="solid", color="blue", weight=9]; 4028 -> 1715[label="",style="solid", color="blue", weight=3]; 4029[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 1716[label="",style="solid", color="blue", weight=3]; 1631 -> 983[label="",style="dashed", color="red", weight=0]; 1631[label="yvy400 == yvy300",fontsize=16,color="magenta"];1632 -> 984[label="",style="dashed", color="red", weight=0]; 1632[label="yvy400 == yvy300",fontsize=16,color="magenta"];1633 -> 985[label="",style="dashed", color="red", weight=0]; 1633[label="yvy400 == yvy300",fontsize=16,color="magenta"];1634 -> 986[label="",style="dashed", color="red", weight=0]; 1634[label="yvy400 == yvy300",fontsize=16,color="magenta"];1635 -> 987[label="",style="dashed", color="red", weight=0]; 1635[label="yvy400 == yvy300",fontsize=16,color="magenta"];1636 -> 988[label="",style="dashed", color="red", weight=0]; 1636[label="yvy400 == yvy300",fontsize=16,color="magenta"];1637 -> 989[label="",style="dashed", color="red", weight=0]; 1637[label="yvy400 == yvy300",fontsize=16,color="magenta"];1638 -> 990[label="",style="dashed", color="red", weight=0]; 1638[label="yvy400 == yvy300",fontsize=16,color="magenta"];1639 -> 991[label="",style="dashed", color="red", weight=0]; 1639[label="yvy400 == yvy300",fontsize=16,color="magenta"];1640 -> 992[label="",style="dashed", color="red", weight=0]; 1640[label="yvy400 == yvy300",fontsize=16,color="magenta"];1641 -> 993[label="",style="dashed", color="red", weight=0]; 1641[label="yvy400 == yvy300",fontsize=16,color="magenta"];1642 -> 994[label="",style="dashed", color="red", weight=0]; 1642[label="yvy400 == yvy300",fontsize=16,color="magenta"];1643 -> 995[label="",style="dashed", color="red", weight=0]; 1643[label="yvy400 == yvy300",fontsize=16,color="magenta"];1644 -> 996[label="",style="dashed", color="red", weight=0]; 1644[label="yvy400 == yvy300",fontsize=16,color="magenta"];1645[label="False && yvy229",fontsize=16,color="black",shape="box"];1645 -> 1717[label="",style="solid", color="black", weight=3]; 1646[label="True && yvy229",fontsize=16,color="black",shape="box"];1646 -> 1718[label="",style="solid", color="black", weight=3]; 1647[label="compare1 (yvy191,yvy192,yvy193) (yvy194,yvy195,yvy196) ((yvy191,yvy192,yvy193) <= (yvy194,yvy195,yvy196))",fontsize=16,color="black",shape="box"];1647 -> 1719[label="",style="solid", color="black", weight=3]; 1648[label="EQ",fontsize=16,color="green",shape="box"];1174[label="LT",fontsize=16,color="green",shape="box"];1175[label="compare0 (Just yvy400) Nothing otherwise",fontsize=16,color="black",shape="box"];1175 -> 1383[label="",style="solid", color="black", weight=3]; 1176[label="yvy400",fontsize=16,color="green",shape="box"];1177[label="yvy300",fontsize=16,color="green",shape="box"];983[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4030[label="yvy400/yvy4000 : yvy4001",fontsize=10,color="white",style="solid",shape="box"];983 -> 4030[label="",style="solid", color="burlywood", weight=9]; 4030 -> 1152[label="",style="solid", color="burlywood", weight=3]; 4031[label="yvy400/[]",fontsize=10,color="white",style="solid",shape="box"];983 -> 4031[label="",style="solid", color="burlywood", weight=9]; 4031 -> 1153[label="",style="solid", color="burlywood", weight=3]; 1178[label="yvy400",fontsize=16,color="green",shape="box"];1179[label="yvy300",fontsize=16,color="green",shape="box"];984[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4032[label="yvy400/(yvy4000,yvy4001,yvy4002)",fontsize=10,color="white",style="solid",shape="box"];984 -> 4032[label="",style="solid", color="burlywood", weight=9]; 4032 -> 1154[label="",style="solid", color="burlywood", weight=3]; 1180[label="yvy400",fontsize=16,color="green",shape="box"];1181[label="yvy300",fontsize=16,color="green",shape="box"];985[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4033[label="yvy400/False",fontsize=10,color="white",style="solid",shape="box"];985 -> 4033[label="",style="solid", color="burlywood", weight=9]; 4033 -> 1155[label="",style="solid", color="burlywood", weight=3]; 4034[label="yvy400/True",fontsize=10,color="white",style="solid",shape="box"];985 -> 4034[label="",style="solid", color="burlywood", weight=9]; 4034 -> 1156[label="",style="solid", color="burlywood", weight=3]; 1182[label="yvy400",fontsize=16,color="green",shape="box"];1183[label="yvy300",fontsize=16,color="green",shape="box"];986[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4035[label="yvy400/(yvy4000,yvy4001)",fontsize=10,color="white",style="solid",shape="box"];986 -> 4035[label="",style="solid", color="burlywood", weight=9]; 4035 -> 1157[label="",style="solid", color="burlywood", weight=3]; 1184[label="yvy400",fontsize=16,color="green",shape="box"];1185[label="yvy300",fontsize=16,color="green",shape="box"];987[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];987 -> 1158[label="",style="solid", color="black", weight=3]; 1186[label="yvy400",fontsize=16,color="green",shape="box"];1187[label="yvy300",fontsize=16,color="green",shape="box"];988[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];988 -> 1159[label="",style="solid", color="black", weight=3]; 1188[label="yvy400",fontsize=16,color="green",shape="box"];1189[label="yvy300",fontsize=16,color="green",shape="box"];989[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4036[label="yvy400/Left yvy4000",fontsize=10,color="white",style="solid",shape="box"];989 -> 4036[label="",style="solid", color="burlywood", weight=9]; 4036 -> 1160[label="",style="solid", color="burlywood", weight=3]; 4037[label="yvy400/Right yvy4000",fontsize=10,color="white",style="solid",shape="box"];989 -> 4037[label="",style="solid", color="burlywood", weight=9]; 4037 -> 1161[label="",style="solid", color="burlywood", weight=3]; 1190[label="yvy400",fontsize=16,color="green",shape="box"];1191[label="yvy300",fontsize=16,color="green",shape="box"];990[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4038[label="yvy400/Nothing",fontsize=10,color="white",style="solid",shape="box"];990 -> 4038[label="",style="solid", color="burlywood", weight=9]; 4038 -> 1162[label="",style="solid", color="burlywood", weight=3]; 4039[label="yvy400/Just yvy4000",fontsize=10,color="white",style="solid",shape="box"];990 -> 4039[label="",style="solid", color="burlywood", weight=9]; 4039 -> 1163[label="",style="solid", color="burlywood", weight=3]; 1192[label="yvy400",fontsize=16,color="green",shape="box"];1193[label="yvy300",fontsize=16,color="green",shape="box"];991[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];991 -> 1164[label="",style="solid", color="black", weight=3]; 1194[label="yvy400",fontsize=16,color="green",shape="box"];1195[label="yvy300",fontsize=16,color="green",shape="box"];992[label="yvy400 == yvy300",fontsize=16,color="black",shape="triangle"];992 -> 1165[label="",style="solid", color="black", weight=3]; 1196[label="yvy400",fontsize=16,color="green",shape="box"];1197[label="yvy300",fontsize=16,color="green",shape="box"];993[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4040[label="yvy400/LT",fontsize=10,color="white",style="solid",shape="box"];993 -> 4040[label="",style="solid", color="burlywood", weight=9]; 4040 -> 1166[label="",style="solid", color="burlywood", weight=3]; 4041[label="yvy400/EQ",fontsize=10,color="white",style="solid",shape="box"];993 -> 4041[label="",style="solid", color="burlywood", weight=9]; 4041 -> 1167[label="",style="solid", color="burlywood", weight=3]; 4042[label="yvy400/GT",fontsize=10,color="white",style="solid",shape="box"];993 -> 4042[label="",style="solid", color="burlywood", weight=9]; 4042 -> 1168[label="",style="solid", color="burlywood", weight=3]; 1198[label="yvy400",fontsize=16,color="green",shape="box"];1199[label="yvy300",fontsize=16,color="green",shape="box"];994[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4043[label="yvy400/yvy4000 :% yvy4001",fontsize=10,color="white",style="solid",shape="box"];994 -> 4043[label="",style="solid", color="burlywood", weight=9]; 4043 -> 1169[label="",style="solid", color="burlywood", weight=3]; 1200[label="yvy400",fontsize=16,color="green",shape="box"];1201[label="yvy300",fontsize=16,color="green",shape="box"];995[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4044[label="yvy400/()",fontsize=10,color="white",style="solid",shape="box"];995 -> 4044[label="",style="solid", color="burlywood", weight=9]; 4044 -> 1170[label="",style="solid", color="burlywood", weight=3]; 1202[label="yvy400",fontsize=16,color="green",shape="box"];1203[label="yvy300",fontsize=16,color="green",shape="box"];996[label="yvy400 == yvy300",fontsize=16,color="burlywood",shape="triangle"];4045[label="yvy400/Integer yvy4000",fontsize=10,color="white",style="solid",shape="box"];996 -> 4045[label="",style="solid", color="burlywood", weight=9]; 4045 -> 1171[label="",style="solid", color="burlywood", weight=3]; 1204 -> 1682[label="",style="dashed", color="red", weight=0]; 1204[label="compare1 (Just yvy153) (Just yvy154) (Just yvy153 <= Just yvy154)",fontsize=16,color="magenta"];1204 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1205[label="EQ",fontsize=16,color="green",shape="box"];1206[label="LT",fontsize=16,color="green",shape="box"];1207[label="LT",fontsize=16,color="green",shape="box"];1208[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];1208 -> 1385[label="",style="solid", color="black", weight=3]; 1209[label="LT",fontsize=16,color="green",shape="box"];1210[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];1210 -> 1386[label="",style="solid", color="black", weight=3]; 1211[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];1211 -> 1387[label="",style="solid", color="black", weight=3]; 1212[label="yvy3000",fontsize=16,color="green",shape="box"];1213[label="yvy4000",fontsize=16,color="green",shape="box"];1214[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1215[label="yvy400",fontsize=16,color="green",shape="box"];1216[label="yvy300",fontsize=16,color="green",shape="box"];1217[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1218[label="Pos yvy3010",fontsize=16,color="green",shape="box"];1219[label="yvy400",fontsize=16,color="green",shape="box"];1220[label="yvy300",fontsize=16,color="green",shape="box"];1221[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1222[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1223[label="yvy400",fontsize=16,color="green",shape="box"];1224[label="yvy300",fontsize=16,color="green",shape="box"];1225[label="Pos yvy4010",fontsize=16,color="green",shape="box"];1226[label="Neg yvy3010",fontsize=16,color="green",shape="box"];1227[label="yvy400",fontsize=16,color="green",shape="box"];1228[label="yvy300",fontsize=16,color="green",shape="box"];1229[label="Neg yvy4010",fontsize=16,color="green",shape="box"];1230[label="yvy400",fontsize=16,color="green",shape="box"];1231[label="yvy300",fontsize=16,color="green",shape="box"];1232[label="yvy400",fontsize=16,color="green",shape="box"];1233[label="yvy300",fontsize=16,color="green",shape="box"];1234[label="yvy400",fontsize=16,color="green",shape="box"];1235[label="yvy300",fontsize=16,color="green",shape="box"];1236[label="yvy400",fontsize=16,color="green",shape="box"];1237[label="yvy300",fontsize=16,color="green",shape="box"];1238[label="yvy400",fontsize=16,color="green",shape="box"];1239[label="yvy300",fontsize=16,color="green",shape="box"];1240[label="yvy400",fontsize=16,color="green",shape="box"];1241[label="yvy300",fontsize=16,color="green",shape="box"];1242[label="yvy400",fontsize=16,color="green",shape="box"];1243[label="yvy300",fontsize=16,color="green",shape="box"];1244[label="yvy400",fontsize=16,color="green",shape="box"];1245[label="yvy300",fontsize=16,color="green",shape="box"];1246[label="yvy400",fontsize=16,color="green",shape="box"];1247[label="yvy300",fontsize=16,color="green",shape="box"];1248[label="yvy400",fontsize=16,color="green",shape="box"];1249[label="yvy300",fontsize=16,color="green",shape="box"];1250[label="yvy400",fontsize=16,color="green",shape="box"];1251[label="yvy300",fontsize=16,color="green",shape="box"];1252[label="yvy400",fontsize=16,color="green",shape="box"];1253[label="yvy300",fontsize=16,color="green",shape="box"];1254[label="yvy400",fontsize=16,color="green",shape="box"];1255[label="yvy300",fontsize=16,color="green",shape="box"];1256[label="yvy400",fontsize=16,color="green",shape="box"];1257[label="yvy300",fontsize=16,color="green",shape="box"];1258 -> 1782[label="",style="dashed", color="red", weight=0]; 1258[label="compare1 (Left yvy160) (Left yvy161) (Left yvy160 <= Left yvy161)",fontsize=16,color="magenta"];1258 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1259[label="EQ",fontsize=16,color="green",shape="box"];1260[label="LT",fontsize=16,color="green",shape="box"];1261[label="compare0 (Right yvy400) (Left yvy300) otherwise",fontsize=16,color="black",shape="box"];1261 -> 1389[label="",style="solid", color="black", weight=3]; 1262[label="yvy400",fontsize=16,color="green",shape="box"];1263[label="yvy300",fontsize=16,color="green",shape="box"];1264[label="yvy400",fontsize=16,color="green",shape="box"];1265[label="yvy300",fontsize=16,color="green",shape="box"];1266[label="yvy400",fontsize=16,color="green",shape="box"];1267[label="yvy300",fontsize=16,color="green",shape="box"];1268[label="yvy400",fontsize=16,color="green",shape="box"];1269[label="yvy300",fontsize=16,color="green",shape="box"];1270[label="yvy400",fontsize=16,color="green",shape="box"];1271[label="yvy300",fontsize=16,color="green",shape="box"];1272[label="yvy400",fontsize=16,color="green",shape="box"];1273[label="yvy300",fontsize=16,color="green",shape="box"];1274[label="yvy400",fontsize=16,color="green",shape="box"];1275[label="yvy300",fontsize=16,color="green",shape="box"];1276[label="yvy400",fontsize=16,color="green",shape="box"];1277[label="yvy300",fontsize=16,color="green",shape="box"];1278[label="yvy400",fontsize=16,color="green",shape="box"];1279[label="yvy300",fontsize=16,color="green",shape="box"];1280[label="yvy400",fontsize=16,color="green",shape="box"];1281[label="yvy300",fontsize=16,color="green",shape="box"];1282[label="yvy400",fontsize=16,color="green",shape="box"];1283[label="yvy300",fontsize=16,color="green",shape="box"];1284[label="yvy400",fontsize=16,color="green",shape="box"];1285[label="yvy300",fontsize=16,color="green",shape="box"];1286[label="yvy400",fontsize=16,color="green",shape="box"];1287[label="yvy300",fontsize=16,color="green",shape="box"];1288[label="yvy400",fontsize=16,color="green",shape="box"];1289[label="yvy300",fontsize=16,color="green",shape="box"];1290 -> 1851[label="",style="dashed", color="red", weight=0]; 1290[label="compare1 (Right yvy167) (Right yvy168) (Right yvy167 <= Right yvy168)",fontsize=16,color="magenta"];1290 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1290 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1290 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1291[label="EQ",fontsize=16,color="green",shape="box"];1649 -> 983[label="",style="dashed", color="red", weight=0]; 1649[label="yvy401 == yvy301",fontsize=16,color="magenta"];1649 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1650 -> 984[label="",style="dashed", color="red", weight=0]; 1650[label="yvy401 == yvy301",fontsize=16,color="magenta"];1650 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1651 -> 985[label="",style="dashed", color="red", weight=0]; 1651[label="yvy401 == yvy301",fontsize=16,color="magenta"];1651 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1652 -> 986[label="",style="dashed", color="red", weight=0]; 1652[label="yvy401 == yvy301",fontsize=16,color="magenta"];1652 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1653 -> 987[label="",style="dashed", color="red", weight=0]; 1653[label="yvy401 == yvy301",fontsize=16,color="magenta"];1653 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1654 -> 988[label="",style="dashed", color="red", weight=0]; 1654[label="yvy401 == yvy301",fontsize=16,color="magenta"];1654 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1655 -> 989[label="",style="dashed", color="red", weight=0]; 1655[label="yvy401 == yvy301",fontsize=16,color="magenta"];1655 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1656 -> 990[label="",style="dashed", color="red", weight=0]; 1656[label="yvy401 == yvy301",fontsize=16,color="magenta"];1656 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1657 -> 991[label="",style="dashed", color="red", weight=0]; 1657[label="yvy401 == yvy301",fontsize=16,color="magenta"];1657 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1658 -> 992[label="",style="dashed", color="red", weight=0]; 1658[label="yvy401 == yvy301",fontsize=16,color="magenta"];1658 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1659 -> 993[label="",style="dashed", color="red", weight=0]; 1659[label="yvy401 == yvy301",fontsize=16,color="magenta"];1659 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1660 -> 994[label="",style="dashed", color="red", weight=0]; 1660[label="yvy401 == yvy301",fontsize=16,color="magenta"];1660 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1661 -> 995[label="",style="dashed", color="red", weight=0]; 1661[label="yvy401 == yvy301",fontsize=16,color="magenta"];1661 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1662 -> 996[label="",style="dashed", color="red", weight=0]; 1662[label="yvy401 == yvy301",fontsize=16,color="magenta"];1662 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1663 -> 983[label="",style="dashed", color="red", weight=0]; 1663[label="yvy400 == yvy300",fontsize=16,color="magenta"];1663 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1664 -> 984[label="",style="dashed", color="red", weight=0]; 1664[label="yvy400 == yvy300",fontsize=16,color="magenta"];1664 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1665 -> 985[label="",style="dashed", color="red", weight=0]; 1665[label="yvy400 == yvy300",fontsize=16,color="magenta"];1665 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1666 -> 986[label="",style="dashed", color="red", weight=0]; 1666[label="yvy400 == yvy300",fontsize=16,color="magenta"];1666 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1667 -> 987[label="",style="dashed", color="red", weight=0]; 1667[label="yvy400 == yvy300",fontsize=16,color="magenta"];1667 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1668 -> 988[label="",style="dashed", color="red", weight=0]; 1668[label="yvy400 == yvy300",fontsize=16,color="magenta"];1668 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1668 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1669 -> 989[label="",style="dashed", color="red", weight=0]; 1669[label="yvy400 == yvy300",fontsize=16,color="magenta"];1669 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1669 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1670 -> 990[label="",style="dashed", color="red", weight=0]; 1670[label="yvy400 == yvy300",fontsize=16,color="magenta"];1670 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1670 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1671 -> 991[label="",style="dashed", color="red", weight=0]; 1671[label="yvy400 == yvy300",fontsize=16,color="magenta"];1671 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1671 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1672 -> 992[label="",style="dashed", color="red", weight=0]; 1672[label="yvy400 == yvy300",fontsize=16,color="magenta"];1672 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1673 -> 993[label="",style="dashed", color="red", weight=0]; 1673[label="yvy400 == yvy300",fontsize=16,color="magenta"];1673 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1674 -> 994[label="",style="dashed", color="red", weight=0]; 1674[label="yvy400 == yvy300",fontsize=16,color="magenta"];1674 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1674 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1675 -> 995[label="",style="dashed", color="red", weight=0]; 1675[label="yvy400 == yvy300",fontsize=16,color="magenta"];1675 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1676 -> 996[label="",style="dashed", color="red", weight=0]; 1676[label="yvy400 == yvy300",fontsize=16,color="magenta"];1676 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1440[label="compare1 (yvy204,yvy205) (yvy206,yvy207) ((yvy204,yvy205) <= (yvy206,yvy207))",fontsize=16,color="black",shape="box"];1440 -> 1485[label="",style="solid", color="black", weight=3]; 1441[label="EQ",fontsize=16,color="green",shape="box"];1322[label="FiniteMap.addToFM0 yvy106 yvy111",fontsize=16,color="black",shape="box"];1322 -> 1435[label="",style="solid", color="black", weight=3]; 1323[label="primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ (Succ Zero)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="black",shape="box"];1323 -> 1436[label="",style="solid", color="black", weight=3]; 1324[label="FiniteMap.mkBranchUnbox (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128) (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128) + FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128))",fontsize=16,color="black",shape="box"];1324 -> 1437[label="",style="solid", color="black", weight=3]; 1327[label="FiniteMap.sizeFM yvy54",fontsize=16,color="burlywood",shape="triangle"];4046[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4046[label="",style="solid", color="burlywood", weight=9]; 4046 -> 1486[label="",style="solid", color="burlywood", weight=3]; 4047[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];1327 -> 4047[label="",style="solid", color="burlywood", weight=9]; 4047 -> 1487[label="",style="solid", color="burlywood", weight=3]; 1491[label="yvy90",fontsize=16,color="green",shape="box"];1492[label="primPlusInt (Pos yvy9020) (Pos yvy2170)",fontsize=16,color="black",shape="box"];1492 -> 1677[label="",style="solid", color="black", weight=3]; 1493[label="primPlusInt (Pos yvy9020) (Neg yvy2170)",fontsize=16,color="black",shape="box"];1493 -> 1678[label="",style="solid", color="black", weight=3]; 1494[label="primPlusInt (Neg yvy9020) (Pos yvy2170)",fontsize=16,color="black",shape="box"];1494 -> 1679[label="",style="solid", color="black", weight=3]; 1495[label="primPlusInt (Neg yvy9020) (Neg yvy2170)",fontsize=16,color="black",shape="box"];1495 -> 1680[label="",style="solid", color="black", weight=3]; 1328 -> 1474[label="",style="dashed", color="red", weight=0]; 1328[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1329[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1329 -> 1488[label="",style="solid", color="black", weight=3]; 1330 -> 1489[label="",style="dashed", color="red", weight=0]; 1330[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 (FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90)",fontsize=16,color="magenta"];1330 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1331[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 yvy54 yvy90 yvy90 yvy54 yvy54",fontsize=16,color="burlywood",shape="box"];4048[label="yvy54/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4048[label="",style="solid", color="burlywood", weight=9]; 4048 -> 1496[label="",style="solid", color="burlywood", weight=3]; 4049[label="yvy54/FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544",fontsize=10,color="white",style="solid",shape="box"];1331 -> 4049[label="",style="solid", color="burlywood", weight=9]; 4049 -> 1497[label="",style="solid", color="burlywood", weight=3]; 1332[label="FiniteMap.mkBranchUnbox yvy90 yvy50 yvy54 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54 + FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54)",fontsize=16,color="black",shape="box"];1332 -> 1498[label="",style="solid", color="black", weight=3]; 1333[label="compare0 True False True",fontsize=16,color="black",shape="box"];1333 -> 1499[label="",style="solid", color="black", weight=3]; 1334[label="Pos (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1334 -> 1500[label="",style="dashed", color="green", weight=3]; 1335[label="Neg (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1335 -> 1501[label="",style="dashed", color="green", weight=3]; 1336[label="Neg (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1336 -> 1502[label="",style="dashed", color="green", weight=3]; 1337[label="Pos (primMulNat yvy4000 yvy3010)",fontsize=16,color="green",shape="box"];1337 -> 1503[label="",style="dashed", color="green", weight=3]; 1338 -> 876[label="",style="dashed", color="red", weight=0]; 1338[label="primMulInt yvy4000 yvy3010",fontsize=16,color="magenta"];1338 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1689 -> 983[label="",style="dashed", color="red", weight=0]; 1689[label="yvy402 == yvy302",fontsize=16,color="magenta"];1689 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1689 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1690 -> 984[label="",style="dashed", color="red", weight=0]; 1690[label="yvy402 == yvy302",fontsize=16,color="magenta"];1690 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1690 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1691 -> 985[label="",style="dashed", color="red", weight=0]; 1691[label="yvy402 == yvy302",fontsize=16,color="magenta"];1691 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1691 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1692 -> 986[label="",style="dashed", color="red", weight=0]; 1692[label="yvy402 == yvy302",fontsize=16,color="magenta"];1692 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1692 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1693 -> 987[label="",style="dashed", color="red", weight=0]; 1693[label="yvy402 == yvy302",fontsize=16,color="magenta"];1693 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1693 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1694 -> 988[label="",style="dashed", color="red", weight=0]; 1694[label="yvy402 == yvy302",fontsize=16,color="magenta"];1694 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1694 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1695 -> 989[label="",style="dashed", color="red", weight=0]; 1695[label="yvy402 == yvy302",fontsize=16,color="magenta"];1695 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1695 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1696 -> 990[label="",style="dashed", color="red", weight=0]; 1696[label="yvy402 == yvy302",fontsize=16,color="magenta"];1696 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1696 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1697 -> 991[label="",style="dashed", color="red", weight=0]; 1697[label="yvy402 == yvy302",fontsize=16,color="magenta"];1697 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1697 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1698 -> 992[label="",style="dashed", color="red", weight=0]; 1698[label="yvy402 == yvy302",fontsize=16,color="magenta"];1698 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1698 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1699 -> 993[label="",style="dashed", color="red", weight=0]; 1699[label="yvy402 == yvy302",fontsize=16,color="magenta"];1699 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1699 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1700 -> 994[label="",style="dashed", color="red", weight=0]; 1700[label="yvy402 == yvy302",fontsize=16,color="magenta"];1700 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1700 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1701 -> 995[label="",style="dashed", color="red", weight=0]; 1701[label="yvy402 == yvy302",fontsize=16,color="magenta"];1701 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1701 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1702 -> 996[label="",style="dashed", color="red", weight=0]; 1702[label="yvy402 == yvy302",fontsize=16,color="magenta"];1702 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1702 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1703 -> 983[label="",style="dashed", color="red", weight=0]; 1703[label="yvy401 == yvy301",fontsize=16,color="magenta"];1703 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1703 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1704 -> 984[label="",style="dashed", color="red", weight=0]; 1704[label="yvy401 == yvy301",fontsize=16,color="magenta"];1704 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1704 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1705 -> 985[label="",style="dashed", color="red", weight=0]; 1705[label="yvy401 == yvy301",fontsize=16,color="magenta"];1705 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1705 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1706 -> 986[label="",style="dashed", color="red", weight=0]; 1706[label="yvy401 == yvy301",fontsize=16,color="magenta"];1706 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1706 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1707 -> 987[label="",style="dashed", color="red", weight=0]; 1707[label="yvy401 == yvy301",fontsize=16,color="magenta"];1707 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1707 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1708 -> 988[label="",style="dashed", color="red", weight=0]; 1708[label="yvy401 == yvy301",fontsize=16,color="magenta"];1708 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1708 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1709 -> 989[label="",style="dashed", color="red", weight=0]; 1709[label="yvy401 == yvy301",fontsize=16,color="magenta"];1709 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1709 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1710 -> 990[label="",style="dashed", color="red", weight=0]; 1710[label="yvy401 == yvy301",fontsize=16,color="magenta"];1710 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1710 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1711 -> 991[label="",style="dashed", color="red", weight=0]; 1711[label="yvy401 == yvy301",fontsize=16,color="magenta"];1711 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1712 -> 992[label="",style="dashed", color="red", weight=0]; 1712[label="yvy401 == yvy301",fontsize=16,color="magenta"];1712 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1712 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1713 -> 993[label="",style="dashed", color="red", weight=0]; 1713[label="yvy401 == yvy301",fontsize=16,color="magenta"];1713 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1713 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1714 -> 994[label="",style="dashed", color="red", weight=0]; 1714[label="yvy401 == yvy301",fontsize=16,color="magenta"];1714 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1715 -> 995[label="",style="dashed", color="red", weight=0]; 1715[label="yvy401 == yvy301",fontsize=16,color="magenta"];1715 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1715 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1716 -> 996[label="",style="dashed", color="red", weight=0]; 1716[label="yvy401 == yvy301",fontsize=16,color="magenta"];1716 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1716 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1717[label="False",fontsize=16,color="green",shape="box"];1718[label="yvy229",fontsize=16,color="green",shape="box"];1719 -> 1888[label="",style="dashed", color="red", weight=0]; 1719[label="compare1 (yvy191,yvy192,yvy193) (yvy194,yvy195,yvy196) (yvy191 < yvy194 || yvy191 == yvy194 && (yvy192 < yvy195 || yvy192 == yvy195 && yvy193 <= yvy196))",fontsize=16,color="magenta"];1719 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1383[label="compare0 (Just yvy400) Nothing True",fontsize=16,color="black",shape="box"];1383 -> 1681[label="",style="solid", color="black", weight=3]; 1152[label="yvy4000 : yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4050[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4050[label="",style="solid", color="burlywood", weight=9]; 4050 -> 1339[label="",style="solid", color="burlywood", weight=3]; 4051[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];1152 -> 4051[label="",style="solid", color="burlywood", weight=9]; 4051 -> 1340[label="",style="solid", color="burlywood", weight=3]; 1153[label="[] == yvy300",fontsize=16,color="burlywood",shape="box"];4052[label="yvy300/yvy3000 : yvy3001",fontsize=10,color="white",style="solid",shape="box"];1153 -> 4052[label="",style="solid", color="burlywood", weight=9]; 4052 -> 1341[label="",style="solid", color="burlywood", weight=3]; 4053[label="yvy300/[]",fontsize=10,color="white",style="solid",shape="box"];1153 -> 4053[label="",style="solid", color="burlywood", weight=9]; 4053 -> 1342[label="",style="solid", color="burlywood", weight=3]; 1154[label="(yvy4000,yvy4001,yvy4002) == yvy300",fontsize=16,color="burlywood",shape="box"];4054[label="yvy300/(yvy3000,yvy3001,yvy3002)",fontsize=10,color="white",style="solid",shape="box"];1154 -> 4054[label="",style="solid", color="burlywood", weight=9]; 4054 -> 1343[label="",style="solid", color="burlywood", weight=3]; 1155[label="False == yvy300",fontsize=16,color="burlywood",shape="box"];4055[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];1155 -> 4055[label="",style="solid", color="burlywood", weight=9]; 4055 -> 1344[label="",style="solid", color="burlywood", weight=3]; 4056[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];1155 -> 4056[label="",style="solid", color="burlywood", weight=9]; 4056 -> 1345[label="",style="solid", color="burlywood", weight=3]; 1156[label="True == yvy300",fontsize=16,color="burlywood",shape="box"];4057[label="yvy300/False",fontsize=10,color="white",style="solid",shape="box"];1156 -> 4057[label="",style="solid", color="burlywood", weight=9]; 4057 -> 1346[label="",style="solid", color="burlywood", weight=3]; 4058[label="yvy300/True",fontsize=10,color="white",style="solid",shape="box"];1156 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 1347[label="",style="solid", color="burlywood", weight=3]; 1157[label="(yvy4000,yvy4001) == yvy300",fontsize=16,color="burlywood",shape="box"];4059[label="yvy300/(yvy3000,yvy3001)",fontsize=10,color="white",style="solid",shape="box"];1157 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 1348[label="",style="solid", color="burlywood", weight=3]; 1158[label="primEqDouble yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4060[label="yvy400/Double yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];1158 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 1349[label="",style="solid", color="burlywood", weight=3]; 1159[label="primEqChar yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4061[label="yvy400/Char yvy4000",fontsize=10,color="white",style="solid",shape="box"];1159 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 1350[label="",style="solid", color="burlywood", weight=3]; 1160[label="Left yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4062[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];1160 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 1351[label="",style="solid", color="burlywood", weight=3]; 4063[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];1160 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 1352[label="",style="solid", color="burlywood", weight=3]; 1161[label="Right yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4064[label="yvy300/Left yvy3000",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 1353[label="",style="solid", color="burlywood", weight=3]; 4065[label="yvy300/Right yvy3000",fontsize=10,color="white",style="solid",shape="box"];1161 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 1354[label="",style="solid", color="burlywood", weight=3]; 1162[label="Nothing == yvy300",fontsize=16,color="burlywood",shape="box"];4066[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 1355[label="",style="solid", color="burlywood", weight=3]; 4067[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];1162 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 1356[label="",style="solid", color="burlywood", weight=3]; 1163[label="Just yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4068[label="yvy300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1163 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 1357[label="",style="solid", color="burlywood", weight=3]; 4069[label="yvy300/Just yvy3000",fontsize=10,color="white",style="solid",shape="box"];1163 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 1358[label="",style="solid", color="burlywood", weight=3]; 1164[label="primEqFloat yvy400 yvy300",fontsize=16,color="burlywood",shape="box"];4070[label="yvy400/Float yvy4000 yvy4001",fontsize=10,color="white",style="solid",shape="box"];1164 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 1359[label="",style="solid", color="burlywood", weight=3]; 1165[label="primEqInt yvy400 yvy300",fontsize=16,color="burlywood",shape="triangle"];4071[label="yvy400/Pos yvy4000",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4071[label="",style="solid", color="burlywood", weight=9]; 4071 -> 1360[label="",style="solid", color="burlywood", weight=3]; 4072[label="yvy400/Neg yvy4000",fontsize=10,color="white",style="solid",shape="box"];1165 -> 4072[label="",style="solid", color="burlywood", weight=9]; 4072 -> 1361[label="",style="solid", color="burlywood", weight=3]; 1166[label="LT == yvy300",fontsize=16,color="burlywood",shape="box"];4073[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4073[label="",style="solid", color="burlywood", weight=9]; 4073 -> 1362[label="",style="solid", color="burlywood", weight=3]; 4074[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4074[label="",style="solid", color="burlywood", weight=9]; 4074 -> 1363[label="",style="solid", color="burlywood", weight=3]; 4075[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];1166 -> 4075[label="",style="solid", color="burlywood", weight=9]; 4075 -> 1364[label="",style="solid", color="burlywood", weight=3]; 1167[label="EQ == yvy300",fontsize=16,color="burlywood",shape="box"];4076[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4076[label="",style="solid", color="burlywood", weight=9]; 4076 -> 1365[label="",style="solid", color="burlywood", weight=3]; 4077[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4077[label="",style="solid", color="burlywood", weight=9]; 4077 -> 1366[label="",style="solid", color="burlywood", weight=3]; 4078[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4078[label="",style="solid", color="burlywood", weight=9]; 4078 -> 1367[label="",style="solid", color="burlywood", weight=3]; 1168[label="GT == yvy300",fontsize=16,color="burlywood",shape="box"];4079[label="yvy300/LT",fontsize=10,color="white",style="solid",shape="box"];1168 -> 4079[label="",style="solid", color="burlywood", weight=9]; 4079 -> 1368[label="",style="solid", color="burlywood", weight=3]; 4080[label="yvy300/EQ",fontsize=10,color="white",style="solid",shape="box"];1168 -> 4080[label="",style="solid", color="burlywood", weight=9]; 4080 -> 1369[label="",style="solid", color="burlywood", weight=3]; 4081[label="yvy300/GT",fontsize=10,color="white",style="solid",shape="box"];1168 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 1370[label="",style="solid", color="burlywood", weight=3]; 1169[label="yvy4000 :% yvy4001 == yvy300",fontsize=16,color="burlywood",shape="box"];4082[label="yvy300/yvy3000 :% yvy3001",fontsize=10,color="white",style="solid",shape="box"];1169 -> 4082[label="",style="solid", color="burlywood", weight=9]; 4082 -> 1371[label="",style="solid", color="burlywood", weight=3]; 1170[label="() == yvy300",fontsize=16,color="burlywood",shape="box"];4083[label="yvy300/()",fontsize=10,color="white",style="solid",shape="box"];1170 -> 4083[label="",style="solid", color="burlywood", weight=9]; 4083 -> 1372[label="",style="solid", color="burlywood", weight=3]; 1171[label="Integer yvy4000 == yvy300",fontsize=16,color="burlywood",shape="box"];4084[label="yvy300/Integer yvy3000",fontsize=10,color="white",style="solid",shape="box"];1171 -> 4084[label="",style="solid", color="burlywood", weight=9]; 4084 -> 1373[label="",style="solid", color="burlywood", weight=3]; 1683[label="yvy153",fontsize=16,color="green",shape="box"];1684[label="yvy154",fontsize=16,color="green",shape="box"];1685[label="Just yvy153 <= Just yvy154",fontsize=16,color="black",shape="box"];1685 -> 1776[label="",style="solid", color="black", weight=3]; 1682[label="compare1 (Just yvy234) (Just yvy235) yvy236",fontsize=16,color="burlywood",shape="triangle"];4085[label="yvy236/False",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4085[label="",style="solid", color="burlywood", weight=9]; 4085 -> 1777[label="",style="solid", color="burlywood", weight=3]; 4086[label="yvy236/True",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4086[label="",style="solid", color="burlywood", weight=9]; 4086 -> 1778[label="",style="solid", color="burlywood", weight=3]; 1385[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1385 -> 1779[label="",style="solid", color="black", weight=3]; 1386[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1386 -> 1780[label="",style="solid", color="black", weight=3]; 1387[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1387 -> 1781[label="",style="solid", color="black", weight=3]; 1783[label="Left yvy160 <= Left yvy161",fontsize=16,color="black",shape="box"];1783 -> 1847[label="",style="solid", color="black", weight=3]; 1784[label="yvy160",fontsize=16,color="green",shape="box"];1785[label="yvy161",fontsize=16,color="green",shape="box"];1782[label="compare1 (Left yvy241) (Left yvy242) yvy243",fontsize=16,color="burlywood",shape="triangle"];4087[label="yvy243/False",fontsize=10,color="white",style="solid",shape="box"];1782 -> 4087[label="",style="solid", color="burlywood", weight=9]; 4087 -> 1848[label="",style="solid", color="burlywood", weight=3]; 4088[label="yvy243/True",fontsize=10,color="white",style="solid",shape="box"];1782 -> 4088[label="",style="solid", color="burlywood", weight=9]; 4088 -> 1849[label="",style="solid", color="burlywood", weight=3]; 1389[label="compare0 (Right yvy400) (Left yvy300) True",fontsize=16,color="black",shape="box"];1389 -> 1850[label="",style="solid", color="black", weight=3]; 1852[label="Right yvy167 <= Right yvy168",fontsize=16,color="black",shape="box"];1852 -> 1858[label="",style="solid", color="black", weight=3]; 1853[label="yvy167",fontsize=16,color="green",shape="box"];1854[label="yvy168",fontsize=16,color="green",shape="box"];1851[label="compare1 (Right yvy250) (Right yvy251) yvy252",fontsize=16,color="burlywood",shape="triangle"];4089[label="yvy252/False",fontsize=10,color="white",style="solid",shape="box"];1851 -> 4089[label="",style="solid", color="burlywood", weight=9]; 4089 -> 1859[label="",style="solid", color="burlywood", weight=3]; 4090[label="yvy252/True",fontsize=10,color="white",style="solid",shape="box"];1851 -> 4090[label="",style="solid", color="burlywood", weight=9]; 4090 -> 1860[label="",style="solid", color="burlywood", weight=3]; 1720[label="yvy401",fontsize=16,color="green",shape="box"];1721[label="yvy301",fontsize=16,color="green",shape="box"];1722[label="yvy401",fontsize=16,color="green",shape="box"];1723[label="yvy301",fontsize=16,color="green",shape="box"];1724[label="yvy401",fontsize=16,color="green",shape="box"];1725[label="yvy301",fontsize=16,color="green",shape="box"];1726[label="yvy401",fontsize=16,color="green",shape="box"];1727[label="yvy301",fontsize=16,color="green",shape="box"];1728[label="yvy401",fontsize=16,color="green",shape="box"];1729[label="yvy301",fontsize=16,color="green",shape="box"];1730[label="yvy401",fontsize=16,color="green",shape="box"];1731[label="yvy301",fontsize=16,color="green",shape="box"];1732[label="yvy401",fontsize=16,color="green",shape="box"];1733[label="yvy301",fontsize=16,color="green",shape="box"];1734[label="yvy401",fontsize=16,color="green",shape="box"];1735[label="yvy301",fontsize=16,color="green",shape="box"];1736[label="yvy401",fontsize=16,color="green",shape="box"];1737[label="yvy301",fontsize=16,color="green",shape="box"];1738[label="yvy401",fontsize=16,color="green",shape="box"];1739[label="yvy301",fontsize=16,color="green",shape="box"];1740[label="yvy401",fontsize=16,color="green",shape="box"];1741[label="yvy301",fontsize=16,color="green",shape="box"];1742[label="yvy401",fontsize=16,color="green",shape="box"];1743[label="yvy301",fontsize=16,color="green",shape="box"];1744[label="yvy401",fontsize=16,color="green",shape="box"];1745[label="yvy301",fontsize=16,color="green",shape="box"];1746[label="yvy401",fontsize=16,color="green",shape="box"];1747[label="yvy301",fontsize=16,color="green",shape="box"];1748[label="yvy400",fontsize=16,color="green",shape="box"];1749[label="yvy300",fontsize=16,color="green",shape="box"];1750[label="yvy400",fontsize=16,color="green",shape="box"];1751[label="yvy300",fontsize=16,color="green",shape="box"];1752[label="yvy400",fontsize=16,color="green",shape="box"];1753[label="yvy300",fontsize=16,color="green",shape="box"];1754[label="yvy400",fontsize=16,color="green",shape="box"];1755[label="yvy300",fontsize=16,color="green",shape="box"];1756[label="yvy400",fontsize=16,color="green",shape="box"];1757[label="yvy300",fontsize=16,color="green",shape="box"];1758[label="yvy400",fontsize=16,color="green",shape="box"];1759[label="yvy300",fontsize=16,color="green",shape="box"];1760[label="yvy400",fontsize=16,color="green",shape="box"];1761[label="yvy300",fontsize=16,color="green",shape="box"];1762[label="yvy400",fontsize=16,color="green",shape="box"];1763[label="yvy300",fontsize=16,color="green",shape="box"];1764[label="yvy400",fontsize=16,color="green",shape="box"];1765[label="yvy300",fontsize=16,color="green",shape="box"];1766[label="yvy400",fontsize=16,color="green",shape="box"];1767[label="yvy300",fontsize=16,color="green",shape="box"];1768[label="yvy400",fontsize=16,color="green",shape="box"];1769[label="yvy300",fontsize=16,color="green",shape="box"];1770[label="yvy400",fontsize=16,color="green",shape="box"];1771[label="yvy300",fontsize=16,color="green",shape="box"];1772[label="yvy400",fontsize=16,color="green",shape="box"];1773[label="yvy300",fontsize=16,color="green",shape="box"];1774[label="yvy400",fontsize=16,color="green",shape="box"];1775[label="yvy300",fontsize=16,color="green",shape="box"];1485 -> 1973[label="",style="dashed", color="red", weight=0]; 1485[label="compare1 (yvy204,yvy205) (yvy206,yvy207) (yvy204 < yvy206 || yvy204 == yvy206 && yvy205 <= yvy207)",fontsize=16,color="magenta"];1485 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1435[label="yvy111",fontsize=16,color="green",shape="box"];1436[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat (Succ Zero) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="black",shape="box"];1436 -> 1863[label="",style="solid", color="black", weight=3]; 1437[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128) + FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="black",shape="box"];1437 -> 1864[label="",style="solid", color="black", weight=3]; 1486[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1486 -> 1865[label="",style="solid", color="black", weight=3]; 1487[label="FiniteMap.sizeFM (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];1487 -> 1866[label="",style="solid", color="black", weight=3]; 1677[label="Pos (primPlusNat yvy9020 yvy2170)",fontsize=16,color="green",shape="box"];1677 -> 1867[label="",style="dashed", color="green", weight=3]; 1678[label="primMinusNat yvy9020 yvy2170",fontsize=16,color="burlywood",shape="triangle"];4091[label="yvy9020/Succ yvy90200",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4091[label="",style="solid", color="burlywood", weight=9]; 4091 -> 1868[label="",style="solid", color="burlywood", weight=3]; 4092[label="yvy9020/Zero",fontsize=10,color="white",style="solid",shape="box"];1678 -> 4092[label="",style="solid", color="burlywood", weight=9]; 4092 -> 1869[label="",style="solid", color="burlywood", weight=3]; 1679 -> 1678[label="",style="dashed", color="red", weight=0]; 1679[label="primMinusNat yvy2170 yvy9020",fontsize=16,color="magenta"];1679 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1680[label="Neg (primPlusNat yvy9020 yvy2170)",fontsize=16,color="green",shape="box"];1680 -> 1872[label="",style="dashed", color="green", weight=3]; 1488[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1490 -> 58[label="",style="dashed", color="red", weight=0]; 1490[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1490 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1489[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 yvy218",fontsize=16,color="burlywood",shape="triangle"];4093[label="yvy218/False",fontsize=10,color="white",style="solid",shape="box"];1489 -> 4093[label="",style="solid", color="burlywood", weight=9]; 4093 -> 1875[label="",style="solid", color="burlywood", weight=3]; 4094[label="yvy218/True",fontsize=10,color="white",style="solid",shape="box"];1489 -> 4094[label="",style="solid", color="burlywood", weight=9]; 4094 -> 1876[label="",style="solid", color="burlywood", weight=3]; 1496[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 FiniteMap.EmptyFM yvy90 yvy90 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1496 -> 1877[label="",style="solid", color="black", weight=3]; 1497[label="FiniteMap.mkBalBranch6MkBalBranch0 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];1497 -> 1878[label="",style="solid", color="black", weight=3]; 1498[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54 + FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];1498 -> 1879[label="",style="solid", color="black", weight=3]; 1499[label="GT",fontsize=16,color="green",shape="box"];1500[label="primMulNat yvy4000 yvy3010",fontsize=16,color="burlywood",shape="triangle"];4095[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];1500 -> 4095[label="",style="solid", color="burlywood", weight=9]; 4095 -> 1880[label="",style="solid", color="burlywood", weight=3]; 4096[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1500 -> 4096[label="",style="solid", color="burlywood", weight=9]; 4096 -> 1881[label="",style="solid", color="burlywood", weight=3]; 1501 -> 1500[label="",style="dashed", color="red", weight=0]; 1501[label="primMulNat yvy4000 yvy3010",fontsize=16,color="magenta"];1501 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1500[label="",style="dashed", color="red", weight=0]; 1502[label="primMulNat yvy4000 yvy3010",fontsize=16,color="magenta"];1502 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1500[label="",style="dashed", color="red", weight=0]; 1503[label="primMulNat yvy4000 yvy3010",fontsize=16,color="magenta"];1503 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1504[label="yvy3010",fontsize=16,color="green",shape="box"];1505[label="yvy4000",fontsize=16,color="green",shape="box"];1789[label="yvy402",fontsize=16,color="green",shape="box"];1790[label="yvy302",fontsize=16,color="green",shape="box"];1791[label="yvy402",fontsize=16,color="green",shape="box"];1792[label="yvy302",fontsize=16,color="green",shape="box"];1793[label="yvy402",fontsize=16,color="green",shape="box"];1794[label="yvy302",fontsize=16,color="green",shape="box"];1795[label="yvy402",fontsize=16,color="green",shape="box"];1796[label="yvy302",fontsize=16,color="green",shape="box"];1797[label="yvy402",fontsize=16,color="green",shape="box"];1798[label="yvy302",fontsize=16,color="green",shape="box"];1799[label="yvy402",fontsize=16,color="green",shape="box"];1800[label="yvy302",fontsize=16,color="green",shape="box"];1801[label="yvy402",fontsize=16,color="green",shape="box"];1802[label="yvy302",fontsize=16,color="green",shape="box"];1803[label="yvy402",fontsize=16,color="green",shape="box"];1804[label="yvy302",fontsize=16,color="green",shape="box"];1805[label="yvy402",fontsize=16,color="green",shape="box"];1806[label="yvy302",fontsize=16,color="green",shape="box"];1807[label="yvy402",fontsize=16,color="green",shape="box"];1808[label="yvy302",fontsize=16,color="green",shape="box"];1809[label="yvy402",fontsize=16,color="green",shape="box"];1810[label="yvy302",fontsize=16,color="green",shape="box"];1811[label="yvy402",fontsize=16,color="green",shape="box"];1812[label="yvy302",fontsize=16,color="green",shape="box"];1813[label="yvy402",fontsize=16,color="green",shape="box"];1814[label="yvy302",fontsize=16,color="green",shape="box"];1815[label="yvy402",fontsize=16,color="green",shape="box"];1816[label="yvy302",fontsize=16,color="green",shape="box"];1817[label="yvy401",fontsize=16,color="green",shape="box"];1818[label="yvy301",fontsize=16,color="green",shape="box"];1819[label="yvy401",fontsize=16,color="green",shape="box"];1820[label="yvy301",fontsize=16,color="green",shape="box"];1821[label="yvy401",fontsize=16,color="green",shape="box"];1822[label="yvy301",fontsize=16,color="green",shape="box"];1823[label="yvy401",fontsize=16,color="green",shape="box"];1824[label="yvy301",fontsize=16,color="green",shape="box"];1825[label="yvy401",fontsize=16,color="green",shape="box"];1826[label="yvy301",fontsize=16,color="green",shape="box"];1827[label="yvy401",fontsize=16,color="green",shape="box"];1828[label="yvy301",fontsize=16,color="green",shape="box"];1829[label="yvy401",fontsize=16,color="green",shape="box"];1830[label="yvy301",fontsize=16,color="green",shape="box"];1831[label="yvy401",fontsize=16,color="green",shape="box"];1832[label="yvy301",fontsize=16,color="green",shape="box"];1833[label="yvy401",fontsize=16,color="green",shape="box"];1834[label="yvy301",fontsize=16,color="green",shape="box"];1835[label="yvy401",fontsize=16,color="green",shape="box"];1836[label="yvy301",fontsize=16,color="green",shape="box"];1837[label="yvy401",fontsize=16,color="green",shape="box"];1838[label="yvy301",fontsize=16,color="green",shape="box"];1839[label="yvy401",fontsize=16,color="green",shape="box"];1840[label="yvy301",fontsize=16,color="green",shape="box"];1841[label="yvy401",fontsize=16,color="green",shape="box"];1842[label="yvy301",fontsize=16,color="green",shape="box"];1843[label="yvy401",fontsize=16,color="green",shape="box"];1844[label="yvy301",fontsize=16,color="green",shape="box"];1889[label="yvy191 < yvy194",fontsize=16,color="blue",shape="box"];4097[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 1905[label="",style="solid", color="blue", weight=3]; 4098[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 1906[label="",style="solid", color="blue", weight=3]; 4099[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 1907[label="",style="solid", color="blue", weight=3]; 4100[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 1908[label="",style="solid", color="blue", weight=3]; 4101[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 1909[label="",style="solid", color="blue", weight=3]; 4102[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 1910[label="",style="solid", color="blue", weight=3]; 4103[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 1911[label="",style="solid", color="blue", weight=3]; 4104[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 1912[label="",style="solid", color="blue", weight=3]; 4105[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4105[label="",style="solid", color="blue", weight=9]; 4105 -> 1913[label="",style="solid", color="blue", weight=3]; 4106[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 1914[label="",style="solid", color="blue", weight=3]; 4107[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 1915[label="",style="solid", color="blue", weight=3]; 4108[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 1916[label="",style="solid", color="blue", weight=3]; 4109[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 1917[label="",style="solid", color="blue", weight=3]; 4110[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1889 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 1918[label="",style="solid", color="blue", weight=3]; 1890[label="yvy195",fontsize=16,color="green",shape="box"];1891[label="yvy191",fontsize=16,color="green",shape="box"];1892 -> 1610[label="",style="dashed", color="red", weight=0]; 1892[label="yvy191 == yvy194 && (yvy192 < yvy195 || yvy192 == yvy195 && yvy193 <= yvy196)",fontsize=16,color="magenta"];1892 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1892 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1893[label="yvy196",fontsize=16,color="green",shape="box"];1894[label="yvy194",fontsize=16,color="green",shape="box"];1895[label="yvy192",fontsize=16,color="green",shape="box"];1896[label="yvy193",fontsize=16,color="green",shape="box"];1888[label="compare1 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) (yvy269 || yvy270)",fontsize=16,color="burlywood",shape="triangle"];4111[label="yvy269/False",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 1921[label="",style="solid", color="burlywood", weight=3]; 4112[label="yvy269/True",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 1922[label="",style="solid", color="burlywood", weight=3]; 1681[label="GT",fontsize=16,color="green",shape="box"];1339[label="yvy4000 : yvy4001 == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];1339 -> 1506[label="",style="solid", color="black", weight=3]; 1340[label="yvy4000 : yvy4001 == []",fontsize=16,color="black",shape="box"];1340 -> 1507[label="",style="solid", color="black", weight=3]; 1341[label="[] == yvy3000 : yvy3001",fontsize=16,color="black",shape="box"];1341 -> 1508[label="",style="solid", color="black", weight=3]; 1342[label="[] == []",fontsize=16,color="black",shape="box"];1342 -> 1509[label="",style="solid", color="black", weight=3]; 1343[label="(yvy4000,yvy4001,yvy4002) == (yvy3000,yvy3001,yvy3002)",fontsize=16,color="black",shape="box"];1343 -> 1510[label="",style="solid", color="black", weight=3]; 1344[label="False == False",fontsize=16,color="black",shape="box"];1344 -> 1511[label="",style="solid", color="black", weight=3]; 1345[label="False == True",fontsize=16,color="black",shape="box"];1345 -> 1512[label="",style="solid", color="black", weight=3]; 1346[label="True == False",fontsize=16,color="black",shape="box"];1346 -> 1513[label="",style="solid", color="black", weight=3]; 1347[label="True == True",fontsize=16,color="black",shape="box"];1347 -> 1514[label="",style="solid", color="black", weight=3]; 1348[label="(yvy4000,yvy4001) == (yvy3000,yvy3001)",fontsize=16,color="black",shape="box"];1348 -> 1515[label="",style="solid", color="black", weight=3]; 1349[label="primEqDouble (Double yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4113[label="yvy300/Double yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];1349 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 1516[label="",style="solid", color="burlywood", weight=3]; 1350[label="primEqChar (Char yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4114[label="yvy300/Char yvy3000",fontsize=10,color="white",style="solid",shape="box"];1350 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 1517[label="",style="solid", color="burlywood", weight=3]; 1351[label="Left yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];1351 -> 1518[label="",style="solid", color="black", weight=3]; 1352[label="Left yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];1352 -> 1519[label="",style="solid", color="black", weight=3]; 1353[label="Right yvy4000 == Left yvy3000",fontsize=16,color="black",shape="box"];1353 -> 1520[label="",style="solid", color="black", weight=3]; 1354[label="Right yvy4000 == Right yvy3000",fontsize=16,color="black",shape="box"];1354 -> 1521[label="",style="solid", color="black", weight=3]; 1355[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1355 -> 1522[label="",style="solid", color="black", weight=3]; 1356[label="Nothing == Just yvy3000",fontsize=16,color="black",shape="box"];1356 -> 1523[label="",style="solid", color="black", weight=3]; 1357[label="Just yvy4000 == Nothing",fontsize=16,color="black",shape="box"];1357 -> 1524[label="",style="solid", color="black", weight=3]; 1358[label="Just yvy4000 == Just yvy3000",fontsize=16,color="black",shape="box"];1358 -> 1525[label="",style="solid", color="black", weight=3]; 1359[label="primEqFloat (Float yvy4000 yvy4001) yvy300",fontsize=16,color="burlywood",shape="box"];4115[label="yvy300/Float yvy3000 yvy3001",fontsize=10,color="white",style="solid",shape="box"];1359 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 1526[label="",style="solid", color="burlywood", weight=3]; 1360[label="primEqInt (Pos yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4116[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];1360 -> 4116[label="",style="solid", color="burlywood", weight=9]; 4116 -> 1527[label="",style="solid", color="burlywood", weight=3]; 4117[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1360 -> 4117[label="",style="solid", color="burlywood", weight=9]; 4117 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1361[label="primEqInt (Neg yvy4000) yvy300",fontsize=16,color="burlywood",shape="box"];4118[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];1361 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 1529[label="",style="solid", color="burlywood", weight=3]; 4119[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1361 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 1530[label="",style="solid", color="burlywood", weight=3]; 1362[label="LT == LT",fontsize=16,color="black",shape="box"];1362 -> 1531[label="",style="solid", color="black", weight=3]; 1363[label="LT == EQ",fontsize=16,color="black",shape="box"];1363 -> 1532[label="",style="solid", color="black", weight=3]; 1364[label="LT == GT",fontsize=16,color="black",shape="box"];1364 -> 1533[label="",style="solid", color="black", weight=3]; 1365[label="EQ == LT",fontsize=16,color="black",shape="box"];1365 -> 1534[label="",style="solid", color="black", weight=3]; 1366[label="EQ == EQ",fontsize=16,color="black",shape="box"];1366 -> 1535[label="",style="solid", color="black", weight=3]; 1367[label="EQ == GT",fontsize=16,color="black",shape="box"];1367 -> 1536[label="",style="solid", color="black", weight=3]; 1368[label="GT == LT",fontsize=16,color="black",shape="box"];1368 -> 1537[label="",style="solid", color="black", weight=3]; 1369[label="GT == EQ",fontsize=16,color="black",shape="box"];1369 -> 1538[label="",style="solid", color="black", weight=3]; 1370[label="GT == GT",fontsize=16,color="black",shape="box"];1370 -> 1539[label="",style="solid", color="black", weight=3]; 1371[label="yvy4000 :% yvy4001 == yvy3000 :% yvy3001",fontsize=16,color="black",shape="box"];1371 -> 1540[label="",style="solid", color="black", weight=3]; 1372[label="() == ()",fontsize=16,color="black",shape="box"];1372 -> 1541[label="",style="solid", color="black", weight=3]; 1373[label="Integer yvy4000 == Integer yvy3000",fontsize=16,color="black",shape="box"];1373 -> 1542[label="",style="solid", color="black", weight=3]; 1776[label="yvy153 <= yvy154",fontsize=16,color="blue",shape="box"];4120[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4120[label="",style="solid", color="blue", weight=9]; 4120 -> 1923[label="",style="solid", color="blue", weight=3]; 4121[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4121[label="",style="solid", color="blue", weight=9]; 4121 -> 1924[label="",style="solid", color="blue", weight=3]; 4122[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 1925[label="",style="solid", color="blue", weight=3]; 4123[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 1926[label="",style="solid", color="blue", weight=3]; 4124[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 1927[label="",style="solid", color="blue", weight=3]; 4125[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 1928[label="",style="solid", color="blue", weight=3]; 4126[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 1929[label="",style="solid", color="blue", weight=3]; 4127[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 1930[label="",style="solid", color="blue", weight=3]; 4128[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 1931[label="",style="solid", color="blue", weight=3]; 4129[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 1932[label="",style="solid", color="blue", weight=3]; 4130[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 1933[label="",style="solid", color="blue", weight=3]; 4131[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 1934[label="",style="solid", color="blue", weight=3]; 4132[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 1935[label="",style="solid", color="blue", weight=3]; 4133[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 1936[label="",style="solid", color="blue", weight=3]; 1777[label="compare1 (Just yvy234) (Just yvy235) False",fontsize=16,color="black",shape="box"];1777 -> 1937[label="",style="solid", color="black", weight=3]; 1778[label="compare1 (Just yvy234) (Just yvy235) True",fontsize=16,color="black",shape="box"];1778 -> 1938[label="",style="solid", color="black", weight=3]; 1779[label="GT",fontsize=16,color="green",shape="box"];1780[label="GT",fontsize=16,color="green",shape="box"];1781[label="GT",fontsize=16,color="green",shape="box"];1847[label="yvy160 <= yvy161",fontsize=16,color="blue",shape="box"];4134[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 1939[label="",style="solid", color="blue", weight=3]; 4135[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 1940[label="",style="solid", color="blue", weight=3]; 4136[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4136[label="",style="solid", color="blue", weight=9]; 4136 -> 1941[label="",style="solid", color="blue", weight=3]; 4137[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4137[label="",style="solid", color="blue", weight=9]; 4137 -> 1942[label="",style="solid", color="blue", weight=3]; 4138[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 1943[label="",style="solid", color="blue", weight=3]; 4139[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 1944[label="",style="solid", color="blue", weight=3]; 4140[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 1945[label="",style="solid", color="blue", weight=3]; 4141[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 1946[label="",style="solid", color="blue", weight=3]; 4142[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 1947[label="",style="solid", color="blue", weight=3]; 4143[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 1948[label="",style="solid", color="blue", weight=3]; 4144[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 1949[label="",style="solid", color="blue", weight=3]; 4145[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 1950[label="",style="solid", color="blue", weight=3]; 4146[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 1951[label="",style="solid", color="blue", weight=3]; 4147[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1847 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 1952[label="",style="solid", color="blue", weight=3]; 1848[label="compare1 (Left yvy241) (Left yvy242) False",fontsize=16,color="black",shape="box"];1848 -> 1953[label="",style="solid", color="black", weight=3]; 1849[label="compare1 (Left yvy241) (Left yvy242) True",fontsize=16,color="black",shape="box"];1849 -> 1954[label="",style="solid", color="black", weight=3]; 1850[label="GT",fontsize=16,color="green",shape="box"];1858[label="yvy167 <= yvy168",fontsize=16,color="blue",shape="box"];4148[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 1955[label="",style="solid", color="blue", weight=3]; 4149[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 1956[label="",style="solid", color="blue", weight=3]; 4150[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 1957[label="",style="solid", color="blue", weight=3]; 4151[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4151[label="",style="solid", color="blue", weight=9]; 4151 -> 1958[label="",style="solid", color="blue", weight=3]; 4152[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4152[label="",style="solid", color="blue", weight=9]; 4152 -> 1959[label="",style="solid", color="blue", weight=3]; 4153[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 1960[label="",style="solid", color="blue", weight=3]; 4154[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 1961[label="",style="solid", color="blue", weight=3]; 4155[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 1962[label="",style="solid", color="blue", weight=3]; 4156[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 1963[label="",style="solid", color="blue", weight=3]; 4157[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 1964[label="",style="solid", color="blue", weight=3]; 4158[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 1965[label="",style="solid", color="blue", weight=3]; 4159[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 1966[label="",style="solid", color="blue", weight=3]; 4160[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 1967[label="",style="solid", color="blue", weight=3]; 4161[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1858 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 1968[label="",style="solid", color="blue", weight=3]; 1859[label="compare1 (Right yvy250) (Right yvy251) False",fontsize=16,color="black",shape="box"];1859 -> 1969[label="",style="solid", color="black", weight=3]; 1860[label="compare1 (Right yvy250) (Right yvy251) True",fontsize=16,color="black",shape="box"];1860 -> 1970[label="",style="solid", color="black", weight=3]; 1974[label="yvy206",fontsize=16,color="green",shape="box"];1975 -> 1610[label="",style="dashed", color="red", weight=0]; 1975[label="yvy204 == yvy206 && yvy205 <= yvy207",fontsize=16,color="magenta"];1975 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1976[label="yvy204 < yvy206",fontsize=16,color="blue",shape="box"];4162[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 1988[label="",style="solid", color="blue", weight=3]; 4163[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 1989[label="",style="solid", color="blue", weight=3]; 4164[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 1990[label="",style="solid", color="blue", weight=3]; 4165[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 1991[label="",style="solid", color="blue", weight=3]; 4166[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 1992[label="",style="solid", color="blue", weight=3]; 4167[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 1993[label="",style="solid", color="blue", weight=3]; 4168[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 1994[label="",style="solid", color="blue", weight=3]; 4169[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 1995[label="",style="solid", color="blue", weight=3]; 4170[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 1996[label="",style="solid", color="blue", weight=3]; 4171[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 1997[label="",style="solid", color="blue", weight=3]; 4172[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 1998[label="",style="solid", color="blue", weight=3]; 4173[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 1999[label="",style="solid", color="blue", weight=3]; 4174[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 2000[label="",style="solid", color="blue", weight=3]; 4175[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 2001[label="",style="solid", color="blue", weight=3]; 1977[label="yvy207",fontsize=16,color="green",shape="box"];1978[label="yvy205",fontsize=16,color="green",shape="box"];1979[label="yvy204",fontsize=16,color="green",shape="box"];1973[label="compare1 (yvy278,yvy279) (yvy280,yvy281) (yvy282 || yvy283)",fontsize=16,color="burlywood",shape="triangle"];4176[label="yvy282/False",fontsize=10,color="white",style="solid",shape="box"];1973 -> 4176[label="",style="solid", color="burlywood", weight=9]; 4176 -> 2002[label="",style="solid", color="burlywood", weight=3]; 4177[label="yvy282/True",fontsize=10,color="white",style="solid",shape="box"];1973 -> 4177[label="",style="solid", color="burlywood", weight=9]; 4177 -> 2003[label="",style="solid", color="burlywood", weight=3]; 1863 -> 2004[label="",style="dashed", color="red", weight=0]; 1863[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat (primMulNat Zero (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="magenta"];1863 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1864 -> 1472[label="",style="dashed", color="red", weight=0]; 1864[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)) (FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128))",fontsize=16,color="magenta"];1864 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1864 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1865[label="Pos Zero",fontsize=16,color="green",shape="box"];1866[label="yvy542",fontsize=16,color="green",shape="box"];1867[label="primPlusNat yvy9020 yvy2170",fontsize=16,color="burlywood",shape="triangle"];4178[label="yvy9020/Succ yvy90200",fontsize=10,color="white",style="solid",shape="box"];1867 -> 4178[label="",style="solid", color="burlywood", weight=9]; 4178 -> 2008[label="",style="solid", color="burlywood", weight=3]; 4179[label="yvy9020/Zero",fontsize=10,color="white",style="solid",shape="box"];1867 -> 4179[label="",style="solid", color="burlywood", weight=9]; 4179 -> 2009[label="",style="solid", color="burlywood", weight=3]; 1868[label="primMinusNat (Succ yvy90200) yvy2170",fontsize=16,color="burlywood",shape="box"];4180[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];1868 -> 4180[label="",style="solid", color="burlywood", weight=9]; 4180 -> 2010[label="",style="solid", color="burlywood", weight=3]; 4181[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];1868 -> 4181[label="",style="solid", color="burlywood", weight=9]; 4181 -> 2011[label="",style="solid", color="burlywood", weight=3]; 1869[label="primMinusNat Zero yvy2170",fontsize=16,color="burlywood",shape="box"];4182[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];1869 -> 4182[label="",style="solid", color="burlywood", weight=9]; 4182 -> 2012[label="",style="solid", color="burlywood", weight=3]; 4183[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];1869 -> 4183[label="",style="solid", color="burlywood", weight=9]; 4183 -> 2013[label="",style="solid", color="burlywood", weight=3]; 1870[label="yvy9020",fontsize=16,color="green",shape="box"];1871[label="yvy2170",fontsize=16,color="green",shape="box"];1872 -> 1867[label="",style="dashed", color="red", weight=0]; 1872[label="primPlusNat yvy9020 yvy2170",fontsize=16,color="magenta"];1872 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1872 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1873 -> 1474[label="",style="dashed", color="red", weight=0]; 1873[label="FiniteMap.mkBalBranch6Size_l yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1874 -> 772[label="",style="dashed", color="red", weight=0]; 1874[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];1874 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1874 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1875[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 False",fontsize=16,color="black",shape="box"];1875 -> 2018[label="",style="solid", color="black", weight=3]; 1876[label="FiniteMap.mkBalBranch6MkBalBranch3 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];1876 -> 2019[label="",style="solid", color="black", weight=3]; 1877[label="error []",fontsize=16,color="red",shape="box"];1878[label="FiniteMap.mkBalBranch6MkBalBranch02 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];1878 -> 2020[label="",style="solid", color="black", weight=3]; 1879 -> 1472[label="",style="dashed", color="red", weight=0]; 1879[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54) (FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54)",fontsize=16,color="magenta"];1879 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1880[label="primMulNat (Succ yvy40000) yvy3010",fontsize=16,color="burlywood",shape="box"];4184[label="yvy3010/Succ yvy30100",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4184[label="",style="solid", color="burlywood", weight=9]; 4184 -> 2023[label="",style="solid", color="burlywood", weight=3]; 4185[label="yvy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4185[label="",style="solid", color="burlywood", weight=9]; 4185 -> 2024[label="",style="solid", color="burlywood", weight=3]; 1881[label="primMulNat Zero yvy3010",fontsize=16,color="burlywood",shape="box"];4186[label="yvy3010/Succ yvy30100",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4186[label="",style="solid", color="burlywood", weight=9]; 4186 -> 2025[label="",style="solid", color="burlywood", weight=3]; 4187[label="yvy3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4187[label="",style="solid", color="burlywood", weight=9]; 4187 -> 2026[label="",style="solid", color="burlywood", weight=3]; 1882[label="yvy3010",fontsize=16,color="green",shape="box"];1883[label="yvy4000",fontsize=16,color="green",shape="box"];1884[label="yvy4000",fontsize=16,color="green",shape="box"];1885[label="yvy3010",fontsize=16,color="green",shape="box"];1905 -> 72[label="",style="dashed", color="red", weight=0]; 1905[label="yvy191 < yvy194",fontsize=16,color="magenta"];1905 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1906 -> 73[label="",style="dashed", color="red", weight=0]; 1906[label="yvy191 < yvy194",fontsize=16,color="magenta"];1906 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1907 -> 74[label="",style="dashed", color="red", weight=0]; 1907[label="yvy191 < yvy194",fontsize=16,color="magenta"];1907 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1908 -> 75[label="",style="dashed", color="red", weight=0]; 1908[label="yvy191 < yvy194",fontsize=16,color="magenta"];1908 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1909 -> 76[label="",style="dashed", color="red", weight=0]; 1909[label="yvy191 < yvy194",fontsize=16,color="magenta"];1909 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1910 -> 77[label="",style="dashed", color="red", weight=0]; 1910[label="yvy191 < yvy194",fontsize=16,color="magenta"];1910 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1911 -> 78[label="",style="dashed", color="red", weight=0]; 1911[label="yvy191 < yvy194",fontsize=16,color="magenta"];1911 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1912 -> 79[label="",style="dashed", color="red", weight=0]; 1912[label="yvy191 < yvy194",fontsize=16,color="magenta"];1912 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1913 -> 80[label="",style="dashed", color="red", weight=0]; 1913[label="yvy191 < yvy194",fontsize=16,color="magenta"];1913 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1914 -> 81[label="",style="dashed", color="red", weight=0]; 1914[label="yvy191 < yvy194",fontsize=16,color="magenta"];1914 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1915 -> 82[label="",style="dashed", color="red", weight=0]; 1915[label="yvy191 < yvy194",fontsize=16,color="magenta"];1915 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1916 -> 83[label="",style="dashed", color="red", weight=0]; 1916[label="yvy191 < yvy194",fontsize=16,color="magenta"];1916 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1917 -> 84[label="",style="dashed", color="red", weight=0]; 1917[label="yvy191 < yvy194",fontsize=16,color="magenta"];1917 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1918 -> 85[label="",style="dashed", color="red", weight=0]; 1918[label="yvy191 < yvy194",fontsize=16,color="magenta"];1918 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2291[label="",style="dashed", color="red", weight=0]; 1919[label="yvy192 < yvy195 || yvy192 == yvy195 && yvy193 <= yvy196",fontsize=16,color="magenta"];1919 -> 2292[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2293[label="",style="dashed", color="magenta", weight=3]; 1920[label="yvy191 == yvy194",fontsize=16,color="blue",shape="box"];4188[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 2057[label="",style="solid", color="blue", weight=3]; 4189[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 2058[label="",style="solid", color="blue", weight=3]; 4190[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 2059[label="",style="solid", color="blue", weight=3]; 4191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 2060[label="",style="solid", color="blue", weight=3]; 4192[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 2061[label="",style="solid", color="blue", weight=3]; 4193[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 2062[label="",style="solid", color="blue", weight=3]; 4194[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 2063[label="",style="solid", color="blue", weight=3]; 4195[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 2064[label="",style="solid", color="blue", weight=3]; 4196[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 2065[label="",style="solid", color="blue", weight=3]; 4197[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 2066[label="",style="solid", color="blue", weight=3]; 4198[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 2067[label="",style="solid", color="blue", weight=3]; 4199[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 2068[label="",style="solid", color="blue", weight=3]; 4200[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 2069[label="",style="solid", color="blue", weight=3]; 4201[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1920 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 2070[label="",style="solid", color="blue", weight=3]; 1921[label="compare1 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) (False || yvy270)",fontsize=16,color="black",shape="box"];1921 -> 2071[label="",style="solid", color="black", weight=3]; 1922[label="compare1 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) (True || yvy270)",fontsize=16,color="black",shape="box"];1922 -> 2072[label="",style="solid", color="black", weight=3]; 1506 -> 1610[label="",style="dashed", color="red", weight=0]; 1506[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1506 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1507[label="False",fontsize=16,color="green",shape="box"];1508[label="False",fontsize=16,color="green",shape="box"];1509[label="True",fontsize=16,color="green",shape="box"];1510 -> 1610[label="",style="dashed", color="red", weight=0]; 1510[label="yvy4000 == yvy3000 && yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];1510 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1511[label="True",fontsize=16,color="green",shape="box"];1512[label="False",fontsize=16,color="green",shape="box"];1513[label="False",fontsize=16,color="green",shape="box"];1514[label="True",fontsize=16,color="green",shape="box"];1515 -> 1610[label="",style="dashed", color="red", weight=0]; 1515[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1515 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1516[label="primEqDouble (Double yvy4000 yvy4001) (Double yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];1516 -> 2073[label="",style="solid", color="black", weight=3]; 1517[label="primEqChar (Char yvy4000) (Char yvy3000)",fontsize=16,color="black",shape="box"];1517 -> 2074[label="",style="solid", color="black", weight=3]; 1518[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4202[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 2075[label="",style="solid", color="blue", weight=3]; 4203[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 2076[label="",style="solid", color="blue", weight=3]; 4204[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 2077[label="",style="solid", color="blue", weight=3]; 4205[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 2078[label="",style="solid", color="blue", weight=3]; 4206[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4206[label="",style="solid", color="blue", weight=9]; 4206 -> 2079[label="",style="solid", color="blue", weight=3]; 4207[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4207[label="",style="solid", color="blue", weight=9]; 4207 -> 2080[label="",style="solid", color="blue", weight=3]; 4208[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 2081[label="",style="solid", color="blue", weight=3]; 4209[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 2082[label="",style="solid", color="blue", weight=3]; 4210[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 2083[label="",style="solid", color="blue", weight=3]; 4211[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 2084[label="",style="solid", color="blue", weight=3]; 4212[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4212[label="",style="solid", color="blue", weight=9]; 4212 -> 2085[label="",style="solid", color="blue", weight=3]; 4213[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4213[label="",style="solid", color="blue", weight=9]; 4213 -> 2086[label="",style="solid", color="blue", weight=3]; 4214[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 2087[label="",style="solid", color="blue", weight=3]; 4215[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1518 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 2088[label="",style="solid", color="blue", weight=3]; 1519[label="False",fontsize=16,color="green",shape="box"];1520[label="False",fontsize=16,color="green",shape="box"];1521[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4216[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 2089[label="",style="solid", color="blue", weight=3]; 4217[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 2090[label="",style="solid", color="blue", weight=3]; 4218[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 2091[label="",style="solid", color="blue", weight=3]; 4219[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 2092[label="",style="solid", color="blue", weight=3]; 4220[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 2093[label="",style="solid", color="blue", weight=3]; 4221[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 2094[label="",style="solid", color="blue", weight=3]; 4222[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 2095[label="",style="solid", color="blue", weight=3]; 4223[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 2096[label="",style="solid", color="blue", weight=3]; 4224[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 2097[label="",style="solid", color="blue", weight=3]; 4225[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 2098[label="",style="solid", color="blue", weight=3]; 4226[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 2099[label="",style="solid", color="blue", weight=3]; 4227[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 2100[label="",style="solid", color="blue", weight=3]; 4228[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 2101[label="",style="solid", color="blue", weight=3]; 4229[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 2102[label="",style="solid", color="blue", weight=3]; 1522[label="True",fontsize=16,color="green",shape="box"];1523[label="False",fontsize=16,color="green",shape="box"];1524[label="False",fontsize=16,color="green",shape="box"];1525[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4230[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 2103[label="",style="solid", color="blue", weight=3]; 4231[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 2104[label="",style="solid", color="blue", weight=3]; 4232[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 2105[label="",style="solid", color="blue", weight=3]; 4233[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 2106[label="",style="solid", color="blue", weight=3]; 4234[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 2107[label="",style="solid", color="blue", weight=3]; 4235[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 2108[label="",style="solid", color="blue", weight=3]; 4236[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 2109[label="",style="solid", color="blue", weight=3]; 4237[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 2110[label="",style="solid", color="blue", weight=3]; 4238[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 2111[label="",style="solid", color="blue", weight=3]; 4239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 2112[label="",style="solid", color="blue", weight=3]; 4240[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 2113[label="",style="solid", color="blue", weight=3]; 4241[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 2114[label="",style="solid", color="blue", weight=3]; 4242[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 2115[label="",style="solid", color="blue", weight=3]; 4243[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1525 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 2116[label="",style="solid", color="blue", weight=3]; 1526[label="primEqFloat (Float yvy4000 yvy4001) (Float yvy3000 yvy3001)",fontsize=16,color="black",shape="box"];1526 -> 2117[label="",style="solid", color="black", weight=3]; 1527[label="primEqInt (Pos (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4244[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1527 -> 4244[label="",style="solid", color="burlywood", weight=9]; 4244 -> 2118[label="",style="solid", color="burlywood", weight=3]; 4245[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1527 -> 4245[label="",style="solid", color="burlywood", weight=9]; 4245 -> 2119[label="",style="solid", color="burlywood", weight=3]; 1528[label="primEqInt (Pos Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4246[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1528 -> 4246[label="",style="solid", color="burlywood", weight=9]; 4246 -> 2120[label="",style="solid", color="burlywood", weight=3]; 4247[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1528 -> 4247[label="",style="solid", color="burlywood", weight=9]; 4247 -> 2121[label="",style="solid", color="burlywood", weight=3]; 1529[label="primEqInt (Neg (Succ yvy40000)) yvy300",fontsize=16,color="burlywood",shape="box"];4248[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1529 -> 4248[label="",style="solid", color="burlywood", weight=9]; 4248 -> 2122[label="",style="solid", color="burlywood", weight=3]; 4249[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1529 -> 4249[label="",style="solid", color="burlywood", weight=9]; 4249 -> 2123[label="",style="solid", color="burlywood", weight=3]; 1530[label="primEqInt (Neg Zero) yvy300",fontsize=16,color="burlywood",shape="box"];4250[label="yvy300/Pos yvy3000",fontsize=10,color="white",style="solid",shape="box"];1530 -> 4250[label="",style="solid", color="burlywood", weight=9]; 4250 -> 2124[label="",style="solid", color="burlywood", weight=3]; 4251[label="yvy300/Neg yvy3000",fontsize=10,color="white",style="solid",shape="box"];1530 -> 4251[label="",style="solid", color="burlywood", weight=9]; 4251 -> 2125[label="",style="solid", color="burlywood", weight=3]; 1531[label="True",fontsize=16,color="green",shape="box"];1532[label="False",fontsize=16,color="green",shape="box"];1533[label="False",fontsize=16,color="green",shape="box"];1534[label="False",fontsize=16,color="green",shape="box"];1535[label="True",fontsize=16,color="green",shape="box"];1536[label="False",fontsize=16,color="green",shape="box"];1537[label="False",fontsize=16,color="green",shape="box"];1538[label="False",fontsize=16,color="green",shape="box"];1539[label="True",fontsize=16,color="green",shape="box"];1540 -> 1610[label="",style="dashed", color="red", weight=0]; 1540[label="yvy4000 == yvy3000 && yvy4001 == yvy3001",fontsize=16,color="magenta"];1540 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1541[label="True",fontsize=16,color="green",shape="box"];1542 -> 1165[label="",style="dashed", color="red", weight=0]; 1542[label="primEqInt yvy4000 yvy3000",fontsize=16,color="magenta"];1542 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1542 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1923[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1923 -> 2128[label="",style="solid", color="black", weight=3]; 1924[label="yvy153 <= yvy154",fontsize=16,color="burlywood",shape="triangle"];4252[label="yvy153/False",fontsize=10,color="white",style="solid",shape="box"];1924 -> 4252[label="",style="solid", color="burlywood", weight=9]; 4252 -> 2129[label="",style="solid", color="burlywood", weight=3]; 4253[label="yvy153/True",fontsize=10,color="white",style="solid",shape="box"];1924 -> 4253[label="",style="solid", color="burlywood", weight=9]; 4253 -> 2130[label="",style="solid", color="burlywood", weight=3]; 1925[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1925 -> 2131[label="",style="solid", color="black", weight=3]; 1926[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1926 -> 2132[label="",style="solid", color="black", weight=3]; 1927[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1927 -> 2133[label="",style="solid", color="black", weight=3]; 1928[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1928 -> 2134[label="",style="solid", color="black", weight=3]; 1929[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1929 -> 2135[label="",style="solid", color="black", weight=3]; 1930[label="yvy153 <= yvy154",fontsize=16,color="burlywood",shape="triangle"];4254[label="yvy153/(yvy1530,yvy1531,yvy1532)",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4254[label="",style="solid", color="burlywood", weight=9]; 4254 -> 2136[label="",style="solid", color="burlywood", weight=3]; 1931[label="yvy153 <= yvy154",fontsize=16,color="burlywood",shape="triangle"];4255[label="yvy153/Nothing",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4255[label="",style="solid", color="burlywood", weight=9]; 4255 -> 2137[label="",style="solid", color="burlywood", weight=3]; 4256[label="yvy153/Just yvy1530",fontsize=10,color="white",style="solid",shape="box"];1931 -> 4256[label="",style="solid", color="burlywood", weight=9]; 4256 -> 2138[label="",style="solid", color="burlywood", weight=3]; 1932[label="yvy153 <= yvy154",fontsize=16,color="burlywood",shape="triangle"];4257[label="yvy153/LT",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4257[label="",style="solid", color="burlywood", weight=9]; 4257 -> 2139[label="",style="solid", color="burlywood", weight=3]; 4258[label="yvy153/EQ",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4258[label="",style="solid", color="burlywood", weight=9]; 4258 -> 2140[label="",style="solid", color="burlywood", weight=3]; 4259[label="yvy153/GT",fontsize=10,color="white",style="solid",shape="box"];1932 -> 4259[label="",style="solid", color="burlywood", weight=9]; 4259 -> 2141[label="",style="solid", color="burlywood", weight=3]; 1933[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1933 -> 2142[label="",style="solid", color="black", weight=3]; 1934[label="yvy153 <= yvy154",fontsize=16,color="black",shape="triangle"];1934 -> 2143[label="",style="solid", color="black", weight=3]; 1935[label="yvy153 <= yvy154",fontsize=16,color="burlywood",shape="triangle"];4260[label="yvy153/Left yvy1530",fontsize=10,color="white",style="solid",shape="box"];1935 -> 4260[label="",style="solid", color="burlywood", weight=9]; 4260 -> 2144[label="",style="solid", color="burlywood", weight=3]; 4261[label="yvy153/Right yvy1530",fontsize=10,color="white",style="solid",shape="box"];1935 -> 4261[label="",style="solid", color="burlywood", weight=9]; 4261 -> 2145[label="",style="solid", color="burlywood", weight=3]; 1936[label="yvy153 <= yvy154",fontsize=16,color="burlywood",shape="triangle"];4262[label="yvy153/(yvy1530,yvy1531)",fontsize=10,color="white",style="solid",shape="box"];1936 -> 4262[label="",style="solid", color="burlywood", weight=9]; 4262 -> 2146[label="",style="solid", color="burlywood", weight=3]; 1937[label="compare0 (Just yvy234) (Just yvy235) otherwise",fontsize=16,color="black",shape="box"];1937 -> 2147[label="",style="solid", color="black", weight=3]; 1938[label="LT",fontsize=16,color="green",shape="box"];1939 -> 1923[label="",style="dashed", color="red", weight=0]; 1939[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1939 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1940 -> 1924[label="",style="dashed", color="red", weight=0]; 1940[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1940 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1941 -> 1925[label="",style="dashed", color="red", weight=0]; 1941[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1941 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1942 -> 1926[label="",style="dashed", color="red", weight=0]; 1942[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1942 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1943 -> 1927[label="",style="dashed", color="red", weight=0]; 1943[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1943 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1944 -> 1928[label="",style="dashed", color="red", weight=0]; 1944[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1944 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1945 -> 1929[label="",style="dashed", color="red", weight=0]; 1945[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1945 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1946 -> 1930[label="",style="dashed", color="red", weight=0]; 1946[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1946 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1947 -> 1931[label="",style="dashed", color="red", weight=0]; 1947[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1947 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1948 -> 1932[label="",style="dashed", color="red", weight=0]; 1948[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1948 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1949 -> 1933[label="",style="dashed", color="red", weight=0]; 1949[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1949 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1950 -> 1934[label="",style="dashed", color="red", weight=0]; 1950[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1950 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1951 -> 1935[label="",style="dashed", color="red", weight=0]; 1951[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1951 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1952 -> 1936[label="",style="dashed", color="red", weight=0]; 1952[label="yvy160 <= yvy161",fontsize=16,color="magenta"];1952 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1953[label="compare0 (Left yvy241) (Left yvy242) otherwise",fontsize=16,color="black",shape="box"];1953 -> 2176[label="",style="solid", color="black", weight=3]; 1954[label="LT",fontsize=16,color="green",shape="box"];1955 -> 1923[label="",style="dashed", color="red", weight=0]; 1955[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1955 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1956 -> 1924[label="",style="dashed", color="red", weight=0]; 1956[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1956 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1957 -> 1925[label="",style="dashed", color="red", weight=0]; 1957[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1957 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1958 -> 1926[label="",style="dashed", color="red", weight=0]; 1958[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1958 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1958 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1959 -> 1927[label="",style="dashed", color="red", weight=0]; 1959[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1959 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1960 -> 1928[label="",style="dashed", color="red", weight=0]; 1960[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1960 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1961 -> 1929[label="",style="dashed", color="red", weight=0]; 1961[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1961 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1962 -> 1930[label="",style="dashed", color="red", weight=0]; 1962[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1962 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1963 -> 1931[label="",style="dashed", color="red", weight=0]; 1963[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1963 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1964 -> 1932[label="",style="dashed", color="red", weight=0]; 1964[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1964 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1965 -> 1933[label="",style="dashed", color="red", weight=0]; 1965[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1965 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1966 -> 1934[label="",style="dashed", color="red", weight=0]; 1966[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1966 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1935[label="",style="dashed", color="red", weight=0]; 1967[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1967 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1968 -> 1936[label="",style="dashed", color="red", weight=0]; 1968[label="yvy167 <= yvy168",fontsize=16,color="magenta"];1968 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1969[label="compare0 (Right yvy250) (Right yvy251) otherwise",fontsize=16,color="black",shape="box"];1969 -> 2205[label="",style="solid", color="black", weight=3]; 1970[label="LT",fontsize=16,color="green",shape="box"];1986[label="yvy205 <= yvy207",fontsize=16,color="blue",shape="box"];4263[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 2206[label="",style="solid", color="blue", weight=3]; 4264[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 2207[label="",style="solid", color="blue", weight=3]; 4265[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 2208[label="",style="solid", color="blue", weight=3]; 4266[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 2209[label="",style="solid", color="blue", weight=3]; 4267[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 2210[label="",style="solid", color="blue", weight=3]; 4268[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 2211[label="",style="solid", color="blue", weight=3]; 4269[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 2212[label="",style="solid", color="blue", weight=3]; 4270[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 2213[label="",style="solid", color="blue", weight=3]; 4271[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4271[label="",style="solid", color="blue", weight=9]; 4271 -> 2214[label="",style="solid", color="blue", weight=3]; 4272[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4272[label="",style="solid", color="blue", weight=9]; 4272 -> 2215[label="",style="solid", color="blue", weight=3]; 4273[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4273[label="",style="solid", color="blue", weight=9]; 4273 -> 2216[label="",style="solid", color="blue", weight=3]; 4274[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4274[label="",style="solid", color="blue", weight=9]; 4274 -> 2217[label="",style="solid", color="blue", weight=3]; 4275[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4275[label="",style="solid", color="blue", weight=9]; 4275 -> 2218[label="",style="solid", color="blue", weight=3]; 4276[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 2219[label="",style="solid", color="blue", weight=3]; 1987[label="yvy204 == yvy206",fontsize=16,color="blue",shape="box"];4277[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 2220[label="",style="solid", color="blue", weight=3]; 4278[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 2221[label="",style="solid", color="blue", weight=3]; 4279[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 2222[label="",style="solid", color="blue", weight=3]; 4280[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 2223[label="",style="solid", color="blue", weight=3]; 4281[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 2224[label="",style="solid", color="blue", weight=3]; 4282[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4282[label="",style="solid", color="blue", weight=9]; 4282 -> 2225[label="",style="solid", color="blue", weight=3]; 4283[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4283[label="",style="solid", color="blue", weight=9]; 4283 -> 2226[label="",style="solid", color="blue", weight=3]; 4284[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4284[label="",style="solid", color="blue", weight=9]; 4284 -> 2227[label="",style="solid", color="blue", weight=3]; 4285[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4285[label="",style="solid", color="blue", weight=9]; 4285 -> 2228[label="",style="solid", color="blue", weight=3]; 4286[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4286[label="",style="solid", color="blue", weight=9]; 4286 -> 2229[label="",style="solid", color="blue", weight=3]; 4287[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4287[label="",style="solid", color="blue", weight=9]; 4287 -> 2230[label="",style="solid", color="blue", weight=3]; 4288[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 2231[label="",style="solid", color="blue", weight=3]; 4289[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 2232[label="",style="solid", color="blue", weight=3]; 4290[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4290[label="",style="solid", color="blue", weight=9]; 4290 -> 2233[label="",style="solid", color="blue", weight=3]; 1988 -> 72[label="",style="dashed", color="red", weight=0]; 1988[label="yvy204 < yvy206",fontsize=16,color="magenta"];1988 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1989 -> 73[label="",style="dashed", color="red", weight=0]; 1989[label="yvy204 < yvy206",fontsize=16,color="magenta"];1989 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1990 -> 74[label="",style="dashed", color="red", weight=0]; 1990[label="yvy204 < yvy206",fontsize=16,color="magenta"];1990 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1991 -> 75[label="",style="dashed", color="red", weight=0]; 1991[label="yvy204 < yvy206",fontsize=16,color="magenta"];1991 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1992 -> 76[label="",style="dashed", color="red", weight=0]; 1992[label="yvy204 < yvy206",fontsize=16,color="magenta"];1992 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1993 -> 77[label="",style="dashed", color="red", weight=0]; 1993[label="yvy204 < yvy206",fontsize=16,color="magenta"];1993 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1994 -> 78[label="",style="dashed", color="red", weight=0]; 1994[label="yvy204 < yvy206",fontsize=16,color="magenta"];1994 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1995 -> 79[label="",style="dashed", color="red", weight=0]; 1995[label="yvy204 < yvy206",fontsize=16,color="magenta"];1995 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1996 -> 80[label="",style="dashed", color="red", weight=0]; 1996[label="yvy204 < yvy206",fontsize=16,color="magenta"];1996 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1997 -> 81[label="",style="dashed", color="red", weight=0]; 1997[label="yvy204 < yvy206",fontsize=16,color="magenta"];1997 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1998 -> 82[label="",style="dashed", color="red", weight=0]; 1998[label="yvy204 < yvy206",fontsize=16,color="magenta"];1998 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1999 -> 83[label="",style="dashed", color="red", weight=0]; 1999[label="yvy204 < yvy206",fontsize=16,color="magenta"];1999 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2000 -> 84[label="",style="dashed", color="red", weight=0]; 2000[label="yvy204 < yvy206",fontsize=16,color="magenta"];2000 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2001 -> 85[label="",style="dashed", color="red", weight=0]; 2001[label="yvy204 < yvy206",fontsize=16,color="magenta"];2001 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2002[label="compare1 (yvy278,yvy279) (yvy280,yvy281) (False || yvy283)",fontsize=16,color="black",shape="box"];2002 -> 2262[label="",style="solid", color="black", weight=3]; 2003[label="compare1 (yvy278,yvy279) (yvy280,yvy281) (True || yvy283)",fontsize=16,color="black",shape="box"];2003 -> 2263[label="",style="solid", color="black", weight=3]; 2005 -> 1500[label="",style="dashed", color="red", weight=0]; 2005[label="primMulNat Zero (Succ yvy9500)",fontsize=16,color="magenta"];2005 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2004 -> 1867[label="",style="dashed", color="red", weight=0]; 2004[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat (primPlusNat yvy284 (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="magenta"];2004 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2006[label="FiniteMap.mkBranchRight_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="black",shape="box"];2006 -> 2268[label="",style="solid", color="black", weight=3]; 2007[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="black",shape="box"];2007 -> 2269[label="",style="solid", color="black", weight=3]; 2008[label="primPlusNat (Succ yvy90200) yvy2170",fontsize=16,color="burlywood",shape="box"];4291[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];2008 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 2270[label="",style="solid", color="burlywood", weight=3]; 4292[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];2008 -> 4292[label="",style="solid", color="burlywood", weight=9]; 4292 -> 2271[label="",style="solid", color="burlywood", weight=3]; 2009[label="primPlusNat Zero yvy2170",fontsize=16,color="burlywood",shape="box"];4293[label="yvy2170/Succ yvy21700",fontsize=10,color="white",style="solid",shape="box"];2009 -> 4293[label="",style="solid", color="burlywood", weight=9]; 4293 -> 2272[label="",style="solid", color="burlywood", weight=3]; 4294[label="yvy2170/Zero",fontsize=10,color="white",style="solid",shape="box"];2009 -> 4294[label="",style="solid", color="burlywood", weight=9]; 4294 -> 2273[label="",style="solid", color="burlywood", weight=3]; 2010[label="primMinusNat (Succ yvy90200) (Succ yvy21700)",fontsize=16,color="black",shape="box"];2010 -> 2274[label="",style="solid", color="black", weight=3]; 2011[label="primMinusNat (Succ yvy90200) Zero",fontsize=16,color="black",shape="box"];2011 -> 2275[label="",style="solid", color="black", weight=3]; 2012[label="primMinusNat Zero (Succ yvy21700)",fontsize=16,color="black",shape="box"];2012 -> 2276[label="",style="solid", color="black", weight=3]; 2013[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2013 -> 2277[label="",style="solid", color="black", weight=3]; 2014[label="yvy2170",fontsize=16,color="green",shape="box"];2015[label="yvy9020",fontsize=16,color="green",shape="box"];2016 -> 1093[label="",style="dashed", color="red", weight=0]; 2016[label="FiniteMap.mkBalBranch6Size_r yvy50 yvy51 yvy54 yvy90",fontsize=16,color="magenta"];2017 -> 1329[label="",style="dashed", color="red", weight=0]; 2017[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2018[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 otherwise",fontsize=16,color="black",shape="box"];2018 -> 2278[label="",style="solid", color="black", weight=3]; 2019[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy54 yvy90 yvy90 yvy54 yvy90",fontsize=16,color="burlywood",shape="box"];4295[label="yvy90/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2019 -> 4295[label="",style="solid", color="burlywood", weight=9]; 4295 -> 2279[label="",style="solid", color="burlywood", weight=3]; 4296[label="yvy90/FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904",fontsize=10,color="white",style="solid",shape="box"];2019 -> 4296[label="",style="solid", color="burlywood", weight=9]; 4296 -> 2280[label="",style="solid", color="burlywood", weight=3]; 2020 -> 2281[label="",style="dashed", color="red", weight=0]; 2020[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (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"];2020 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2021[label="FiniteMap.mkBranchRight_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];2021 -> 2283[label="",style="solid", color="black", weight=3]; 2022[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];2022 -> 2284[label="",style="solid", color="black", weight=3]; 2023[label="primMulNat (Succ yvy40000) (Succ yvy30100)",fontsize=16,color="black",shape="box"];2023 -> 2285[label="",style="solid", color="black", weight=3]; 2024[label="primMulNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];2024 -> 2286[label="",style="solid", color="black", weight=3]; 2025[label="primMulNat Zero (Succ yvy30100)",fontsize=16,color="black",shape="box"];2025 -> 2287[label="",style="solid", color="black", weight=3]; 2026[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2026 -> 2288[label="",style="solid", color="black", weight=3]; 2027[label="yvy191",fontsize=16,color="green",shape="box"];2028[label="yvy194",fontsize=16,color="green",shape="box"];2029[label="yvy191",fontsize=16,color="green",shape="box"];2030[label="yvy194",fontsize=16,color="green",shape="box"];2031[label="yvy191",fontsize=16,color="green",shape="box"];2032[label="yvy194",fontsize=16,color="green",shape="box"];2033[label="yvy191",fontsize=16,color="green",shape="box"];2034[label="yvy194",fontsize=16,color="green",shape="box"];2035[label="yvy191",fontsize=16,color="green",shape="box"];2036[label="yvy194",fontsize=16,color="green",shape="box"];2037[label="yvy191",fontsize=16,color="green",shape="box"];2038[label="yvy194",fontsize=16,color="green",shape="box"];2039[label="yvy191",fontsize=16,color="green",shape="box"];2040[label="yvy194",fontsize=16,color="green",shape="box"];2041[label="yvy191",fontsize=16,color="green",shape="box"];2042[label="yvy194",fontsize=16,color="green",shape="box"];2043[label="yvy191",fontsize=16,color="green",shape="box"];2044[label="yvy194",fontsize=16,color="green",shape="box"];2045[label="yvy191",fontsize=16,color="green",shape="box"];2046[label="yvy194",fontsize=16,color="green",shape="box"];2047[label="yvy191",fontsize=16,color="green",shape="box"];2048[label="yvy194",fontsize=16,color="green",shape="box"];2049[label="yvy191",fontsize=16,color="green",shape="box"];2050[label="yvy194",fontsize=16,color="green",shape="box"];2051[label="yvy191",fontsize=16,color="green",shape="box"];2052[label="yvy194",fontsize=16,color="green",shape="box"];2053[label="yvy191",fontsize=16,color="green",shape="box"];2054[label="yvy194",fontsize=16,color="green",shape="box"];2292 -> 1610[label="",style="dashed", color="red", weight=0]; 2292[label="yvy192 == yvy195 && yvy193 <= yvy196",fontsize=16,color="magenta"];2292 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2293[label="yvy192 < yvy195",fontsize=16,color="blue",shape="box"];4297[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 2298[label="",style="solid", color="blue", weight=3]; 4298[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 2299[label="",style="solid", color="blue", weight=3]; 4299[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 2300[label="",style="solid", color="blue", weight=3]; 4300[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 2301[label="",style="solid", color="blue", weight=3]; 4301[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 2302[label="",style="solid", color="blue", weight=3]; 4302[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 2303[label="",style="solid", color="blue", weight=3]; 4303[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 2304[label="",style="solid", color="blue", weight=3]; 4304[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 2305[label="",style="solid", color="blue", weight=3]; 4305[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 2306[label="",style="solid", color="blue", weight=3]; 4306[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 2307[label="",style="solid", color="blue", weight=3]; 4307[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 2308[label="",style="solid", color="blue", weight=3]; 4308[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 2309[label="",style="solid", color="blue", weight=3]; 4309[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 2310[label="",style="solid", color="blue", weight=3]; 4310[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 2311[label="",style="solid", color="blue", weight=3]; 2291[label="yvy293 || yvy294",fontsize=16,color="burlywood",shape="triangle"];4311[label="yvy293/False",fontsize=10,color="white",style="solid",shape="box"];2291 -> 4311[label="",style="solid", color="burlywood", weight=9]; 4311 -> 2312[label="",style="solid", color="burlywood", weight=3]; 4312[label="yvy293/True",fontsize=10,color="white",style="solid",shape="box"];2291 -> 4312[label="",style="solid", color="burlywood", weight=9]; 4312 -> 2313[label="",style="solid", color="burlywood", weight=3]; 2057 -> 995[label="",style="dashed", color="red", weight=0]; 2057[label="yvy191 == yvy194",fontsize=16,color="magenta"];2057 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2058 -> 985[label="",style="dashed", color="red", weight=0]; 2058[label="yvy191 == yvy194",fontsize=16,color="magenta"];2058 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2059 -> 992[label="",style="dashed", color="red", weight=0]; 2059[label="yvy191 == yvy194",fontsize=16,color="magenta"];2059 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2060 -> 996[label="",style="dashed", color="red", weight=0]; 2060[label="yvy191 == yvy194",fontsize=16,color="magenta"];2060 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2061 -> 994[label="",style="dashed", color="red", weight=0]; 2061[label="yvy191 == yvy194",fontsize=16,color="magenta"];2061 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2062 -> 991[label="",style="dashed", color="red", weight=0]; 2062[label="yvy191 == yvy194",fontsize=16,color="magenta"];2062 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2063 -> 983[label="",style="dashed", color="red", weight=0]; 2063[label="yvy191 == yvy194",fontsize=16,color="magenta"];2063 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2064 -> 984[label="",style="dashed", color="red", weight=0]; 2064[label="yvy191 == yvy194",fontsize=16,color="magenta"];2064 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2065 -> 990[label="",style="dashed", color="red", weight=0]; 2065[label="yvy191 == yvy194",fontsize=16,color="magenta"];2065 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2066 -> 993[label="",style="dashed", color="red", weight=0]; 2066[label="yvy191 == yvy194",fontsize=16,color="magenta"];2066 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2067 -> 988[label="",style="dashed", color="red", weight=0]; 2067[label="yvy191 == yvy194",fontsize=16,color="magenta"];2067 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2068 -> 987[label="",style="dashed", color="red", weight=0]; 2068[label="yvy191 == yvy194",fontsize=16,color="magenta"];2068 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2069 -> 989[label="",style="dashed", color="red", weight=0]; 2069[label="yvy191 == yvy194",fontsize=16,color="magenta"];2069 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2070 -> 986[label="",style="dashed", color="red", weight=0]; 2070[label="yvy191 == yvy194",fontsize=16,color="magenta"];2070 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2071[label="compare1 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) yvy270",fontsize=16,color="burlywood",shape="triangle"];4313[label="yvy270/False",fontsize=10,color="white",style="solid",shape="box"];2071 -> 4313[label="",style="solid", color="burlywood", weight=9]; 4313 -> 2342[label="",style="solid", color="burlywood", weight=3]; 4314[label="yvy270/True",fontsize=10,color="white",style="solid",shape="box"];2071 -> 4314[label="",style="solid", color="burlywood", weight=9]; 4314 -> 2343[label="",style="solid", color="burlywood", weight=3]; 2072 -> 2071[label="",style="dashed", color="red", weight=0]; 2072[label="compare1 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) True",fontsize=16,color="magenta"];2072 -> 2344[label="",style="dashed", color="magenta", weight=3]; 1619 -> 983[label="",style="dashed", color="red", weight=0]; 1619[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];1619 -> 2345[label="",style="dashed", color="magenta", weight=3]; 1619 -> 2346[label="",style="dashed", color="magenta", weight=3]; 1620[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4315[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 2347[label="",style="solid", color="blue", weight=3]; 4316[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 2348[label="",style="solid", color="blue", weight=3]; 4317[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 2349[label="",style="solid", color="blue", weight=3]; 4318[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 2350[label="",style="solid", color="blue", weight=3]; 4319[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 2351[label="",style="solid", color="blue", weight=3]; 4320[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 2352[label="",style="solid", color="blue", weight=3]; 4321[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 2353[label="",style="solid", color="blue", weight=3]; 4322[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 2354[label="",style="solid", color="blue", weight=3]; 4323[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4323[label="",style="solid", color="blue", weight=9]; 4323 -> 2355[label="",style="solid", color="blue", weight=3]; 4324[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 2356[label="",style="solid", color="blue", weight=3]; 4325[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 2357[label="",style="solid", color="blue", weight=3]; 4326[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 2358[label="",style="solid", color="blue", weight=3]; 4327[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 2359[label="",style="solid", color="blue", weight=3]; 4328[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 2360[label="",style="solid", color="blue", weight=3]; 1621 -> 1610[label="",style="dashed", color="red", weight=0]; 1621[label="yvy4001 == yvy3001 && yvy4002 == yvy3002",fontsize=16,color="magenta"];1621 -> 2361[label="",style="dashed", color="magenta", weight=3]; 1621 -> 2362[label="",style="dashed", color="magenta", weight=3]; 1622[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4329[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 2363[label="",style="solid", color="blue", weight=3]; 4330[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 2364[label="",style="solid", color="blue", weight=3]; 4331[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 2365[label="",style="solid", color="blue", weight=3]; 4332[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 2366[label="",style="solid", color="blue", weight=3]; 4333[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4333[label="",style="solid", color="blue", weight=9]; 4333 -> 2367[label="",style="solid", color="blue", weight=3]; 4334[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4334[label="",style="solid", color="blue", weight=9]; 4334 -> 2368[label="",style="solid", color="blue", weight=3]; 4335[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4335[label="",style="solid", color="blue", weight=9]; 4335 -> 2369[label="",style="solid", color="blue", weight=3]; 4336[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4336[label="",style="solid", color="blue", weight=9]; 4336 -> 2370[label="",style="solid", color="blue", weight=3]; 4337[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4337[label="",style="solid", color="blue", weight=9]; 4337 -> 2371[label="",style="solid", color="blue", weight=3]; 4338[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4338[label="",style="solid", color="blue", weight=9]; 4338 -> 2372[label="",style="solid", color="blue", weight=3]; 4339[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4339[label="",style="solid", color="blue", weight=9]; 4339 -> 2373[label="",style="solid", color="blue", weight=3]; 4340[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4340[label="",style="solid", color="blue", weight=9]; 4340 -> 2374[label="",style="solid", color="blue", weight=3]; 4341[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4341[label="",style="solid", color="blue", weight=9]; 4341 -> 2375[label="",style="solid", color="blue", weight=3]; 4342[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1622 -> 4342[label="",style="solid", color="blue", weight=9]; 4342 -> 2376[label="",style="solid", color="blue", weight=3]; 1623[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4343[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4343[label="",style="solid", color="blue", weight=9]; 4343 -> 2377[label="",style="solid", color="blue", weight=3]; 4344[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4344[label="",style="solid", color="blue", weight=9]; 4344 -> 2378[label="",style="solid", color="blue", weight=3]; 4345[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4345[label="",style="solid", color="blue", weight=9]; 4345 -> 2379[label="",style="solid", color="blue", weight=3]; 4346[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4346[label="",style="solid", color="blue", weight=9]; 4346 -> 2380[label="",style="solid", color="blue", weight=3]; 4347[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4347[label="",style="solid", color="blue", weight=9]; 4347 -> 2381[label="",style="solid", color="blue", weight=3]; 4348[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4348[label="",style="solid", color="blue", weight=9]; 4348 -> 2382[label="",style="solid", color="blue", weight=3]; 4349[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4349[label="",style="solid", color="blue", weight=9]; 4349 -> 2383[label="",style="solid", color="blue", weight=3]; 4350[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4350[label="",style="solid", color="blue", weight=9]; 4350 -> 2384[label="",style="solid", color="blue", weight=3]; 4351[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4351[label="",style="solid", color="blue", weight=9]; 4351 -> 2385[label="",style="solid", color="blue", weight=3]; 4352[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4352[label="",style="solid", color="blue", weight=9]; 4352 -> 2386[label="",style="solid", color="blue", weight=3]; 4353[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4353[label="",style="solid", color="blue", weight=9]; 4353 -> 2387[label="",style="solid", color="blue", weight=3]; 4354[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4354[label="",style="solid", color="blue", weight=9]; 4354 -> 2388[label="",style="solid", color="blue", weight=3]; 4355[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4355[label="",style="solid", color="blue", weight=9]; 4355 -> 2389[label="",style="solid", color="blue", weight=3]; 4356[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 4356[label="",style="solid", color="blue", weight=9]; 4356 -> 2390[label="",style="solid", color="blue", weight=3]; 1624[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4357[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4357[label="",style="solid", color="blue", weight=9]; 4357 -> 2391[label="",style="solid", color="blue", weight=3]; 4358[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 2392[label="",style="solid", color="blue", weight=3]; 4359[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 2393[label="",style="solid", color="blue", weight=3]; 4360[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 2394[label="",style="solid", color="blue", weight=3]; 4361[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4361[label="",style="solid", color="blue", weight=9]; 4361 -> 2395[label="",style="solid", color="blue", weight=3]; 4362[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4362[label="",style="solid", color="blue", weight=9]; 4362 -> 2396[label="",style="solid", color="blue", weight=3]; 4363[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 2397[label="",style="solid", color="blue", weight=3]; 4364[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 2398[label="",style="solid", color="blue", weight=3]; 4365[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 2399[label="",style="solid", color="blue", weight=3]; 4366[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 2400[label="",style="solid", color="blue", weight=3]; 4367[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 2401[label="",style="solid", color="blue", weight=3]; 4368[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4368[label="",style="solid", color="blue", weight=9]; 4368 -> 2402[label="",style="solid", color="blue", weight=3]; 4369[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4369[label="",style="solid", color="blue", weight=9]; 4369 -> 2403[label="",style="solid", color="blue", weight=3]; 4370[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1624 -> 4370[label="",style="solid", color="blue", weight=9]; 4370 -> 2404[label="",style="solid", color="blue", weight=3]; 2073 -> 992[label="",style="dashed", color="red", weight=0]; 2073[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2073 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2074[label="primEqNat yvy4000 yvy3000",fontsize=16,color="burlywood",shape="triangle"];4371[label="yvy4000/Succ yvy40000",fontsize=10,color="white",style="solid",shape="box"];2074 -> 4371[label="",style="solid", color="burlywood", weight=9]; 4371 -> 2407[label="",style="solid", color="burlywood", weight=3]; 4372[label="yvy4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2074 -> 4372[label="",style="solid", color="burlywood", weight=9]; 4372 -> 2408[label="",style="solid", color="burlywood", weight=3]; 2075 -> 983[label="",style="dashed", color="red", weight=0]; 2075[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2075 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2076 -> 984[label="",style="dashed", color="red", weight=0]; 2076[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2076 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2077 -> 985[label="",style="dashed", color="red", weight=0]; 2077[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2077 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2078 -> 986[label="",style="dashed", color="red", weight=0]; 2078[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2078 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2079 -> 987[label="",style="dashed", color="red", weight=0]; 2079[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2079 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2080 -> 988[label="",style="dashed", color="red", weight=0]; 2080[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2080 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2081 -> 989[label="",style="dashed", color="red", weight=0]; 2081[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2081 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2082 -> 990[label="",style="dashed", color="red", weight=0]; 2082[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2082 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2083 -> 991[label="",style="dashed", color="red", weight=0]; 2083[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2083 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2084 -> 992[label="",style="dashed", color="red", weight=0]; 2084[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2084 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2085 -> 993[label="",style="dashed", color="red", weight=0]; 2085[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2085 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2086 -> 994[label="",style="dashed", color="red", weight=0]; 2086[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2086 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2087 -> 995[label="",style="dashed", color="red", weight=0]; 2087[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2087 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2088 -> 996[label="",style="dashed", color="red", weight=0]; 2088[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2088 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2089 -> 983[label="",style="dashed", color="red", weight=0]; 2089[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2089 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2090 -> 984[label="",style="dashed", color="red", weight=0]; 2090[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2090 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2091 -> 985[label="",style="dashed", color="red", weight=0]; 2091[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2091 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2092 -> 986[label="",style="dashed", color="red", weight=0]; 2092[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2092 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2093 -> 987[label="",style="dashed", color="red", weight=0]; 2093[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2093 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2094 -> 988[label="",style="dashed", color="red", weight=0]; 2094[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2094 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2095 -> 989[label="",style="dashed", color="red", weight=0]; 2095[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2095 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2096 -> 990[label="",style="dashed", color="red", weight=0]; 2096[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2096 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2097 -> 991[label="",style="dashed", color="red", weight=0]; 2097[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2097 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2098 -> 992[label="",style="dashed", color="red", weight=0]; 2098[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2098 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2099 -> 993[label="",style="dashed", color="red", weight=0]; 2099[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2099 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2100 -> 994[label="",style="dashed", color="red", weight=0]; 2100[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2100 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2101 -> 995[label="",style="dashed", color="red", weight=0]; 2101[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2101 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2102 -> 996[label="",style="dashed", color="red", weight=0]; 2102[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2102 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2103 -> 983[label="",style="dashed", color="red", weight=0]; 2103[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2103 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2104 -> 984[label="",style="dashed", color="red", weight=0]; 2104[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2104 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2105 -> 985[label="",style="dashed", color="red", weight=0]; 2105[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2105 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2106 -> 986[label="",style="dashed", color="red", weight=0]; 2106[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2106 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2107 -> 987[label="",style="dashed", color="red", weight=0]; 2107[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2107 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2108 -> 988[label="",style="dashed", color="red", weight=0]; 2108[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2108 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2109 -> 989[label="",style="dashed", color="red", weight=0]; 2109[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2109 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2110 -> 990[label="",style="dashed", color="red", weight=0]; 2110[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2110 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2111 -> 991[label="",style="dashed", color="red", weight=0]; 2111[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2111 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2112 -> 992[label="",style="dashed", color="red", weight=0]; 2112[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2112 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2113 -> 993[label="",style="dashed", color="red", weight=0]; 2113[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2113 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2114 -> 994[label="",style="dashed", color="red", weight=0]; 2114[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2114 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2115 -> 995[label="",style="dashed", color="red", weight=0]; 2115[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2115 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2116 -> 996[label="",style="dashed", color="red", weight=0]; 2116[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2116 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2117 -> 992[label="",style="dashed", color="red", weight=0]; 2117[label="yvy4000 * yvy3001 == yvy4001 * yvy3000",fontsize=16,color="magenta"];2117 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2118[label="primEqInt (Pos (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4373[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4373[label="",style="solid", color="burlywood", weight=9]; 4373 -> 2495[label="",style="solid", color="burlywood", weight=3]; 4374[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4374[label="",style="solid", color="burlywood", weight=9]; 4374 -> 2496[label="",style="solid", color="burlywood", weight=3]; 2119[label="primEqInt (Pos (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="black",shape="box"];2119 -> 2497[label="",style="solid", color="black", weight=3]; 2120[label="primEqInt (Pos Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4375[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2120 -> 4375[label="",style="solid", color="burlywood", weight=9]; 4375 -> 2498[label="",style="solid", color="burlywood", weight=3]; 4376[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2120 -> 4376[label="",style="solid", color="burlywood", weight=9]; 4376 -> 2499[label="",style="solid", color="burlywood", weight=3]; 2121[label="primEqInt (Pos Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4377[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2121 -> 4377[label="",style="solid", color="burlywood", weight=9]; 4377 -> 2500[label="",style="solid", color="burlywood", weight=3]; 4378[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2121 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 2501[label="",style="solid", color="burlywood", weight=3]; 2122[label="primEqInt (Neg (Succ yvy40000)) (Pos yvy3000)",fontsize=16,color="black",shape="box"];2122 -> 2502[label="",style="solid", color="black", weight=3]; 2123[label="primEqInt (Neg (Succ yvy40000)) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4379[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4379[label="",style="solid", color="burlywood", weight=9]; 4379 -> 2503[label="",style="solid", color="burlywood", weight=3]; 4380[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4380[label="",style="solid", color="burlywood", weight=9]; 4380 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2124[label="primEqInt (Neg Zero) (Pos yvy3000)",fontsize=16,color="burlywood",shape="box"];4381[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2124 -> 4381[label="",style="solid", color="burlywood", weight=9]; 4381 -> 2505[label="",style="solid", color="burlywood", weight=3]; 4382[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2124 -> 4382[label="",style="solid", color="burlywood", weight=9]; 4382 -> 2506[label="",style="solid", color="burlywood", weight=3]; 2125[label="primEqInt (Neg Zero) (Neg yvy3000)",fontsize=16,color="burlywood",shape="box"];4383[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4383[label="",style="solid", color="burlywood", weight=9]; 4383 -> 2507[label="",style="solid", color="burlywood", weight=3]; 4384[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4384[label="",style="solid", color="burlywood", weight=9]; 4384 -> 2508[label="",style="solid", color="burlywood", weight=3]; 1625[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4385[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 2509[label="",style="solid", color="blue", weight=3]; 4386[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 2510[label="",style="solid", color="blue", weight=3]; 1626[label="yvy4000 == yvy3000",fontsize=16,color="blue",shape="box"];4387[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 2511[label="",style="solid", color="blue", weight=3]; 4388[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1626 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 2512[label="",style="solid", color="blue", weight=3]; 2126[label="yvy4000",fontsize=16,color="green",shape="box"];2127[label="yvy3000",fontsize=16,color="green",shape="box"];2128 -> 2513[label="",style="dashed", color="red", weight=0]; 2128[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2128 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2129[label="False <= yvy154",fontsize=16,color="burlywood",shape="box"];4389[label="yvy154/False",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4389[label="",style="solid", color="burlywood", weight=9]; 4389 -> 2522[label="",style="solid", color="burlywood", weight=3]; 4390[label="yvy154/True",fontsize=10,color="white",style="solid",shape="box"];2129 -> 4390[label="",style="solid", color="burlywood", weight=9]; 4390 -> 2523[label="",style="solid", color="burlywood", weight=3]; 2130[label="True <= yvy154",fontsize=16,color="burlywood",shape="box"];4391[label="yvy154/False",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4391[label="",style="solid", color="burlywood", weight=9]; 4391 -> 2524[label="",style="solid", color="burlywood", weight=3]; 4392[label="yvy154/True",fontsize=10,color="white",style="solid",shape="box"];2130 -> 4392[label="",style="solid", color="burlywood", weight=9]; 4392 -> 2525[label="",style="solid", color="burlywood", weight=3]; 2131 -> 2513[label="",style="dashed", color="red", weight=0]; 2131[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2131 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2513[label="",style="dashed", color="red", weight=0]; 2132[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2132 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2513[label="",style="dashed", color="red", weight=0]; 2133[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2133 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2513[label="",style="dashed", color="red", weight=0]; 2134[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2134 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2513[label="",style="dashed", color="red", weight=0]; 2135[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2135 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2136[label="(yvy1530,yvy1531,yvy1532) <= yvy154",fontsize=16,color="burlywood",shape="box"];4393[label="yvy154/(yvy1540,yvy1541,yvy1542)",fontsize=10,color="white",style="solid",shape="box"];2136 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 2526[label="",style="solid", color="burlywood", weight=3]; 2137[label="Nothing <= yvy154",fontsize=16,color="burlywood",shape="box"];4394[label="yvy154/Nothing",fontsize=10,color="white",style="solid",shape="box"];2137 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 2527[label="",style="solid", color="burlywood", weight=3]; 4395[label="yvy154/Just yvy1540",fontsize=10,color="white",style="solid",shape="box"];2137 -> 4395[label="",style="solid", color="burlywood", weight=9]; 4395 -> 2528[label="",style="solid", color="burlywood", weight=3]; 2138[label="Just yvy1530 <= yvy154",fontsize=16,color="burlywood",shape="box"];4396[label="yvy154/Nothing",fontsize=10,color="white",style="solid",shape="box"];2138 -> 4396[label="",style="solid", color="burlywood", weight=9]; 4396 -> 2529[label="",style="solid", color="burlywood", weight=3]; 4397[label="yvy154/Just yvy1540",fontsize=10,color="white",style="solid",shape="box"];2138 -> 4397[label="",style="solid", color="burlywood", weight=9]; 4397 -> 2530[label="",style="solid", color="burlywood", weight=3]; 2139[label="LT <= yvy154",fontsize=16,color="burlywood",shape="box"];4398[label="yvy154/LT",fontsize=10,color="white",style="solid",shape="box"];2139 -> 4398[label="",style="solid", color="burlywood", weight=9]; 4398 -> 2531[label="",style="solid", color="burlywood", weight=3]; 4399[label="yvy154/EQ",fontsize=10,color="white",style="solid",shape="box"];2139 -> 4399[label="",style="solid", color="burlywood", weight=9]; 4399 -> 2532[label="",style="solid", color="burlywood", weight=3]; 4400[label="yvy154/GT",fontsize=10,color="white",style="solid",shape="box"];2139 -> 4400[label="",style="solid", color="burlywood", weight=9]; 4400 -> 2533[label="",style="solid", color="burlywood", weight=3]; 2140[label="EQ <= yvy154",fontsize=16,color="burlywood",shape="box"];4401[label="yvy154/LT",fontsize=10,color="white",style="solid",shape="box"];2140 -> 4401[label="",style="solid", color="burlywood", weight=9]; 4401 -> 2534[label="",style="solid", color="burlywood", weight=3]; 4402[label="yvy154/EQ",fontsize=10,color="white",style="solid",shape="box"];2140 -> 4402[label="",style="solid", color="burlywood", weight=9]; 4402 -> 2535[label="",style="solid", color="burlywood", weight=3]; 4403[label="yvy154/GT",fontsize=10,color="white",style="solid",shape="box"];2140 -> 4403[label="",style="solid", color="burlywood", weight=9]; 4403 -> 2536[label="",style="solid", color="burlywood", weight=3]; 2141[label="GT <= yvy154",fontsize=16,color="burlywood",shape="box"];4404[label="yvy154/LT",fontsize=10,color="white",style="solid",shape="box"];2141 -> 4404[label="",style="solid", color="burlywood", weight=9]; 4404 -> 2537[label="",style="solid", color="burlywood", weight=3]; 4405[label="yvy154/EQ",fontsize=10,color="white",style="solid",shape="box"];2141 -> 4405[label="",style="solid", color="burlywood", weight=9]; 4405 -> 2538[label="",style="solid", color="burlywood", weight=3]; 4406[label="yvy154/GT",fontsize=10,color="white",style="solid",shape="box"];2141 -> 4406[label="",style="solid", color="burlywood", weight=9]; 4406 -> 2539[label="",style="solid", color="burlywood", weight=3]; 2142 -> 2513[label="",style="dashed", color="red", weight=0]; 2142[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2142 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2143 -> 2513[label="",style="dashed", color="red", weight=0]; 2143[label="compare yvy153 yvy154 /= GT",fontsize=16,color="magenta"];2143 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2144[label="Left yvy1530 <= yvy154",fontsize=16,color="burlywood",shape="box"];4407[label="yvy154/Left yvy1540",fontsize=10,color="white",style="solid",shape="box"];2144 -> 4407[label="",style="solid", color="burlywood", weight=9]; 4407 -> 2540[label="",style="solid", color="burlywood", weight=3]; 4408[label="yvy154/Right yvy1540",fontsize=10,color="white",style="solid",shape="box"];2144 -> 4408[label="",style="solid", color="burlywood", weight=9]; 4408 -> 2541[label="",style="solid", color="burlywood", weight=3]; 2145[label="Right yvy1530 <= yvy154",fontsize=16,color="burlywood",shape="box"];4409[label="yvy154/Left yvy1540",fontsize=10,color="white",style="solid",shape="box"];2145 -> 4409[label="",style="solid", color="burlywood", weight=9]; 4409 -> 2542[label="",style="solid", color="burlywood", weight=3]; 4410[label="yvy154/Right yvy1540",fontsize=10,color="white",style="solid",shape="box"];2145 -> 4410[label="",style="solid", color="burlywood", weight=9]; 4410 -> 2543[label="",style="solid", color="burlywood", weight=3]; 2146[label="(yvy1530,yvy1531) <= yvy154",fontsize=16,color="burlywood",shape="box"];4411[label="yvy154/(yvy1540,yvy1541)",fontsize=10,color="white",style="solid",shape="box"];2146 -> 4411[label="",style="solid", color="burlywood", weight=9]; 4411 -> 2544[label="",style="solid", color="burlywood", weight=3]; 2147[label="compare0 (Just yvy234) (Just yvy235) True",fontsize=16,color="black",shape="box"];2147 -> 2545[label="",style="solid", color="black", weight=3]; 2148[label="yvy160",fontsize=16,color="green",shape="box"];2149[label="yvy161",fontsize=16,color="green",shape="box"];2150[label="yvy160",fontsize=16,color="green",shape="box"];2151[label="yvy161",fontsize=16,color="green",shape="box"];2152[label="yvy160",fontsize=16,color="green",shape="box"];2153[label="yvy161",fontsize=16,color="green",shape="box"];2154[label="yvy160",fontsize=16,color="green",shape="box"];2155[label="yvy161",fontsize=16,color="green",shape="box"];2156[label="yvy160",fontsize=16,color="green",shape="box"];2157[label="yvy161",fontsize=16,color="green",shape="box"];2158[label="yvy160",fontsize=16,color="green",shape="box"];2159[label="yvy161",fontsize=16,color="green",shape="box"];2160[label="yvy160",fontsize=16,color="green",shape="box"];2161[label="yvy161",fontsize=16,color="green",shape="box"];2162[label="yvy160",fontsize=16,color="green",shape="box"];2163[label="yvy161",fontsize=16,color="green",shape="box"];2164[label="yvy160",fontsize=16,color="green",shape="box"];2165[label="yvy161",fontsize=16,color="green",shape="box"];2166[label="yvy160",fontsize=16,color="green",shape="box"];2167[label="yvy161",fontsize=16,color="green",shape="box"];2168[label="yvy160",fontsize=16,color="green",shape="box"];2169[label="yvy161",fontsize=16,color="green",shape="box"];2170[label="yvy160",fontsize=16,color="green",shape="box"];2171[label="yvy161",fontsize=16,color="green",shape="box"];2172[label="yvy160",fontsize=16,color="green",shape="box"];2173[label="yvy161",fontsize=16,color="green",shape="box"];2174[label="yvy160",fontsize=16,color="green",shape="box"];2175[label="yvy161",fontsize=16,color="green",shape="box"];2176[label="compare0 (Left yvy241) (Left yvy242) True",fontsize=16,color="black",shape="box"];2176 -> 2546[label="",style="solid", color="black", weight=3]; 2177[label="yvy167",fontsize=16,color="green",shape="box"];2178[label="yvy168",fontsize=16,color="green",shape="box"];2179[label="yvy167",fontsize=16,color="green",shape="box"];2180[label="yvy168",fontsize=16,color="green",shape="box"];2181[label="yvy167",fontsize=16,color="green",shape="box"];2182[label="yvy168",fontsize=16,color="green",shape="box"];2183[label="yvy167",fontsize=16,color="green",shape="box"];2184[label="yvy168",fontsize=16,color="green",shape="box"];2185[label="yvy167",fontsize=16,color="green",shape="box"];2186[label="yvy168",fontsize=16,color="green",shape="box"];2187[label="yvy167",fontsize=16,color="green",shape="box"];2188[label="yvy168",fontsize=16,color="green",shape="box"];2189[label="yvy167",fontsize=16,color="green",shape="box"];2190[label="yvy168",fontsize=16,color="green",shape="box"];2191[label="yvy167",fontsize=16,color="green",shape="box"];2192[label="yvy168",fontsize=16,color="green",shape="box"];2193[label="yvy167",fontsize=16,color="green",shape="box"];2194[label="yvy168",fontsize=16,color="green",shape="box"];2195[label="yvy167",fontsize=16,color="green",shape="box"];2196[label="yvy168",fontsize=16,color="green",shape="box"];2197[label="yvy167",fontsize=16,color="green",shape="box"];2198[label="yvy168",fontsize=16,color="green",shape="box"];2199[label="yvy167",fontsize=16,color="green",shape="box"];2200[label="yvy168",fontsize=16,color="green",shape="box"];2201[label="yvy167",fontsize=16,color="green",shape="box"];2202[label="yvy168",fontsize=16,color="green",shape="box"];2203[label="yvy167",fontsize=16,color="green",shape="box"];2204[label="yvy168",fontsize=16,color="green",shape="box"];2205[label="compare0 (Right yvy250) (Right yvy251) True",fontsize=16,color="black",shape="box"];2205 -> 2547[label="",style="solid", color="black", weight=3]; 2206 -> 1923[label="",style="dashed", color="red", weight=0]; 2206[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2206 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2207 -> 1924[label="",style="dashed", color="red", weight=0]; 2207[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2207 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2208 -> 1925[label="",style="dashed", color="red", weight=0]; 2208[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2208 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2209 -> 1926[label="",style="dashed", color="red", weight=0]; 2209[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2209 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2210 -> 1927[label="",style="dashed", color="red", weight=0]; 2210[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2210 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2211 -> 1928[label="",style="dashed", color="red", weight=0]; 2211[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2211 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2212 -> 1929[label="",style="dashed", color="red", weight=0]; 2212[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2212 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2213 -> 1930[label="",style="dashed", color="red", weight=0]; 2213[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2213 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2214 -> 1931[label="",style="dashed", color="red", weight=0]; 2214[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2214 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2215 -> 1932[label="",style="dashed", color="red", weight=0]; 2215[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2215 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2216 -> 1933[label="",style="dashed", color="red", weight=0]; 2216[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2216 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2217 -> 1934[label="",style="dashed", color="red", weight=0]; 2217[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2217 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2218 -> 1935[label="",style="dashed", color="red", weight=0]; 2218[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2218 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2219 -> 1936[label="",style="dashed", color="red", weight=0]; 2219[label="yvy205 <= yvy207",fontsize=16,color="magenta"];2219 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2220 -> 995[label="",style="dashed", color="red", weight=0]; 2220[label="yvy204 == yvy206",fontsize=16,color="magenta"];2220 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2221 -> 985[label="",style="dashed", color="red", weight=0]; 2221[label="yvy204 == yvy206",fontsize=16,color="magenta"];2221 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2222 -> 992[label="",style="dashed", color="red", weight=0]; 2222[label="yvy204 == yvy206",fontsize=16,color="magenta"];2222 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2223 -> 996[label="",style="dashed", color="red", weight=0]; 2223[label="yvy204 == yvy206",fontsize=16,color="magenta"];2223 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2224 -> 994[label="",style="dashed", color="red", weight=0]; 2224[label="yvy204 == yvy206",fontsize=16,color="magenta"];2224 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2225 -> 991[label="",style="dashed", color="red", weight=0]; 2225[label="yvy204 == yvy206",fontsize=16,color="magenta"];2225 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2226 -> 983[label="",style="dashed", color="red", weight=0]; 2226[label="yvy204 == yvy206",fontsize=16,color="magenta"];2226 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2227 -> 984[label="",style="dashed", color="red", weight=0]; 2227[label="yvy204 == yvy206",fontsize=16,color="magenta"];2227 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2228 -> 990[label="",style="dashed", color="red", weight=0]; 2228[label="yvy204 == yvy206",fontsize=16,color="magenta"];2228 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2229 -> 993[label="",style="dashed", color="red", weight=0]; 2229[label="yvy204 == yvy206",fontsize=16,color="magenta"];2229 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2230 -> 988[label="",style="dashed", color="red", weight=0]; 2230[label="yvy204 == yvy206",fontsize=16,color="magenta"];2230 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2231 -> 987[label="",style="dashed", color="red", weight=0]; 2231[label="yvy204 == yvy206",fontsize=16,color="magenta"];2231 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2232 -> 989[label="",style="dashed", color="red", weight=0]; 2232[label="yvy204 == yvy206",fontsize=16,color="magenta"];2232 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2233 -> 986[label="",style="dashed", color="red", weight=0]; 2233[label="yvy204 == yvy206",fontsize=16,color="magenta"];2233 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2234[label="yvy204",fontsize=16,color="green",shape="box"];2235[label="yvy206",fontsize=16,color="green",shape="box"];2236[label="yvy204",fontsize=16,color="green",shape="box"];2237[label="yvy206",fontsize=16,color="green",shape="box"];2238[label="yvy204",fontsize=16,color="green",shape="box"];2239[label="yvy206",fontsize=16,color="green",shape="box"];2240[label="yvy204",fontsize=16,color="green",shape="box"];2241[label="yvy206",fontsize=16,color="green",shape="box"];2242[label="yvy204",fontsize=16,color="green",shape="box"];2243[label="yvy206",fontsize=16,color="green",shape="box"];2244[label="yvy204",fontsize=16,color="green",shape="box"];2245[label="yvy206",fontsize=16,color="green",shape="box"];2246[label="yvy204",fontsize=16,color="green",shape="box"];2247[label="yvy206",fontsize=16,color="green",shape="box"];2248[label="yvy204",fontsize=16,color="green",shape="box"];2249[label="yvy206",fontsize=16,color="green",shape="box"];2250[label="yvy204",fontsize=16,color="green",shape="box"];2251[label="yvy206",fontsize=16,color="green",shape="box"];2252[label="yvy204",fontsize=16,color="green",shape="box"];2253[label="yvy206",fontsize=16,color="green",shape="box"];2254[label="yvy204",fontsize=16,color="green",shape="box"];2255[label="yvy206",fontsize=16,color="green",shape="box"];2256[label="yvy204",fontsize=16,color="green",shape="box"];2257[label="yvy206",fontsize=16,color="green",shape="box"];2258[label="yvy204",fontsize=16,color="green",shape="box"];2259[label="yvy206",fontsize=16,color="green",shape="box"];2260[label="yvy204",fontsize=16,color="green",shape="box"];2261[label="yvy206",fontsize=16,color="green",shape="box"];2262[label="compare1 (yvy278,yvy279) (yvy280,yvy281) yvy283",fontsize=16,color="burlywood",shape="triangle"];4412[label="yvy283/False",fontsize=10,color="white",style="solid",shape="box"];2262 -> 4412[label="",style="solid", color="burlywood", weight=9]; 4412 -> 2604[label="",style="solid", color="burlywood", weight=3]; 4413[label="yvy283/True",fontsize=10,color="white",style="solid",shape="box"];2262 -> 4413[label="",style="solid", color="burlywood", weight=9]; 4413 -> 2605[label="",style="solid", color="burlywood", weight=3]; 2263 -> 2262[label="",style="dashed", color="red", weight=0]; 2263[label="compare1 (yvy278,yvy279) (yvy280,yvy281) True",fontsize=16,color="magenta"];2263 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2264[label="Zero",fontsize=16,color="green",shape="box"];2265[label="Succ yvy9500",fontsize=16,color="green",shape="box"];2266[label="Succ yvy9500",fontsize=16,color="green",shape="box"];2267 -> 1867[label="",style="dashed", color="red", weight=0]; 2267[label="primPlusNat (primPlusNat (primPlusNat (primPlusNat yvy284 (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="magenta"];2267 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1327[label="",style="dashed", color="red", weight=0]; 2268[label="FiniteMap.sizeFM (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="magenta"];2268 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1472[label="",style="dashed", color="red", weight=0]; 2269[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128))",fontsize=16,color="magenta"];2269 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2270[label="primPlusNat (Succ yvy90200) (Succ yvy21700)",fontsize=16,color="black",shape="box"];2270 -> 2612[label="",style="solid", color="black", weight=3]; 2271[label="primPlusNat (Succ yvy90200) Zero",fontsize=16,color="black",shape="box"];2271 -> 2613[label="",style="solid", color="black", weight=3]; 2272[label="primPlusNat Zero (Succ yvy21700)",fontsize=16,color="black",shape="box"];2272 -> 2614[label="",style="solid", color="black", weight=3]; 2273[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2273 -> 2615[label="",style="solid", color="black", weight=3]; 2274 -> 1678[label="",style="dashed", color="red", weight=0]; 2274[label="primMinusNat yvy90200 yvy21700",fontsize=16,color="magenta"];2274 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2275[label="Pos (Succ yvy90200)",fontsize=16,color="green",shape="box"];2276[label="Neg (Succ yvy21700)",fontsize=16,color="green",shape="box"];2277[label="Pos Zero",fontsize=16,color="green",shape="box"];2278[label="FiniteMap.mkBalBranch6MkBalBranch2 yvy50 yvy51 yvy54 yvy90 yvy50 yvy51 yvy90 yvy54 True",fontsize=16,color="black",shape="box"];2278 -> 2618[label="",style="solid", color="black", weight=3]; 2279[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy54 FiniteMap.EmptyFM FiniteMap.EmptyFM yvy54 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2279 -> 2619[label="",style="solid", color="black", weight=3]; 2280[label="FiniteMap.mkBalBranch6MkBalBranch1 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904)",fontsize=16,color="black",shape="box"];2280 -> 2620[label="",style="solid", color="black", weight=3]; 2282 -> 74[label="",style="dashed", color="red", weight=0]; 2282[label="FiniteMap.sizeFM yvy543 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];2282 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2281[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 yvy286",fontsize=16,color="burlywood",shape="triangle"];4414[label="yvy286/False",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4414[label="",style="solid", color="burlywood", weight=9]; 4414 -> 2623[label="",style="solid", color="burlywood", weight=3]; 4415[label="yvy286/True",fontsize=10,color="white",style="solid",shape="box"];2281 -> 4415[label="",style="solid", color="burlywood", weight=9]; 4415 -> 2624[label="",style="solid", color="burlywood", weight=3]; 2283 -> 1327[label="",style="dashed", color="red", weight=0]; 2283[label="FiniteMap.sizeFM yvy54",fontsize=16,color="magenta"];2284 -> 1472[label="",style="dashed", color="red", weight=0]; 2284[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54)",fontsize=16,color="magenta"];2284 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2285 -> 1867[label="",style="dashed", color="red", weight=0]; 2285[label="primPlusNat (primMulNat yvy40000 (Succ yvy30100)) (Succ yvy30100)",fontsize=16,color="magenta"];2285 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2286[label="Zero",fontsize=16,color="green",shape="box"];2287[label="Zero",fontsize=16,color="green",shape="box"];2288[label="Zero",fontsize=16,color="green",shape="box"];2296[label="yvy193 <= yvy196",fontsize=16,color="blue",shape="box"];4416[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 2629[label="",style="solid", color="blue", weight=3]; 4417[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4417[label="",style="solid", color="blue", weight=9]; 4417 -> 2630[label="",style="solid", color="blue", weight=3]; 4418[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4418[label="",style="solid", color="blue", weight=9]; 4418 -> 2631[label="",style="solid", color="blue", weight=3]; 4419[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 2632[label="",style="solid", color="blue", weight=3]; 4420[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2633[label="",style="solid", color="blue", weight=3]; 4421[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2634[label="",style="solid", color="blue", weight=3]; 4422[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2635[label="",style="solid", color="blue", weight=3]; 4423[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 2636[label="",style="solid", color="blue", weight=3]; 4424[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 2637[label="",style="solid", color="blue", weight=3]; 4425[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2638[label="",style="solid", color="blue", weight=3]; 4426[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2639[label="",style="solid", color="blue", weight=3]; 4427[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2640[label="",style="solid", color="blue", weight=3]; 4428[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2641[label="",style="solid", color="blue", weight=3]; 4429[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2296 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2642[label="",style="solid", color="blue", weight=3]; 2297[label="yvy192 == yvy195",fontsize=16,color="blue",shape="box"];4430[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2643[label="",style="solid", color="blue", weight=3]; 4431[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2644[label="",style="solid", color="blue", weight=3]; 4432[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2645[label="",style="solid", color="blue", weight=3]; 4433[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2646[label="",style="solid", color="blue", weight=3]; 4434[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2647[label="",style="solid", color="blue", weight=3]; 4435[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2648[label="",style="solid", color="blue", weight=3]; 4436[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2649[label="",style="solid", color="blue", weight=3]; 4437[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2650[label="",style="solid", color="blue", weight=3]; 4438[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2651[label="",style="solid", color="blue", weight=3]; 4439[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 2652[label="",style="solid", color="blue", weight=3]; 4440[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 2653[label="",style="solid", color="blue", weight=3]; 4441[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4441[label="",style="solid", color="blue", weight=9]; 4441 -> 2654[label="",style="solid", color="blue", weight=3]; 4442[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4442[label="",style="solid", color="blue", weight=9]; 4442 -> 2655[label="",style="solid", color="blue", weight=3]; 4443[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4443[label="",style="solid", color="blue", weight=9]; 4443 -> 2656[label="",style="solid", color="blue", weight=3]; 2298 -> 72[label="",style="dashed", color="red", weight=0]; 2298[label="yvy192 < yvy195",fontsize=16,color="magenta"];2298 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2299 -> 73[label="",style="dashed", color="red", weight=0]; 2299[label="yvy192 < yvy195",fontsize=16,color="magenta"];2299 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2300 -> 74[label="",style="dashed", color="red", weight=0]; 2300[label="yvy192 < yvy195",fontsize=16,color="magenta"];2300 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2301 -> 75[label="",style="dashed", color="red", weight=0]; 2301[label="yvy192 < yvy195",fontsize=16,color="magenta"];2301 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2302 -> 76[label="",style="dashed", color="red", weight=0]; 2302[label="yvy192 < yvy195",fontsize=16,color="magenta"];2302 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2303 -> 77[label="",style="dashed", color="red", weight=0]; 2303[label="yvy192 < yvy195",fontsize=16,color="magenta"];2303 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2304 -> 78[label="",style="dashed", color="red", weight=0]; 2304[label="yvy192 < yvy195",fontsize=16,color="magenta"];2304 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2305 -> 79[label="",style="dashed", color="red", weight=0]; 2305[label="yvy192 < yvy195",fontsize=16,color="magenta"];2305 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2306 -> 80[label="",style="dashed", color="red", weight=0]; 2306[label="yvy192 < yvy195",fontsize=16,color="magenta"];2306 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2307 -> 81[label="",style="dashed", color="red", weight=0]; 2307[label="yvy192 < yvy195",fontsize=16,color="magenta"];2307 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2308 -> 82[label="",style="dashed", color="red", weight=0]; 2308[label="yvy192 < yvy195",fontsize=16,color="magenta"];2308 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2309 -> 83[label="",style="dashed", color="red", weight=0]; 2309[label="yvy192 < yvy195",fontsize=16,color="magenta"];2309 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2310 -> 84[label="",style="dashed", color="red", weight=0]; 2310[label="yvy192 < yvy195",fontsize=16,color="magenta"];2310 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2311 -> 85[label="",style="dashed", color="red", weight=0]; 2311[label="yvy192 < yvy195",fontsize=16,color="magenta"];2311 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2312[label="False || yvy294",fontsize=16,color="black",shape="box"];2312 -> 2685[label="",style="solid", color="black", weight=3]; 2313[label="True || yvy294",fontsize=16,color="black",shape="box"];2313 -> 2686[label="",style="solid", color="black", weight=3]; 2314[label="yvy191",fontsize=16,color="green",shape="box"];2315[label="yvy194",fontsize=16,color="green",shape="box"];2316[label="yvy191",fontsize=16,color="green",shape="box"];2317[label="yvy194",fontsize=16,color="green",shape="box"];2318[label="yvy191",fontsize=16,color="green",shape="box"];2319[label="yvy194",fontsize=16,color="green",shape="box"];2320[label="yvy191",fontsize=16,color="green",shape="box"];2321[label="yvy194",fontsize=16,color="green",shape="box"];2322[label="yvy191",fontsize=16,color="green",shape="box"];2323[label="yvy194",fontsize=16,color="green",shape="box"];2324[label="yvy191",fontsize=16,color="green",shape="box"];2325[label="yvy194",fontsize=16,color="green",shape="box"];2326[label="yvy191",fontsize=16,color="green",shape="box"];2327[label="yvy194",fontsize=16,color="green",shape="box"];2328[label="yvy191",fontsize=16,color="green",shape="box"];2329[label="yvy194",fontsize=16,color="green",shape="box"];2330[label="yvy191",fontsize=16,color="green",shape="box"];2331[label="yvy194",fontsize=16,color="green",shape="box"];2332[label="yvy191",fontsize=16,color="green",shape="box"];2333[label="yvy194",fontsize=16,color="green",shape="box"];2334[label="yvy191",fontsize=16,color="green",shape="box"];2335[label="yvy194",fontsize=16,color="green",shape="box"];2336[label="yvy191",fontsize=16,color="green",shape="box"];2337[label="yvy194",fontsize=16,color="green",shape="box"];2338[label="yvy191",fontsize=16,color="green",shape="box"];2339[label="yvy194",fontsize=16,color="green",shape="box"];2340[label="yvy191",fontsize=16,color="green",shape="box"];2341[label="yvy194",fontsize=16,color="green",shape="box"];2342[label="compare1 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) False",fontsize=16,color="black",shape="box"];2342 -> 2687[label="",style="solid", color="black", weight=3]; 2343[label="compare1 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) True",fontsize=16,color="black",shape="box"];2343 -> 2688[label="",style="solid", color="black", weight=3]; 2344[label="True",fontsize=16,color="green",shape="box"];2345[label="yvy4001",fontsize=16,color="green",shape="box"];2346[label="yvy3001",fontsize=16,color="green",shape="box"];2347 -> 983[label="",style="dashed", color="red", weight=0]; 2347[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2347 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2348 -> 984[label="",style="dashed", color="red", weight=0]; 2348[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2348 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2349 -> 985[label="",style="dashed", color="red", weight=0]; 2349[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2349 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2350 -> 986[label="",style="dashed", color="red", weight=0]; 2350[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2350 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2351 -> 987[label="",style="dashed", color="red", weight=0]; 2351[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2351 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2352 -> 988[label="",style="dashed", color="red", weight=0]; 2352[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2352 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2353 -> 989[label="",style="dashed", color="red", weight=0]; 2353[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2353 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2354 -> 990[label="",style="dashed", color="red", weight=0]; 2354[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2354 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2355 -> 991[label="",style="dashed", color="red", weight=0]; 2355[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2355 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2356 -> 992[label="",style="dashed", color="red", weight=0]; 2356[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2356 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2357 -> 993[label="",style="dashed", color="red", weight=0]; 2357[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2357 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2358 -> 994[label="",style="dashed", color="red", weight=0]; 2358[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2358 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2359 -> 995[label="",style="dashed", color="red", weight=0]; 2359[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2359 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2360 -> 996[label="",style="dashed", color="red", weight=0]; 2360[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2360 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2361[label="yvy4002 == yvy3002",fontsize=16,color="blue",shape="box"];4444[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4444[label="",style="solid", color="blue", weight=9]; 4444 -> 2717[label="",style="solid", color="blue", weight=3]; 4445[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 2718[label="",style="solid", color="blue", weight=3]; 4446[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 2719[label="",style="solid", color="blue", weight=3]; 4447[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 2720[label="",style="solid", color="blue", weight=3]; 4448[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 2721[label="",style="solid", color="blue", weight=3]; 4449[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 2722[label="",style="solid", color="blue", weight=3]; 4450[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 2723[label="",style="solid", color="blue", weight=3]; 4451[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 2724[label="",style="solid", color="blue", weight=3]; 4452[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 2725[label="",style="solid", color="blue", weight=3]; 4453[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 2726[label="",style="solid", color="blue", weight=3]; 4454[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 2727[label="",style="solid", color="blue", weight=3]; 4455[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 2728[label="",style="solid", color="blue", weight=3]; 4456[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 2729[label="",style="solid", color="blue", weight=3]; 4457[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 2730[label="",style="solid", color="blue", weight=3]; 2362[label="yvy4001 == yvy3001",fontsize=16,color="blue",shape="box"];4458[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 2731[label="",style="solid", color="blue", weight=3]; 4459[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 2732[label="",style="solid", color="blue", weight=3]; 4460[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 2733[label="",style="solid", color="blue", weight=3]; 4461[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4461[label="",style="solid", color="blue", weight=9]; 4461 -> 2734[label="",style="solid", color="blue", weight=3]; 4462[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 2735[label="",style="solid", color="blue", weight=3]; 4463[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 2736[label="",style="solid", color="blue", weight=3]; 4464[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 2737[label="",style="solid", color="blue", weight=3]; 4465[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4465[label="",style="solid", color="blue", weight=9]; 4465 -> 2738[label="",style="solid", color="blue", weight=3]; 4466[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4466[label="",style="solid", color="blue", weight=9]; 4466 -> 2739[label="",style="solid", color="blue", weight=3]; 4467[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4467[label="",style="solid", color="blue", weight=9]; 4467 -> 2740[label="",style="solid", color="blue", weight=3]; 4468[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4468[label="",style="solid", color="blue", weight=9]; 4468 -> 2741[label="",style="solid", color="blue", weight=3]; 4469[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4469[label="",style="solid", color="blue", weight=9]; 4469 -> 2742[label="",style="solid", color="blue", weight=3]; 4470[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4470[label="",style="solid", color="blue", weight=9]; 4470 -> 2743[label="",style="solid", color="blue", weight=3]; 4471[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4471[label="",style="solid", color="blue", weight=9]; 4471 -> 2744[label="",style="solid", color="blue", weight=3]; 2363 -> 983[label="",style="dashed", color="red", weight=0]; 2363[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2363 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2364 -> 984[label="",style="dashed", color="red", weight=0]; 2364[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2364 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2365 -> 985[label="",style="dashed", color="red", weight=0]; 2365[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2365 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2366 -> 986[label="",style="dashed", color="red", weight=0]; 2366[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2366 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2367 -> 987[label="",style="dashed", color="red", weight=0]; 2367[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2367 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2368 -> 988[label="",style="dashed", color="red", weight=0]; 2368[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2368 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2369 -> 989[label="",style="dashed", color="red", weight=0]; 2369[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2369 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2370 -> 990[label="",style="dashed", color="red", weight=0]; 2370[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2370 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2371 -> 991[label="",style="dashed", color="red", weight=0]; 2371[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2371 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2372 -> 992[label="",style="dashed", color="red", weight=0]; 2372[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2372 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2372 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2373 -> 993[label="",style="dashed", color="red", weight=0]; 2373[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2373 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2374 -> 994[label="",style="dashed", color="red", weight=0]; 2374[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2374 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2375 -> 995[label="",style="dashed", color="red", weight=0]; 2375[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2375 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2376 -> 996[label="",style="dashed", color="red", weight=0]; 2376[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2376 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2377 -> 983[label="",style="dashed", color="red", weight=0]; 2377[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2377 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2378 -> 984[label="",style="dashed", color="red", weight=0]; 2378[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2378 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2379 -> 985[label="",style="dashed", color="red", weight=0]; 2379[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2379 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2379 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2380 -> 986[label="",style="dashed", color="red", weight=0]; 2380[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2380 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2381 -> 987[label="",style="dashed", color="red", weight=0]; 2381[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2381 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2382 -> 988[label="",style="dashed", color="red", weight=0]; 2382[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2382 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2383 -> 989[label="",style="dashed", color="red", weight=0]; 2383[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2383 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2384 -> 990[label="",style="dashed", color="red", weight=0]; 2384[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2384 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2385 -> 991[label="",style="dashed", color="red", weight=0]; 2385[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2385 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2386 -> 992[label="",style="dashed", color="red", weight=0]; 2386[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2386 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2387 -> 993[label="",style="dashed", color="red", weight=0]; 2387[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2387 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2387 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2388 -> 994[label="",style="dashed", color="red", weight=0]; 2388[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2388 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2389 -> 995[label="",style="dashed", color="red", weight=0]; 2389[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2389 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2390 -> 996[label="",style="dashed", color="red", weight=0]; 2390[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2390 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2390 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2391 -> 983[label="",style="dashed", color="red", weight=0]; 2391[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2391 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2392 -> 984[label="",style="dashed", color="red", weight=0]; 2392[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2392 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2393 -> 985[label="",style="dashed", color="red", weight=0]; 2393[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2393 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2394 -> 986[label="",style="dashed", color="red", weight=0]; 2394[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2394 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2395 -> 987[label="",style="dashed", color="red", weight=0]; 2395[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2395 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2396 -> 988[label="",style="dashed", color="red", weight=0]; 2396[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2396 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2396 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2397 -> 989[label="",style="dashed", color="red", weight=0]; 2397[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2397 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2398 -> 990[label="",style="dashed", color="red", weight=0]; 2398[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2398 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2398 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2399 -> 991[label="",style="dashed", color="red", weight=0]; 2399[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2399 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2399 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2400 -> 992[label="",style="dashed", color="red", weight=0]; 2400[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2400 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2400 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2401 -> 993[label="",style="dashed", color="red", weight=0]; 2401[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2401 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2401 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2402 -> 994[label="",style="dashed", color="red", weight=0]; 2402[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2402 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2403 -> 995[label="",style="dashed", color="red", weight=0]; 2403[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2403 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2404 -> 996[label="",style="dashed", color="red", weight=0]; 2404[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2404 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2405 -> 772[label="",style="dashed", color="red", weight=0]; 2405[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];2405 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2406 -> 772[label="",style="dashed", color="red", weight=0]; 2406[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];2406 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2407[label="primEqNat (Succ yvy40000) yvy3000",fontsize=16,color="burlywood",shape="box"];4472[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 2833[label="",style="solid", color="burlywood", weight=3]; 4473[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2407 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 2834[label="",style="solid", color="burlywood", weight=3]; 2408[label="primEqNat Zero yvy3000",fontsize=16,color="burlywood",shape="box"];4474[label="yvy3000/Succ yvy30000",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 2835[label="",style="solid", color="burlywood", weight=3]; 4475[label="yvy3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2408 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 2836[label="",style="solid", color="burlywood", weight=3]; 2409[label="yvy4000",fontsize=16,color="green",shape="box"];2410[label="yvy3000",fontsize=16,color="green",shape="box"];2411[label="yvy4000",fontsize=16,color="green",shape="box"];2412[label="yvy3000",fontsize=16,color="green",shape="box"];2413[label="yvy4000",fontsize=16,color="green",shape="box"];2414[label="yvy3000",fontsize=16,color="green",shape="box"];2415[label="yvy4000",fontsize=16,color="green",shape="box"];2416[label="yvy3000",fontsize=16,color="green",shape="box"];2417[label="yvy4000",fontsize=16,color="green",shape="box"];2418[label="yvy3000",fontsize=16,color="green",shape="box"];2419[label="yvy4000",fontsize=16,color="green",shape="box"];2420[label="yvy3000",fontsize=16,color="green",shape="box"];2421[label="yvy4000",fontsize=16,color="green",shape="box"];2422[label="yvy3000",fontsize=16,color="green",shape="box"];2423[label="yvy4000",fontsize=16,color="green",shape="box"];2424[label="yvy3000",fontsize=16,color="green",shape="box"];2425[label="yvy4000",fontsize=16,color="green",shape="box"];2426[label="yvy3000",fontsize=16,color="green",shape="box"];2427[label="yvy4000",fontsize=16,color="green",shape="box"];2428[label="yvy3000",fontsize=16,color="green",shape="box"];2429[label="yvy4000",fontsize=16,color="green",shape="box"];2430[label="yvy3000",fontsize=16,color="green",shape="box"];2431[label="yvy4000",fontsize=16,color="green",shape="box"];2432[label="yvy3000",fontsize=16,color="green",shape="box"];2433[label="yvy4000",fontsize=16,color="green",shape="box"];2434[label="yvy3000",fontsize=16,color="green",shape="box"];2435[label="yvy4000",fontsize=16,color="green",shape="box"];2436[label="yvy3000",fontsize=16,color="green",shape="box"];2437[label="yvy4000",fontsize=16,color="green",shape="box"];2438[label="yvy3000",fontsize=16,color="green",shape="box"];2439[label="yvy4000",fontsize=16,color="green",shape="box"];2440[label="yvy3000",fontsize=16,color="green",shape="box"];2441[label="yvy4000",fontsize=16,color="green",shape="box"];2442[label="yvy3000",fontsize=16,color="green",shape="box"];2443[label="yvy4000",fontsize=16,color="green",shape="box"];2444[label="yvy3000",fontsize=16,color="green",shape="box"];2445[label="yvy4000",fontsize=16,color="green",shape="box"];2446[label="yvy3000",fontsize=16,color="green",shape="box"];2447[label="yvy4000",fontsize=16,color="green",shape="box"];2448[label="yvy3000",fontsize=16,color="green",shape="box"];2449[label="yvy4000",fontsize=16,color="green",shape="box"];2450[label="yvy3000",fontsize=16,color="green",shape="box"];2451[label="yvy4000",fontsize=16,color="green",shape="box"];2452[label="yvy3000",fontsize=16,color="green",shape="box"];2453[label="yvy4000",fontsize=16,color="green",shape="box"];2454[label="yvy3000",fontsize=16,color="green",shape="box"];2455[label="yvy4000",fontsize=16,color="green",shape="box"];2456[label="yvy3000",fontsize=16,color="green",shape="box"];2457[label="yvy4000",fontsize=16,color="green",shape="box"];2458[label="yvy3000",fontsize=16,color="green",shape="box"];2459[label="yvy4000",fontsize=16,color="green",shape="box"];2460[label="yvy3000",fontsize=16,color="green",shape="box"];2461[label="yvy4000",fontsize=16,color="green",shape="box"];2462[label="yvy3000",fontsize=16,color="green",shape="box"];2463[label="yvy4000",fontsize=16,color="green",shape="box"];2464[label="yvy3000",fontsize=16,color="green",shape="box"];2465[label="yvy4000",fontsize=16,color="green",shape="box"];2466[label="yvy3000",fontsize=16,color="green",shape="box"];2467[label="yvy4000",fontsize=16,color="green",shape="box"];2468[label="yvy3000",fontsize=16,color="green",shape="box"];2469[label="yvy4000",fontsize=16,color="green",shape="box"];2470[label="yvy3000",fontsize=16,color="green",shape="box"];2471[label="yvy4000",fontsize=16,color="green",shape="box"];2472[label="yvy3000",fontsize=16,color="green",shape="box"];2473[label="yvy4000",fontsize=16,color="green",shape="box"];2474[label="yvy3000",fontsize=16,color="green",shape="box"];2475[label="yvy4000",fontsize=16,color="green",shape="box"];2476[label="yvy3000",fontsize=16,color="green",shape="box"];2477[label="yvy4000",fontsize=16,color="green",shape="box"];2478[label="yvy3000",fontsize=16,color="green",shape="box"];2479[label="yvy4000",fontsize=16,color="green",shape="box"];2480[label="yvy3000",fontsize=16,color="green",shape="box"];2481[label="yvy4000",fontsize=16,color="green",shape="box"];2482[label="yvy3000",fontsize=16,color="green",shape="box"];2483[label="yvy4000",fontsize=16,color="green",shape="box"];2484[label="yvy3000",fontsize=16,color="green",shape="box"];2485[label="yvy4000",fontsize=16,color="green",shape="box"];2486[label="yvy3000",fontsize=16,color="green",shape="box"];2487[label="yvy4000",fontsize=16,color="green",shape="box"];2488[label="yvy3000",fontsize=16,color="green",shape="box"];2489[label="yvy4000",fontsize=16,color="green",shape="box"];2490[label="yvy3000",fontsize=16,color="green",shape="box"];2491[label="yvy4000",fontsize=16,color="green",shape="box"];2492[label="yvy3000",fontsize=16,color="green",shape="box"];2493 -> 772[label="",style="dashed", color="red", weight=0]; 2493[label="yvy4000 * yvy3001",fontsize=16,color="magenta"];2493 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2494 -> 772[label="",style="dashed", color="red", weight=0]; 2494[label="yvy4001 * yvy3000",fontsize=16,color="magenta"];2494 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2495[label="primEqInt (Pos (Succ yvy40000)) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];2495 -> 2841[label="",style="solid", color="black", weight=3]; 2496[label="primEqInt (Pos (Succ yvy40000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2496 -> 2842[label="",style="solid", color="black", weight=3]; 2497[label="False",fontsize=16,color="green",shape="box"];2498[label="primEqInt (Pos Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];2498 -> 2843[label="",style="solid", color="black", weight=3]; 2499[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2499 -> 2844[label="",style="solid", color="black", weight=3]; 2500[label="primEqInt (Pos Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];2500 -> 2845[label="",style="solid", color="black", weight=3]; 2501[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2501 -> 2846[label="",style="solid", color="black", weight=3]; 2502[label="False",fontsize=16,color="green",shape="box"];2503[label="primEqInt (Neg (Succ yvy40000)) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];2503 -> 2847[label="",style="solid", color="black", weight=3]; 2504[label="primEqInt (Neg (Succ yvy40000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2504 -> 2848[label="",style="solid", color="black", weight=3]; 2505[label="primEqInt (Neg Zero) (Pos (Succ yvy30000))",fontsize=16,color="black",shape="box"];2505 -> 2849[label="",style="solid", color="black", weight=3]; 2506[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2506 -> 2850[label="",style="solid", color="black", weight=3]; 2507[label="primEqInt (Neg Zero) (Neg (Succ yvy30000))",fontsize=16,color="black",shape="box"];2507 -> 2851[label="",style="solid", color="black", weight=3]; 2508[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2508 -> 2852[label="",style="solid", color="black", weight=3]; 2509 -> 992[label="",style="dashed", color="red", weight=0]; 2509[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2509 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2510 -> 996[label="",style="dashed", color="red", weight=0]; 2510[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2510 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2511 -> 992[label="",style="dashed", color="red", weight=0]; 2511[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2511 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2512 -> 996[label="",style="dashed", color="red", weight=0]; 2512[label="yvy4000 == yvy3000",fontsize=16,color="magenta"];2512 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2514 -> 452[label="",style="dashed", color="red", weight=0]; 2514[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2514 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2513[label="yvy295 /= GT",fontsize=16,color="black",shape="triangle"];2513 -> 2863[label="",style="solid", color="black", weight=3]; 2522[label="False <= False",fontsize=16,color="black",shape="box"];2522 -> 2878[label="",style="solid", color="black", weight=3]; 2523[label="False <= True",fontsize=16,color="black",shape="box"];2523 -> 2879[label="",style="solid", color="black", weight=3]; 2524[label="True <= False",fontsize=16,color="black",shape="box"];2524 -> 2880[label="",style="solid", color="black", weight=3]; 2525[label="True <= True",fontsize=16,color="black",shape="box"];2525 -> 2881[label="",style="solid", color="black", weight=3]; 2515 -> 454[label="",style="dashed", color="red", weight=0]; 2515[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2515 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2516 -> 455[label="",style="dashed", color="red", weight=0]; 2516[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2516 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2517 -> 456[label="",style="dashed", color="red", weight=0]; 2517[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2517 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2518 -> 457[label="",style="dashed", color="red", weight=0]; 2518[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2518 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2519 -> 458[label="",style="dashed", color="red", weight=0]; 2519[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2519 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2526[label="(yvy1530,yvy1531,yvy1532) <= (yvy1540,yvy1541,yvy1542)",fontsize=16,color="black",shape="box"];2526 -> 2882[label="",style="solid", color="black", weight=3]; 2527[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2527 -> 2883[label="",style="solid", color="black", weight=3]; 2528[label="Nothing <= Just yvy1540",fontsize=16,color="black",shape="box"];2528 -> 2884[label="",style="solid", color="black", weight=3]; 2529[label="Just yvy1530 <= Nothing",fontsize=16,color="black",shape="box"];2529 -> 2885[label="",style="solid", color="black", weight=3]; 2530[label="Just yvy1530 <= Just yvy1540",fontsize=16,color="black",shape="box"];2530 -> 2886[label="",style="solid", color="black", weight=3]; 2531[label="LT <= LT",fontsize=16,color="black",shape="box"];2531 -> 2887[label="",style="solid", color="black", weight=3]; 2532[label="LT <= EQ",fontsize=16,color="black",shape="box"];2532 -> 2888[label="",style="solid", color="black", weight=3]; 2533[label="LT <= GT",fontsize=16,color="black",shape="box"];2533 -> 2889[label="",style="solid", color="black", weight=3]; 2534[label="EQ <= LT",fontsize=16,color="black",shape="box"];2534 -> 2890[label="",style="solid", color="black", weight=3]; 2535[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2535 -> 2891[label="",style="solid", color="black", weight=3]; 2536[label="EQ <= GT",fontsize=16,color="black",shape="box"];2536 -> 2892[label="",style="solid", color="black", weight=3]; 2537[label="GT <= LT",fontsize=16,color="black",shape="box"];2537 -> 2893[label="",style="solid", color="black", weight=3]; 2538[label="GT <= EQ",fontsize=16,color="black",shape="box"];2538 -> 2894[label="",style="solid", color="black", weight=3]; 2539[label="GT <= GT",fontsize=16,color="black",shape="box"];2539 -> 2895[label="",style="solid", color="black", weight=3]; 2520 -> 462[label="",style="dashed", color="red", weight=0]; 2520[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2520 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2521 -> 463[label="",style="dashed", color="red", weight=0]; 2521[label="compare yvy153 yvy154",fontsize=16,color="magenta"];2521 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2540[label="Left yvy1530 <= Left yvy1540",fontsize=16,color="black",shape="box"];2540 -> 2896[label="",style="solid", color="black", weight=3]; 2541[label="Left yvy1530 <= Right yvy1540",fontsize=16,color="black",shape="box"];2541 -> 2897[label="",style="solid", color="black", weight=3]; 2542[label="Right yvy1530 <= Left yvy1540",fontsize=16,color="black",shape="box"];2542 -> 2898[label="",style="solid", color="black", weight=3]; 2543[label="Right yvy1530 <= Right yvy1540",fontsize=16,color="black",shape="box"];2543 -> 2899[label="",style="solid", color="black", weight=3]; 2544[label="(yvy1530,yvy1531) <= (yvy1540,yvy1541)",fontsize=16,color="black",shape="box"];2544 -> 2900[label="",style="solid", color="black", weight=3]; 2545[label="GT",fontsize=16,color="green",shape="box"];2546[label="GT",fontsize=16,color="green",shape="box"];2547[label="GT",fontsize=16,color="green",shape="box"];2548[label="yvy205",fontsize=16,color="green",shape="box"];2549[label="yvy207",fontsize=16,color="green",shape="box"];2550[label="yvy205",fontsize=16,color="green",shape="box"];2551[label="yvy207",fontsize=16,color="green",shape="box"];2552[label="yvy205",fontsize=16,color="green",shape="box"];2553[label="yvy207",fontsize=16,color="green",shape="box"];2554[label="yvy205",fontsize=16,color="green",shape="box"];2555[label="yvy207",fontsize=16,color="green",shape="box"];2556[label="yvy205",fontsize=16,color="green",shape="box"];2557[label="yvy207",fontsize=16,color="green",shape="box"];2558[label="yvy205",fontsize=16,color="green",shape="box"];2559[label="yvy207",fontsize=16,color="green",shape="box"];2560[label="yvy205",fontsize=16,color="green",shape="box"];2561[label="yvy207",fontsize=16,color="green",shape="box"];2562[label="yvy205",fontsize=16,color="green",shape="box"];2563[label="yvy207",fontsize=16,color="green",shape="box"];2564[label="yvy205",fontsize=16,color="green",shape="box"];2565[label="yvy207",fontsize=16,color="green",shape="box"];2566[label="yvy205",fontsize=16,color="green",shape="box"];2567[label="yvy207",fontsize=16,color="green",shape="box"];2568[label="yvy205",fontsize=16,color="green",shape="box"];2569[label="yvy207",fontsize=16,color="green",shape="box"];2570[label="yvy205",fontsize=16,color="green",shape="box"];2571[label="yvy207",fontsize=16,color="green",shape="box"];2572[label="yvy205",fontsize=16,color="green",shape="box"];2573[label="yvy207",fontsize=16,color="green",shape="box"];2574[label="yvy205",fontsize=16,color="green",shape="box"];2575[label="yvy207",fontsize=16,color="green",shape="box"];2576[label="yvy204",fontsize=16,color="green",shape="box"];2577[label="yvy206",fontsize=16,color="green",shape="box"];2578[label="yvy204",fontsize=16,color="green",shape="box"];2579[label="yvy206",fontsize=16,color="green",shape="box"];2580[label="yvy204",fontsize=16,color="green",shape="box"];2581[label="yvy206",fontsize=16,color="green",shape="box"];2582[label="yvy204",fontsize=16,color="green",shape="box"];2583[label="yvy206",fontsize=16,color="green",shape="box"];2584[label="yvy204",fontsize=16,color="green",shape="box"];2585[label="yvy206",fontsize=16,color="green",shape="box"];2586[label="yvy204",fontsize=16,color="green",shape="box"];2587[label="yvy206",fontsize=16,color="green",shape="box"];2588[label="yvy204",fontsize=16,color="green",shape="box"];2589[label="yvy206",fontsize=16,color="green",shape="box"];2590[label="yvy204",fontsize=16,color="green",shape="box"];2591[label="yvy206",fontsize=16,color="green",shape="box"];2592[label="yvy204",fontsize=16,color="green",shape="box"];2593[label="yvy206",fontsize=16,color="green",shape="box"];2594[label="yvy204",fontsize=16,color="green",shape="box"];2595[label="yvy206",fontsize=16,color="green",shape="box"];2596[label="yvy204",fontsize=16,color="green",shape="box"];2597[label="yvy206",fontsize=16,color="green",shape="box"];2598[label="yvy204",fontsize=16,color="green",shape="box"];2599[label="yvy206",fontsize=16,color="green",shape="box"];2600[label="yvy204",fontsize=16,color="green",shape="box"];2601[label="yvy206",fontsize=16,color="green",shape="box"];2602[label="yvy204",fontsize=16,color="green",shape="box"];2603[label="yvy206",fontsize=16,color="green",shape="box"];2604[label="compare1 (yvy278,yvy279) (yvy280,yvy281) False",fontsize=16,color="black",shape="box"];2604 -> 2901[label="",style="solid", color="black", weight=3]; 2605[label="compare1 (yvy278,yvy279) (yvy280,yvy281) True",fontsize=16,color="black",shape="box"];2605 -> 2902[label="",style="solid", color="black", weight=3]; 2606[label="True",fontsize=16,color="green",shape="box"];2607[label="Succ yvy9500",fontsize=16,color="green",shape="box"];2608 -> 1867[label="",style="dashed", color="red", weight=0]; 2608[label="primPlusNat (primPlusNat (primPlusNat yvy284 (Succ yvy9500)) (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="magenta"];2608 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2609[label="FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128",fontsize=16,color="green",shape="box"];2610[label="FiniteMap.mkBranchLeft_size (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123) yvy117 (FiniteMap.Branch yvy124 yvy125 yvy126 yvy127 yvy128)",fontsize=16,color="black",shape="box"];2610 -> 2905[label="",style="solid", color="black", weight=3]; 2611[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2612[label="Succ (Succ (primPlusNat yvy90200 yvy21700))",fontsize=16,color="green",shape="box"];2612 -> 2906[label="",style="dashed", color="green", weight=3]; 2613[label="Succ yvy90200",fontsize=16,color="green",shape="box"];2614[label="Succ yvy21700",fontsize=16,color="green",shape="box"];2615[label="Zero",fontsize=16,color="green",shape="box"];2616[label="yvy21700",fontsize=16,color="green",shape="box"];2617[label="yvy90200",fontsize=16,color="green",shape="box"];2618[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) yvy50 yvy51 yvy90 yvy54",fontsize=16,color="black",shape="box"];2618 -> 2907[label="",style="solid", color="black", weight=3]; 2619[label="error []",fontsize=16,color="red",shape="box"];2620[label="FiniteMap.mkBalBranch6MkBalBranch12 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904)",fontsize=16,color="black",shape="box"];2620 -> 2908[label="",style="solid", color="black", weight=3]; 2621 -> 1327[label="",style="dashed", color="red", weight=0]; 2621[label="FiniteMap.sizeFM yvy543",fontsize=16,color="magenta"];2621 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2622 -> 772[label="",style="dashed", color="red", weight=0]; 2622[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];2622 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2623[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 False",fontsize=16,color="black",shape="box"];2623 -> 2912[label="",style="solid", color="black", weight=3]; 2624[label="FiniteMap.mkBalBranch6MkBalBranch01 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];2624 -> 2913[label="",style="solid", color="black", weight=3]; 2625[label="FiniteMap.mkBranchLeft_size yvy90 yvy50 yvy54",fontsize=16,color="black",shape="box"];2625 -> 2914[label="",style="solid", color="black", weight=3]; 2626[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2627[label="Succ yvy30100",fontsize=16,color="green",shape="box"];2628 -> 1500[label="",style="dashed", color="red", weight=0]; 2628[label="primMulNat yvy40000 (Succ yvy30100)",fontsize=16,color="magenta"];2628 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2629 -> 1923[label="",style="dashed", color="red", weight=0]; 2629[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2629 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2630 -> 1924[label="",style="dashed", color="red", weight=0]; 2630[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2630 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2631 -> 1925[label="",style="dashed", color="red", weight=0]; 2631[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2631 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2632 -> 1926[label="",style="dashed", color="red", weight=0]; 2632[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2632 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2633 -> 1927[label="",style="dashed", color="red", weight=0]; 2633[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2633 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2634 -> 1928[label="",style="dashed", color="red", weight=0]; 2634[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2634 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2635 -> 1929[label="",style="dashed", color="red", weight=0]; 2635[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2635 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2636 -> 1930[label="",style="dashed", color="red", weight=0]; 2636[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2636 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2637 -> 1931[label="",style="dashed", color="red", weight=0]; 2637[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2637 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2638 -> 1932[label="",style="dashed", color="red", weight=0]; 2638[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2638 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2639 -> 1933[label="",style="dashed", color="red", weight=0]; 2639[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2639 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2640 -> 1934[label="",style="dashed", color="red", weight=0]; 2640[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2640 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2641 -> 1935[label="",style="dashed", color="red", weight=0]; 2641[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2641 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2642 -> 1936[label="",style="dashed", color="red", weight=0]; 2642[label="yvy193 <= yvy196",fontsize=16,color="magenta"];2642 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2643 -> 995[label="",style="dashed", color="red", weight=0]; 2643[label="yvy192 == yvy195",fontsize=16,color="magenta"];2643 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2644 -> 985[label="",style="dashed", color="red", weight=0]; 2644[label="yvy192 == yvy195",fontsize=16,color="magenta"];2644 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2645 -> 992[label="",style="dashed", color="red", weight=0]; 2645[label="yvy192 == yvy195",fontsize=16,color="magenta"];2645 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2646 -> 996[label="",style="dashed", color="red", weight=0]; 2646[label="yvy192 == yvy195",fontsize=16,color="magenta"];2646 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2646 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2647 -> 994[label="",style="dashed", color="red", weight=0]; 2647[label="yvy192 == yvy195",fontsize=16,color="magenta"];2647 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2648 -> 991[label="",style="dashed", color="red", weight=0]; 2648[label="yvy192 == yvy195",fontsize=16,color="magenta"];2648 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2649 -> 983[label="",style="dashed", color="red", weight=0]; 2649[label="yvy192 == yvy195",fontsize=16,color="magenta"];2649 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2650 -> 984[label="",style="dashed", color="red", weight=0]; 2650[label="yvy192 == yvy195",fontsize=16,color="magenta"];2650 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2651 -> 990[label="",style="dashed", color="red", weight=0]; 2651[label="yvy192 == yvy195",fontsize=16,color="magenta"];2651 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2652 -> 993[label="",style="dashed", color="red", weight=0]; 2652[label="yvy192 == yvy195",fontsize=16,color="magenta"];2652 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2653 -> 988[label="",style="dashed", color="red", weight=0]; 2653[label="yvy192 == yvy195",fontsize=16,color="magenta"];2653 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2654 -> 987[label="",style="dashed", color="red", weight=0]; 2654[label="yvy192 == yvy195",fontsize=16,color="magenta"];2654 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2655 -> 989[label="",style="dashed", color="red", weight=0]; 2655[label="yvy192 == yvy195",fontsize=16,color="magenta"];2655 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2655 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2656 -> 986[label="",style="dashed", color="red", weight=0]; 2656[label="yvy192 == yvy195",fontsize=16,color="magenta"];2656 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2657[label="yvy192",fontsize=16,color="green",shape="box"];2658[label="yvy195",fontsize=16,color="green",shape="box"];2659[label="yvy192",fontsize=16,color="green",shape="box"];2660[label="yvy195",fontsize=16,color="green",shape="box"];2661[label="yvy192",fontsize=16,color="green",shape="box"];2662[label="yvy195",fontsize=16,color="green",shape="box"];2663[label="yvy192",fontsize=16,color="green",shape="box"];2664[label="yvy195",fontsize=16,color="green",shape="box"];2665[label="yvy192",fontsize=16,color="green",shape="box"];2666[label="yvy195",fontsize=16,color="green",shape="box"];2667[label="yvy192",fontsize=16,color="green",shape="box"];2668[label="yvy195",fontsize=16,color="green",shape="box"];2669[label="yvy192",fontsize=16,color="green",shape="box"];2670[label="yvy195",fontsize=16,color="green",shape="box"];2671[label="yvy192",fontsize=16,color="green",shape="box"];2672[label="yvy195",fontsize=16,color="green",shape="box"];2673[label="yvy192",fontsize=16,color="green",shape="box"];2674[label="yvy195",fontsize=16,color="green",shape="box"];2675[label="yvy192",fontsize=16,color="green",shape="box"];2676[label="yvy195",fontsize=16,color="green",shape="box"];2677[label="yvy192",fontsize=16,color="green",shape="box"];2678[label="yvy195",fontsize=16,color="green",shape="box"];2679[label="yvy192",fontsize=16,color="green",shape="box"];2680[label="yvy195",fontsize=16,color="green",shape="box"];2681[label="yvy192",fontsize=16,color="green",shape="box"];2682[label="yvy195",fontsize=16,color="green",shape="box"];2683[label="yvy192",fontsize=16,color="green",shape="box"];2684[label="yvy195",fontsize=16,color="green",shape="box"];2685[label="yvy294",fontsize=16,color="green",shape="box"];2686[label="True",fontsize=16,color="green",shape="box"];2687[label="compare0 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) otherwise",fontsize=16,color="black",shape="box"];2687 -> 2973[label="",style="solid", color="black", weight=3]; 2688[label="LT",fontsize=16,color="green",shape="box"];2689[label="yvy4000",fontsize=16,color="green",shape="box"];2690[label="yvy3000",fontsize=16,color="green",shape="box"];2691[label="yvy4000",fontsize=16,color="green",shape="box"];2692[label="yvy3000",fontsize=16,color="green",shape="box"];2693[label="yvy4000",fontsize=16,color="green",shape="box"];2694[label="yvy3000",fontsize=16,color="green",shape="box"];2695[label="yvy4000",fontsize=16,color="green",shape="box"];2696[label="yvy3000",fontsize=16,color="green",shape="box"];2697[label="yvy4000",fontsize=16,color="green",shape="box"];2698[label="yvy3000",fontsize=16,color="green",shape="box"];2699[label="yvy4000",fontsize=16,color="green",shape="box"];2700[label="yvy3000",fontsize=16,color="green",shape="box"];2701[label="yvy4000",fontsize=16,color="green",shape="box"];2702[label="yvy3000",fontsize=16,color="green",shape="box"];2703[label="yvy4000",fontsize=16,color="green",shape="box"];2704[label="yvy3000",fontsize=16,color="green",shape="box"];2705[label="yvy4000",fontsize=16,color="green",shape="box"];2706[label="yvy3000",fontsize=16,color="green",shape="box"];2707[label="yvy4000",fontsize=16,color="green",shape="box"];2708[label="yvy3000",fontsize=16,color="green",shape="box"];2709[label="yvy4000",fontsize=16,color="green",shape="box"];2710[label="yvy3000",fontsize=16,color="green",shape="box"];2711[label="yvy4000",fontsize=16,color="green",shape="box"];2712[label="yvy3000",fontsize=16,color="green",shape="box"];2713[label="yvy4000",fontsize=16,color="green",shape="box"];2714[label="yvy3000",fontsize=16,color="green",shape="box"];2715[label="yvy4000",fontsize=16,color="green",shape="box"];2716[label="yvy3000",fontsize=16,color="green",shape="box"];2717 -> 983[label="",style="dashed", color="red", weight=0]; 2717[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2717 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2718 -> 984[label="",style="dashed", color="red", weight=0]; 2718[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2718 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2719 -> 985[label="",style="dashed", color="red", weight=0]; 2719[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2719 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2720 -> 986[label="",style="dashed", color="red", weight=0]; 2720[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2720 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2721 -> 987[label="",style="dashed", color="red", weight=0]; 2721[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2721 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2722 -> 988[label="",style="dashed", color="red", weight=0]; 2722[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2722 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2723 -> 989[label="",style="dashed", color="red", weight=0]; 2723[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2723 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2724 -> 990[label="",style="dashed", color="red", weight=0]; 2724[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2724 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2725 -> 991[label="",style="dashed", color="red", weight=0]; 2725[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2725 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2726 -> 992[label="",style="dashed", color="red", weight=0]; 2726[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2726 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2727 -> 993[label="",style="dashed", color="red", weight=0]; 2727[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2727 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2728 -> 994[label="",style="dashed", color="red", weight=0]; 2728[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2728 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2729 -> 995[label="",style="dashed", color="red", weight=0]; 2729[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2729 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2730 -> 996[label="",style="dashed", color="red", weight=0]; 2730[label="yvy4002 == yvy3002",fontsize=16,color="magenta"];2730 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2730 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2731 -> 983[label="",style="dashed", color="red", weight=0]; 2731[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2731 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2731 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2732 -> 984[label="",style="dashed", color="red", weight=0]; 2732[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2732 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2732 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2733 -> 985[label="",style="dashed", color="red", weight=0]; 2733[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2733 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2733 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2734 -> 986[label="",style="dashed", color="red", weight=0]; 2734[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2734 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2734 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2735 -> 987[label="",style="dashed", color="red", weight=0]; 2735[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2735 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2735 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2736 -> 988[label="",style="dashed", color="red", weight=0]; 2736[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2736 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2736 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2737 -> 989[label="",style="dashed", color="red", weight=0]; 2737[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2737 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2737 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2738 -> 990[label="",style="dashed", color="red", weight=0]; 2738[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2738 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2738 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2739 -> 991[label="",style="dashed", color="red", weight=0]; 2739[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2739 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2739 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2740 -> 992[label="",style="dashed", color="red", weight=0]; 2740[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2740 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2740 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2741 -> 993[label="",style="dashed", color="red", weight=0]; 2741[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2741 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2742 -> 994[label="",style="dashed", color="red", weight=0]; 2742[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2742 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2742 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2743 -> 995[label="",style="dashed", color="red", weight=0]; 2743[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2743 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2743 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2744 -> 996[label="",style="dashed", color="red", weight=0]; 2744[label="yvy4001 == yvy3001",fontsize=16,color="magenta"];2744 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2744 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2745[label="yvy4000",fontsize=16,color="green",shape="box"];2746[label="yvy3000",fontsize=16,color="green",shape="box"];2747[label="yvy4000",fontsize=16,color="green",shape="box"];2748[label="yvy3000",fontsize=16,color="green",shape="box"];2749[label="yvy4000",fontsize=16,color="green",shape="box"];2750[label="yvy3000",fontsize=16,color="green",shape="box"];2751[label="yvy4000",fontsize=16,color="green",shape="box"];2752[label="yvy3000",fontsize=16,color="green",shape="box"];2753[label="yvy4000",fontsize=16,color="green",shape="box"];2754[label="yvy3000",fontsize=16,color="green",shape="box"];2755[label="yvy4000",fontsize=16,color="green",shape="box"];2756[label="yvy3000",fontsize=16,color="green",shape="box"];2757[label="yvy4000",fontsize=16,color="green",shape="box"];2758[label="yvy3000",fontsize=16,color="green",shape="box"];2759[label="yvy4000",fontsize=16,color="green",shape="box"];2760[label="yvy3000",fontsize=16,color="green",shape="box"];2761[label="yvy4000",fontsize=16,color="green",shape="box"];2762[label="yvy3000",fontsize=16,color="green",shape="box"];2763[label="yvy4000",fontsize=16,color="green",shape="box"];2764[label="yvy3000",fontsize=16,color="green",shape="box"];2765[label="yvy4000",fontsize=16,color="green",shape="box"];2766[label="yvy3000",fontsize=16,color="green",shape="box"];2767[label="yvy4000",fontsize=16,color="green",shape="box"];2768[label="yvy3000",fontsize=16,color="green",shape="box"];2769[label="yvy4000",fontsize=16,color="green",shape="box"];2770[label="yvy3000",fontsize=16,color="green",shape="box"];2771[label="yvy4000",fontsize=16,color="green",shape="box"];2772[label="yvy3000",fontsize=16,color="green",shape="box"];2773[label="yvy4001",fontsize=16,color="green",shape="box"];2774[label="yvy3001",fontsize=16,color="green",shape="box"];2775[label="yvy4001",fontsize=16,color="green",shape="box"];2776[label="yvy3001",fontsize=16,color="green",shape="box"];2777[label="yvy4001",fontsize=16,color="green",shape="box"];2778[label="yvy3001",fontsize=16,color="green",shape="box"];2779[label="yvy4001",fontsize=16,color="green",shape="box"];2780[label="yvy3001",fontsize=16,color="green",shape="box"];2781[label="yvy4001",fontsize=16,color="green",shape="box"];2782[label="yvy3001",fontsize=16,color="green",shape="box"];2783[label="yvy4001",fontsize=16,color="green",shape="box"];2784[label="yvy3001",fontsize=16,color="green",shape="box"];2785[label="yvy4001",fontsize=16,color="green",shape="box"];2786[label="yvy3001",fontsize=16,color="green",shape="box"];2787[label="yvy4001",fontsize=16,color="green",shape="box"];2788[label="yvy3001",fontsize=16,color="green",shape="box"];2789[label="yvy4001",fontsize=16,color="green",shape="box"];2790[label="yvy3001",fontsize=16,color="green",shape="box"];2791[label="yvy4001",fontsize=16,color="green",shape="box"];2792[label="yvy3001",fontsize=16,color="green",shape="box"];2793[label="yvy4001",fontsize=16,color="green",shape="box"];2794[label="yvy3001",fontsize=16,color="green",shape="box"];2795[label="yvy4001",fontsize=16,color="green",shape="box"];2796[label="yvy3001",fontsize=16,color="green",shape="box"];2797[label="yvy4001",fontsize=16,color="green",shape="box"];2798[label="yvy3001",fontsize=16,color="green",shape="box"];2799[label="yvy4001",fontsize=16,color="green",shape="box"];2800[label="yvy3001",fontsize=16,color="green",shape="box"];2801[label="yvy4000",fontsize=16,color="green",shape="box"];2802[label="yvy3000",fontsize=16,color="green",shape="box"];2803[label="yvy4000",fontsize=16,color="green",shape="box"];2804[label="yvy3000",fontsize=16,color="green",shape="box"];2805[label="yvy4000",fontsize=16,color="green",shape="box"];2806[label="yvy3000",fontsize=16,color="green",shape="box"];2807[label="yvy4000",fontsize=16,color="green",shape="box"];2808[label="yvy3000",fontsize=16,color="green",shape="box"];2809[label="yvy4000",fontsize=16,color="green",shape="box"];2810[label="yvy3000",fontsize=16,color="green",shape="box"];2811[label="yvy4000",fontsize=16,color="green",shape="box"];2812[label="yvy3000",fontsize=16,color="green",shape="box"];2813[label="yvy4000",fontsize=16,color="green",shape="box"];2814[label="yvy3000",fontsize=16,color="green",shape="box"];2815[label="yvy4000",fontsize=16,color="green",shape="box"];2816[label="yvy3000",fontsize=16,color="green",shape="box"];2817[label="yvy4000",fontsize=16,color="green",shape="box"];2818[label="yvy3000",fontsize=16,color="green",shape="box"];2819[label="yvy4000",fontsize=16,color="green",shape="box"];2820[label="yvy3000",fontsize=16,color="green",shape="box"];2821[label="yvy4000",fontsize=16,color="green",shape="box"];2822[label="yvy3000",fontsize=16,color="green",shape="box"];2823[label="yvy4000",fontsize=16,color="green",shape="box"];2824[label="yvy3000",fontsize=16,color="green",shape="box"];2825[label="yvy4000",fontsize=16,color="green",shape="box"];2826[label="yvy3000",fontsize=16,color="green",shape="box"];2827[label="yvy4000",fontsize=16,color="green",shape="box"];2828[label="yvy3000",fontsize=16,color="green",shape="box"];2829[label="yvy3001",fontsize=16,color="green",shape="box"];2830[label="yvy4000",fontsize=16,color="green",shape="box"];2831[label="yvy3000",fontsize=16,color="green",shape="box"];2832[label="yvy4001",fontsize=16,color="green",shape="box"];2833[label="primEqNat (Succ yvy40000) (Succ yvy30000)",fontsize=16,color="black",shape="box"];2833 -> 3030[label="",style="solid", color="black", weight=3]; 2834[label="primEqNat (Succ yvy40000) Zero",fontsize=16,color="black",shape="box"];2834 -> 3031[label="",style="solid", color="black", weight=3]; 2835[label="primEqNat Zero (Succ yvy30000)",fontsize=16,color="black",shape="box"];2835 -> 3032[label="",style="solid", color="black", weight=3]; 2836[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2836 -> 3033[label="",style="solid", color="black", weight=3]; 2837[label="yvy3001",fontsize=16,color="green",shape="box"];2838[label="yvy4000",fontsize=16,color="green",shape="box"];2839[label="yvy3000",fontsize=16,color="green",shape="box"];2840[label="yvy4001",fontsize=16,color="green",shape="box"];2841 -> 2074[label="",style="dashed", color="red", weight=0]; 2841[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];2841 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2841 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2842[label="False",fontsize=16,color="green",shape="box"];2843[label="False",fontsize=16,color="green",shape="box"];2844[label="True",fontsize=16,color="green",shape="box"];2845[label="False",fontsize=16,color="green",shape="box"];2846[label="True",fontsize=16,color="green",shape="box"];2847 -> 2074[label="",style="dashed", color="red", weight=0]; 2847[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];2847 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2847 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2848[label="False",fontsize=16,color="green",shape="box"];2849[label="False",fontsize=16,color="green",shape="box"];2850[label="True",fontsize=16,color="green",shape="box"];2851[label="False",fontsize=16,color="green",shape="box"];2852[label="True",fontsize=16,color="green",shape="box"];2853[label="yvy4001",fontsize=16,color="green",shape="box"];2854[label="yvy3001",fontsize=16,color="green",shape="box"];2855[label="yvy4001",fontsize=16,color="green",shape="box"];2856[label="yvy3001",fontsize=16,color="green",shape="box"];2857[label="yvy4000",fontsize=16,color="green",shape="box"];2858[label="yvy3000",fontsize=16,color="green",shape="box"];2859[label="yvy4000",fontsize=16,color="green",shape="box"];2860[label="yvy3000",fontsize=16,color="green",shape="box"];2861[label="yvy153",fontsize=16,color="green",shape="box"];2862[label="yvy154",fontsize=16,color="green",shape="box"];2863 -> 3038[label="",style="dashed", color="red", weight=0]; 2863[label="not (yvy295 == GT)",fontsize=16,color="magenta"];2863 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2878[label="True",fontsize=16,color="green",shape="box"];2879[label="True",fontsize=16,color="green",shape="box"];2880[label="False",fontsize=16,color="green",shape="box"];2881[label="True",fontsize=16,color="green",shape="box"];2864[label="yvy153",fontsize=16,color="green",shape="box"];2865[label="yvy154",fontsize=16,color="green",shape="box"];2866[label="yvy153",fontsize=16,color="green",shape="box"];2867[label="yvy154",fontsize=16,color="green",shape="box"];2868[label="yvy153",fontsize=16,color="green",shape="box"];2869[label="yvy154",fontsize=16,color="green",shape="box"];2870[label="yvy153",fontsize=16,color="green",shape="box"];2871[label="yvy154",fontsize=16,color="green",shape="box"];2872[label="yvy153",fontsize=16,color="green",shape="box"];2873[label="yvy154",fontsize=16,color="green",shape="box"];2882 -> 2291[label="",style="dashed", color="red", weight=0]; 2882[label="yvy1530 < yvy1540 || yvy1530 == yvy1540 && (yvy1531 < yvy1541 || yvy1531 == yvy1541 && yvy1532 <= yvy1542)",fontsize=16,color="magenta"];2882 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2882 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2883[label="True",fontsize=16,color="green",shape="box"];2884[label="True",fontsize=16,color="green",shape="box"];2885[label="False",fontsize=16,color="green",shape="box"];2886[label="yvy1530 <= yvy1540",fontsize=16,color="blue",shape="box"];4476[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 3042[label="",style="solid", color="blue", weight=3]; 4477[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 3043[label="",style="solid", color="blue", weight=3]; 4478[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 3044[label="",style="solid", color="blue", weight=3]; 4479[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 3045[label="",style="solid", color="blue", weight=3]; 4480[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 3046[label="",style="solid", color="blue", weight=3]; 4481[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 3047[label="",style="solid", color="blue", weight=3]; 4482[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 3048[label="",style="solid", color="blue", weight=3]; 4483[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 3049[label="",style="solid", color="blue", weight=3]; 4484[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 3050[label="",style="solid", color="blue", weight=3]; 4485[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 3051[label="",style="solid", color="blue", weight=3]; 4486[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 3052[label="",style="solid", color="blue", weight=3]; 4487[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 3053[label="",style="solid", color="blue", weight=3]; 4488[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 3054[label="",style="solid", color="blue", weight=3]; 4489[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 3055[label="",style="solid", color="blue", weight=3]; 2887[label="True",fontsize=16,color="green",shape="box"];2888[label="True",fontsize=16,color="green",shape="box"];2889[label="True",fontsize=16,color="green",shape="box"];2890[label="False",fontsize=16,color="green",shape="box"];2891[label="True",fontsize=16,color="green",shape="box"];2892[label="True",fontsize=16,color="green",shape="box"];2893[label="False",fontsize=16,color="green",shape="box"];2894[label="False",fontsize=16,color="green",shape="box"];2895[label="True",fontsize=16,color="green",shape="box"];2874[label="yvy153",fontsize=16,color="green",shape="box"];2875[label="yvy154",fontsize=16,color="green",shape="box"];2876[label="yvy153",fontsize=16,color="green",shape="box"];2877[label="yvy154",fontsize=16,color="green",shape="box"];2896[label="yvy1530 <= yvy1540",fontsize=16,color="blue",shape="box"];4490[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 3056[label="",style="solid", color="blue", weight=3]; 4491[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 3057[label="",style="solid", color="blue", weight=3]; 4492[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4492[label="",style="solid", color="blue", weight=9]; 4492 -> 3058[label="",style="solid", color="blue", weight=3]; 4493[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4493[label="",style="solid", color="blue", weight=9]; 4493 -> 3059[label="",style="solid", color="blue", weight=3]; 4494[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 3060[label="",style="solid", color="blue", weight=3]; 4495[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 3061[label="",style="solid", color="blue", weight=3]; 4496[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 3062[label="",style="solid", color="blue", weight=3]; 4497[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 3063[label="",style="solid", color="blue", weight=3]; 4498[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 3064[label="",style="solid", color="blue", weight=3]; 4499[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 3065[label="",style="solid", color="blue", weight=3]; 4500[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 3066[label="",style="solid", color="blue", weight=3]; 4501[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 3067[label="",style="solid", color="blue", weight=3]; 4502[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 3068[label="",style="solid", color="blue", weight=3]; 4503[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 3069[label="",style="solid", color="blue", weight=3]; 2897[label="True",fontsize=16,color="green",shape="box"];2898[label="False",fontsize=16,color="green",shape="box"];2899[label="yvy1530 <= yvy1540",fontsize=16,color="blue",shape="box"];4504[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 3070[label="",style="solid", color="blue", weight=3]; 4505[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 3071[label="",style="solid", color="blue", weight=3]; 4506[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 3072[label="",style="solid", color="blue", weight=3]; 4507[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 3073[label="",style="solid", color="blue", weight=3]; 4508[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 3074[label="",style="solid", color="blue", weight=3]; 4509[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 3075[label="",style="solid", color="blue", weight=3]; 4510[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4510[label="",style="solid", color="blue", weight=9]; 4510 -> 3076[label="",style="solid", color="blue", weight=3]; 4511[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4511[label="",style="solid", color="blue", weight=9]; 4511 -> 3077[label="",style="solid", color="blue", weight=3]; 4512[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 3078[label="",style="solid", color="blue", weight=3]; 4513[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 3079[label="",style="solid", color="blue", weight=3]; 4514[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 3080[label="",style="solid", color="blue", weight=3]; 4515[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 3081[label="",style="solid", color="blue", weight=3]; 4516[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 3082[label="",style="solid", color="blue", weight=3]; 4517[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 3083[label="",style="solid", color="blue", weight=3]; 2900 -> 2291[label="",style="dashed", color="red", weight=0]; 2900[label="yvy1530 < yvy1540 || yvy1530 == yvy1540 && yvy1531 <= yvy1541",fontsize=16,color="magenta"];2900 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2900 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2901[label="compare0 (yvy278,yvy279) (yvy280,yvy281) otherwise",fontsize=16,color="black",shape="box"];2901 -> 3086[label="",style="solid", color="black", weight=3]; 2902[label="LT",fontsize=16,color="green",shape="box"];2903[label="Succ yvy9500",fontsize=16,color="green",shape="box"];2904 -> 1867[label="",style="dashed", color="red", weight=0]; 2904[label="primPlusNat (primPlusNat yvy284 (Succ yvy9500)) (Succ yvy9500)",fontsize=16,color="magenta"];2904 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2904 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2905 -> 1327[label="",style="dashed", color="red", weight=0]; 2905[label="FiniteMap.sizeFM (FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123)",fontsize=16,color="magenta"];2905 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2906 -> 1867[label="",style="dashed", color="red", weight=0]; 2906[label="primPlusNat yvy90200 yvy21700",fontsize=16,color="magenta"];2906 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2906 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2907 -> 948[label="",style="dashed", color="red", weight=0]; 2907[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy54",fontsize=16,color="magenta"];2908 -> 3092[label="",style="dashed", color="red", weight=0]; 2908[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 (FiniteMap.sizeFM yvy904 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy903)",fontsize=16,color="magenta"];2908 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2909[label="yvy543",fontsize=16,color="green",shape="box"];2910 -> 1327[label="",style="dashed", color="red", weight=0]; 2910[label="FiniteMap.sizeFM yvy544",fontsize=16,color="magenta"];2910 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2911[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2912[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 otherwise",fontsize=16,color="black",shape="box"];2912 -> 3095[label="",style="solid", color="black", weight=3]; 2913[label="FiniteMap.mkBalBranch6Single_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="black",shape="box"];2913 -> 3096[label="",style="solid", color="black", weight=3]; 2914 -> 1327[label="",style="dashed", color="red", weight=0]; 2914[label="FiniteMap.sizeFM yvy90",fontsize=16,color="magenta"];2914 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2915[label="yvy40000",fontsize=16,color="green",shape="box"];2916[label="Succ yvy30100",fontsize=16,color="green",shape="box"];2917[label="yvy193",fontsize=16,color="green",shape="box"];2918[label="yvy196",fontsize=16,color="green",shape="box"];2919[label="yvy193",fontsize=16,color="green",shape="box"];2920[label="yvy196",fontsize=16,color="green",shape="box"];2921[label="yvy193",fontsize=16,color="green",shape="box"];2922[label="yvy196",fontsize=16,color="green",shape="box"];2923[label="yvy193",fontsize=16,color="green",shape="box"];2924[label="yvy196",fontsize=16,color="green",shape="box"];2925[label="yvy193",fontsize=16,color="green",shape="box"];2926[label="yvy196",fontsize=16,color="green",shape="box"];2927[label="yvy193",fontsize=16,color="green",shape="box"];2928[label="yvy196",fontsize=16,color="green",shape="box"];2929[label="yvy193",fontsize=16,color="green",shape="box"];2930[label="yvy196",fontsize=16,color="green",shape="box"];2931[label="yvy193",fontsize=16,color="green",shape="box"];2932[label="yvy196",fontsize=16,color="green",shape="box"];2933[label="yvy193",fontsize=16,color="green",shape="box"];2934[label="yvy196",fontsize=16,color="green",shape="box"];2935[label="yvy193",fontsize=16,color="green",shape="box"];2936[label="yvy196",fontsize=16,color="green",shape="box"];2937[label="yvy193",fontsize=16,color="green",shape="box"];2938[label="yvy196",fontsize=16,color="green",shape="box"];2939[label="yvy193",fontsize=16,color="green",shape="box"];2940[label="yvy196",fontsize=16,color="green",shape="box"];2941[label="yvy193",fontsize=16,color="green",shape="box"];2942[label="yvy196",fontsize=16,color="green",shape="box"];2943[label="yvy193",fontsize=16,color="green",shape="box"];2944[label="yvy196",fontsize=16,color="green",shape="box"];2945[label="yvy192",fontsize=16,color="green",shape="box"];2946[label="yvy195",fontsize=16,color="green",shape="box"];2947[label="yvy192",fontsize=16,color="green",shape="box"];2948[label="yvy195",fontsize=16,color="green",shape="box"];2949[label="yvy192",fontsize=16,color="green",shape="box"];2950[label="yvy195",fontsize=16,color="green",shape="box"];2951[label="yvy192",fontsize=16,color="green",shape="box"];2952[label="yvy195",fontsize=16,color="green",shape="box"];2953[label="yvy192",fontsize=16,color="green",shape="box"];2954[label="yvy195",fontsize=16,color="green",shape="box"];2955[label="yvy192",fontsize=16,color="green",shape="box"];2956[label="yvy195",fontsize=16,color="green",shape="box"];2957[label="yvy192",fontsize=16,color="green",shape="box"];2958[label="yvy195",fontsize=16,color="green",shape="box"];2959[label="yvy192",fontsize=16,color="green",shape="box"];2960[label="yvy195",fontsize=16,color="green",shape="box"];2961[label="yvy192",fontsize=16,color="green",shape="box"];2962[label="yvy195",fontsize=16,color="green",shape="box"];2963[label="yvy192",fontsize=16,color="green",shape="box"];2964[label="yvy195",fontsize=16,color="green",shape="box"];2965[label="yvy192",fontsize=16,color="green",shape="box"];2966[label="yvy195",fontsize=16,color="green",shape="box"];2967[label="yvy192",fontsize=16,color="green",shape="box"];2968[label="yvy195",fontsize=16,color="green",shape="box"];2969[label="yvy192",fontsize=16,color="green",shape="box"];2970[label="yvy195",fontsize=16,color="green",shape="box"];2971[label="yvy192",fontsize=16,color="green",shape="box"];2972[label="yvy195",fontsize=16,color="green",shape="box"];2973[label="compare0 (yvy263,yvy264,yvy265) (yvy266,yvy267,yvy268) True",fontsize=16,color="black",shape="box"];2973 -> 3098[label="",style="solid", color="black", weight=3]; 2974[label="yvy4002",fontsize=16,color="green",shape="box"];2975[label="yvy3002",fontsize=16,color="green",shape="box"];2976[label="yvy4002",fontsize=16,color="green",shape="box"];2977[label="yvy3002",fontsize=16,color="green",shape="box"];2978[label="yvy4002",fontsize=16,color="green",shape="box"];2979[label="yvy3002",fontsize=16,color="green",shape="box"];2980[label="yvy4002",fontsize=16,color="green",shape="box"];2981[label="yvy3002",fontsize=16,color="green",shape="box"];2982[label="yvy4002",fontsize=16,color="green",shape="box"];2983[label="yvy3002",fontsize=16,color="green",shape="box"];2984[label="yvy4002",fontsize=16,color="green",shape="box"];2985[label="yvy3002",fontsize=16,color="green",shape="box"];2986[label="yvy4002",fontsize=16,color="green",shape="box"];2987[label="yvy3002",fontsize=16,color="green",shape="box"];2988[label="yvy4002",fontsize=16,color="green",shape="box"];2989[label="yvy3002",fontsize=16,color="green",shape="box"];2990[label="yvy4002",fontsize=16,color="green",shape="box"];2991[label="yvy3002",fontsize=16,color="green",shape="box"];2992[label="yvy4002",fontsize=16,color="green",shape="box"];2993[label="yvy3002",fontsize=16,color="green",shape="box"];2994[label="yvy4002",fontsize=16,color="green",shape="box"];2995[label="yvy3002",fontsize=16,color="green",shape="box"];2996[label="yvy4002",fontsize=16,color="green",shape="box"];2997[label="yvy3002",fontsize=16,color="green",shape="box"];2998[label="yvy4002",fontsize=16,color="green",shape="box"];2999[label="yvy3002",fontsize=16,color="green",shape="box"];3000[label="yvy4002",fontsize=16,color="green",shape="box"];3001[label="yvy3002",fontsize=16,color="green",shape="box"];3002[label="yvy4001",fontsize=16,color="green",shape="box"];3003[label="yvy3001",fontsize=16,color="green",shape="box"];3004[label="yvy4001",fontsize=16,color="green",shape="box"];3005[label="yvy3001",fontsize=16,color="green",shape="box"];3006[label="yvy4001",fontsize=16,color="green",shape="box"];3007[label="yvy3001",fontsize=16,color="green",shape="box"];3008[label="yvy4001",fontsize=16,color="green",shape="box"];3009[label="yvy3001",fontsize=16,color="green",shape="box"];3010[label="yvy4001",fontsize=16,color="green",shape="box"];3011[label="yvy3001",fontsize=16,color="green",shape="box"];3012[label="yvy4001",fontsize=16,color="green",shape="box"];3013[label="yvy3001",fontsize=16,color="green",shape="box"];3014[label="yvy4001",fontsize=16,color="green",shape="box"];3015[label="yvy3001",fontsize=16,color="green",shape="box"];3016[label="yvy4001",fontsize=16,color="green",shape="box"];3017[label="yvy3001",fontsize=16,color="green",shape="box"];3018[label="yvy4001",fontsize=16,color="green",shape="box"];3019[label="yvy3001",fontsize=16,color="green",shape="box"];3020[label="yvy4001",fontsize=16,color="green",shape="box"];3021[label="yvy3001",fontsize=16,color="green",shape="box"];3022[label="yvy4001",fontsize=16,color="green",shape="box"];3023[label="yvy3001",fontsize=16,color="green",shape="box"];3024[label="yvy4001",fontsize=16,color="green",shape="box"];3025[label="yvy3001",fontsize=16,color="green",shape="box"];3026[label="yvy4001",fontsize=16,color="green",shape="box"];3027[label="yvy3001",fontsize=16,color="green",shape="box"];3028[label="yvy4001",fontsize=16,color="green",shape="box"];3029[label="yvy3001",fontsize=16,color="green",shape="box"];3030 -> 2074[label="",style="dashed", color="red", weight=0]; 3030[label="primEqNat yvy40000 yvy30000",fontsize=16,color="magenta"];3030 -> 3099[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3100[label="",style="dashed", color="magenta", weight=3]; 3031[label="False",fontsize=16,color="green",shape="box"];3032[label="False",fontsize=16,color="green",shape="box"];3033[label="True",fontsize=16,color="green",shape="box"];3034[label="yvy30000",fontsize=16,color="green",shape="box"];3035[label="yvy40000",fontsize=16,color="green",shape="box"];3036[label="yvy30000",fontsize=16,color="green",shape="box"];3037[label="yvy40000",fontsize=16,color="green",shape="box"];3039 -> 993[label="",style="dashed", color="red", weight=0]; 3039[label="yvy295 == GT",fontsize=16,color="magenta"];3039 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3039 -> 3102[label="",style="dashed", color="magenta", weight=3]; 3038[label="not yvy296",fontsize=16,color="burlywood",shape="triangle"];4518[label="yvy296/False",fontsize=10,color="white",style="solid",shape="box"];3038 -> 4518[label="",style="solid", color="burlywood", weight=9]; 4518 -> 3103[label="",style="solid", color="burlywood", weight=3]; 4519[label="yvy296/True",fontsize=10,color="white",style="solid",shape="box"];3038 -> 4519[label="",style="solid", color="burlywood", weight=9]; 4519 -> 3104[label="",style="solid", color="burlywood", weight=3]; 3040 -> 1610[label="",style="dashed", color="red", weight=0]; 3040[label="yvy1530 == yvy1540 && (yvy1531 < yvy1541 || yvy1531 == yvy1541 && yvy1532 <= yvy1542)",fontsize=16,color="magenta"];3040 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3040 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3041[label="yvy1530 < yvy1540",fontsize=16,color="blue",shape="box"];4520[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 3107[label="",style="solid", color="blue", weight=3]; 4521[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 3108[label="",style="solid", color="blue", weight=3]; 4522[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 3109[label="",style="solid", color="blue", weight=3]; 4523[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 3110[label="",style="solid", color="blue", weight=3]; 4524[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 3111[label="",style="solid", color="blue", weight=3]; 4525[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 3112[label="",style="solid", color="blue", weight=3]; 4526[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 3113[label="",style="solid", color="blue", weight=3]; 4527[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 3114[label="",style="solid", color="blue", weight=3]; 4528[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 3115[label="",style="solid", color="blue", weight=3]; 4529[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4529[label="",style="solid", color="blue", weight=9]; 4529 -> 3116[label="",style="solid", color="blue", weight=3]; 4530[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4530[label="",style="solid", color="blue", weight=9]; 4530 -> 3117[label="",style="solid", color="blue", weight=3]; 4531[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4531[label="",style="solid", color="blue", weight=9]; 4531 -> 3118[label="",style="solid", color="blue", weight=3]; 4532[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4532[label="",style="solid", color="blue", weight=9]; 4532 -> 3119[label="",style="solid", color="blue", weight=3]; 4533[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 3120[label="",style="solid", color="blue", weight=3]; 3042 -> 1923[label="",style="dashed", color="red", weight=0]; 3042[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3042 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3042 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3043 -> 1924[label="",style="dashed", color="red", weight=0]; 3043[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3043 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3043 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3044 -> 1925[label="",style="dashed", color="red", weight=0]; 3044[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3044 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3045 -> 1926[label="",style="dashed", color="red", weight=0]; 3045[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3045 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3046 -> 1927[label="",style="dashed", color="red", weight=0]; 3046[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3046 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3046 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3047 -> 1928[label="",style="dashed", color="red", weight=0]; 3047[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3047 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3047 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3048 -> 1929[label="",style="dashed", color="red", weight=0]; 3048[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3048 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3049 -> 1930[label="",style="dashed", color="red", weight=0]; 3049[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3049 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3049 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3050 -> 1931[label="",style="dashed", color="red", weight=0]; 3050[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3050 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3050 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3051 -> 1932[label="",style="dashed", color="red", weight=0]; 3051[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3051 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3051 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3052 -> 1933[label="",style="dashed", color="red", weight=0]; 3052[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3052 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3052 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3053 -> 1934[label="",style="dashed", color="red", weight=0]; 3053[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3053 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3053 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3054 -> 1935[label="",style="dashed", color="red", weight=0]; 3054[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3054 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3055 -> 1936[label="",style="dashed", color="red", weight=0]; 3055[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3055 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3056 -> 1923[label="",style="dashed", color="red", weight=0]; 3056[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3056 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3057 -> 1924[label="",style="dashed", color="red", weight=0]; 3057[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3057 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3057 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3058 -> 1925[label="",style="dashed", color="red", weight=0]; 3058[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3058 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3058 -> 3154[label="",style="dashed", color="magenta", weight=3]; 3059 -> 1926[label="",style="dashed", color="red", weight=0]; 3059[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3059 -> 3155[label="",style="dashed", color="magenta", weight=3]; 3059 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3060 -> 1927[label="",style="dashed", color="red", weight=0]; 3060[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3060 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3061 -> 1928[label="",style="dashed", color="red", weight=0]; 3061[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3061 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3062 -> 1929[label="",style="dashed", color="red", weight=0]; 3062[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3062 -> 3161[label="",style="dashed", color="magenta", weight=3]; 3062 -> 3162[label="",style="dashed", color="magenta", weight=3]; 3063 -> 1930[label="",style="dashed", color="red", weight=0]; 3063[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3063 -> 3163[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3064 -> 1931[label="",style="dashed", color="red", weight=0]; 3064[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3064 -> 3165[label="",style="dashed", color="magenta", weight=3]; 3064 -> 3166[label="",style="dashed", color="magenta", weight=3]; 3065 -> 1932[label="",style="dashed", color="red", weight=0]; 3065[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3065 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3066 -> 1933[label="",style="dashed", color="red", weight=0]; 3066[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3066 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3067 -> 1934[label="",style="dashed", color="red", weight=0]; 3067[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3067 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3068 -> 1935[label="",style="dashed", color="red", weight=0]; 3068[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3068 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3069 -> 1936[label="",style="dashed", color="red", weight=0]; 3069[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3069 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3069 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3070 -> 1923[label="",style="dashed", color="red", weight=0]; 3070[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3070 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3070 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3071 -> 1924[label="",style="dashed", color="red", weight=0]; 3071[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3071 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3072 -> 1925[label="",style="dashed", color="red", weight=0]; 3072[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3072 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3072 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3073 -> 1926[label="",style="dashed", color="red", weight=0]; 3073[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3073 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3074 -> 1927[label="",style="dashed", color="red", weight=0]; 3074[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3074 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3074 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3075 -> 1928[label="",style="dashed", color="red", weight=0]; 3075[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3075 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3075 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3076 -> 1929[label="",style="dashed", color="red", weight=0]; 3076[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3076 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3076 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3077 -> 1930[label="",style="dashed", color="red", weight=0]; 3077[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3077 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3077 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3078 -> 1931[label="",style="dashed", color="red", weight=0]; 3078[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3078 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3079 -> 1932[label="",style="dashed", color="red", weight=0]; 3079[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3079 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3080 -> 1933[label="",style="dashed", color="red", weight=0]; 3080[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3080 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3080 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3081 -> 1934[label="",style="dashed", color="red", weight=0]; 3081[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3081 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3081 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3082 -> 1935[label="",style="dashed", color="red", weight=0]; 3082[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3082 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3083 -> 1936[label="",style="dashed", color="red", weight=0]; 3083[label="yvy1530 <= yvy1540",fontsize=16,color="magenta"];3083 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3083 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3084 -> 1610[label="",style="dashed", color="red", weight=0]; 3084[label="yvy1530 == yvy1540 && yvy1531 <= yvy1541",fontsize=16,color="magenta"];3084 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3085[label="yvy1530 < yvy1540",fontsize=16,color="blue",shape="box"];4534[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 3207[label="",style="solid", color="blue", weight=3]; 4535[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 3208[label="",style="solid", color="blue", weight=3]; 4536[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 3209[label="",style="solid", color="blue", weight=3]; 4537[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 3210[label="",style="solid", color="blue", weight=3]; 4538[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 3211[label="",style="solid", color="blue", weight=3]; 4539[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 3212[label="",style="solid", color="blue", weight=3]; 4540[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 3213[label="",style="solid", color="blue", weight=3]; 4541[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 3214[label="",style="solid", color="blue", weight=3]; 4542[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 3215[label="",style="solid", color="blue", weight=3]; 4543[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 3216[label="",style="solid", color="blue", weight=3]; 4544[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 3217[label="",style="solid", color="blue", weight=3]; 4545[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 3218[label="",style="solid", color="blue", weight=3]; 4546[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 3219[label="",style="solid", color="blue", weight=3]; 4547[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3085 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 3220[label="",style="solid", color="blue", weight=3]; 3086[label="compare0 (yvy278,yvy279) (yvy280,yvy281) True",fontsize=16,color="black",shape="box"];3086 -> 3221[label="",style="solid", color="black", weight=3]; 3087[label="Succ yvy9500",fontsize=16,color="green",shape="box"];3088 -> 1867[label="",style="dashed", color="red", weight=0]; 3088[label="primPlusNat yvy284 (Succ yvy9500)",fontsize=16,color="magenta"];3088 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3089[label="FiniteMap.Branch yvy119 yvy120 yvy121 yvy122 yvy123",fontsize=16,color="green",shape="box"];3090[label="yvy21700",fontsize=16,color="green",shape="box"];3091[label="yvy90200",fontsize=16,color="green",shape="box"];3093 -> 74[label="",style="dashed", color="red", weight=0]; 3093[label="FiniteMap.sizeFM yvy904 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy903",fontsize=16,color="magenta"];3093 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3093 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3092[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 yvy297",fontsize=16,color="burlywood",shape="triangle"];4548[label="yvy297/False",fontsize=10,color="white",style="solid",shape="box"];3092 -> 4548[label="",style="solid", color="burlywood", weight=9]; 4548 -> 3226[label="",style="solid", color="burlywood", weight=3]; 4549[label="yvy297/True",fontsize=10,color="white",style="solid",shape="box"];3092 -> 4549[label="",style="solid", color="burlywood", weight=9]; 4549 -> 3227[label="",style="solid", color="burlywood", weight=3]; 3094[label="yvy544",fontsize=16,color="green",shape="box"];3095[label="FiniteMap.mkBalBranch6MkBalBranch00 yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy540 yvy541 yvy542 yvy543 yvy544 True",fontsize=16,color="black",shape="box"];3095 -> 3228[label="",style="solid", color="black", weight=3]; 3096[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy90 yvy543) yvy544",fontsize=16,color="black",shape="box"];3096 -> 3229[label="",style="solid", color="black", weight=3]; 3097[label="yvy90",fontsize=16,color="green",shape="box"];3098[label="GT",fontsize=16,color="green",shape="box"];3099[label="yvy30000",fontsize=16,color="green",shape="box"];3100[label="yvy40000",fontsize=16,color="green",shape="box"];3101[label="yvy295",fontsize=16,color="green",shape="box"];3102[label="GT",fontsize=16,color="green",shape="box"];3103[label="not False",fontsize=16,color="black",shape="box"];3103 -> 3230[label="",style="solid", color="black", weight=3]; 3104[label="not True",fontsize=16,color="black",shape="box"];3104 -> 3231[label="",style="solid", color="black", weight=3]; 3105 -> 2291[label="",style="dashed", color="red", weight=0]; 3105[label="yvy1531 < yvy1541 || yvy1531 == yvy1541 && yvy1532 <= yvy1542",fontsize=16,color="magenta"];3105 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3105 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3106[label="yvy1530 == yvy1540",fontsize=16,color="blue",shape="box"];4550[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 3234[label="",style="solid", color="blue", weight=3]; 4551[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 3235[label="",style="solid", color="blue", weight=3]; 4552[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 3236[label="",style="solid", color="blue", weight=3]; 4553[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 3237[label="",style="solid", color="blue", weight=3]; 4554[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 3238[label="",style="solid", color="blue", weight=3]; 4555[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 3239[label="",style="solid", color="blue", weight=3]; 4556[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 3240[label="",style="solid", color="blue", weight=3]; 4557[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 3241[label="",style="solid", color="blue", weight=3]; 4558[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 3242[label="",style="solid", color="blue", weight=3]; 4559[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 3243[label="",style="solid", color="blue", weight=3]; 4560[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 3244[label="",style="solid", color="blue", weight=3]; 4561[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 3245[label="",style="solid", color="blue", weight=3]; 4562[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 3246[label="",style="solid", color="blue", weight=3]; 4563[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3106 -> 4563[label="",style="solid", color="blue", weight=9]; 4563 -> 3247[label="",style="solid", color="blue", weight=3]; 3107 -> 72[label="",style="dashed", color="red", weight=0]; 3107[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3107 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3108 -> 73[label="",style="dashed", color="red", weight=0]; 3108[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3108 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3109 -> 74[label="",style="dashed", color="red", weight=0]; 3109[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3109 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3110 -> 75[label="",style="dashed", color="red", weight=0]; 3110[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3110 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3111 -> 76[label="",style="dashed", color="red", weight=0]; 3111[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3111 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3112 -> 77[label="",style="dashed", color="red", weight=0]; 3112[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3112 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3113 -> 78[label="",style="dashed", color="red", weight=0]; 3113[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3113 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3114 -> 79[label="",style="dashed", color="red", weight=0]; 3114[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3114 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3114 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3115 -> 80[label="",style="dashed", color="red", weight=0]; 3115[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3115 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3116 -> 81[label="",style="dashed", color="red", weight=0]; 3116[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3116 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3116 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3117 -> 82[label="",style="dashed", color="red", weight=0]; 3117[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3117 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3117 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3118 -> 83[label="",style="dashed", color="red", weight=0]; 3118[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3118 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3118 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3119 -> 84[label="",style="dashed", color="red", weight=0]; 3119[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3119 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3120 -> 85[label="",style="dashed", color="red", weight=0]; 3120[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3120 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3121[label="yvy1530",fontsize=16,color="green",shape="box"];3122[label="yvy1540",fontsize=16,color="green",shape="box"];3123[label="yvy1530",fontsize=16,color="green",shape="box"];3124[label="yvy1540",fontsize=16,color="green",shape="box"];3125[label="yvy1530",fontsize=16,color="green",shape="box"];3126[label="yvy1540",fontsize=16,color="green",shape="box"];3127[label="yvy1530",fontsize=16,color="green",shape="box"];3128[label="yvy1540",fontsize=16,color="green",shape="box"];3129[label="yvy1530",fontsize=16,color="green",shape="box"];3130[label="yvy1540",fontsize=16,color="green",shape="box"];3131[label="yvy1530",fontsize=16,color="green",shape="box"];3132[label="yvy1540",fontsize=16,color="green",shape="box"];3133[label="yvy1530",fontsize=16,color="green",shape="box"];3134[label="yvy1540",fontsize=16,color="green",shape="box"];3135[label="yvy1530",fontsize=16,color="green",shape="box"];3136[label="yvy1540",fontsize=16,color="green",shape="box"];3137[label="yvy1530",fontsize=16,color="green",shape="box"];3138[label="yvy1540",fontsize=16,color="green",shape="box"];3139[label="yvy1530",fontsize=16,color="green",shape="box"];3140[label="yvy1540",fontsize=16,color="green",shape="box"];3141[label="yvy1530",fontsize=16,color="green",shape="box"];3142[label="yvy1540",fontsize=16,color="green",shape="box"];3143[label="yvy1530",fontsize=16,color="green",shape="box"];3144[label="yvy1540",fontsize=16,color="green",shape="box"];3145[label="yvy1530",fontsize=16,color="green",shape="box"];3146[label="yvy1540",fontsize=16,color="green",shape="box"];3147[label="yvy1530",fontsize=16,color="green",shape="box"];3148[label="yvy1540",fontsize=16,color="green",shape="box"];3149[label="yvy1530",fontsize=16,color="green",shape="box"];3150[label="yvy1540",fontsize=16,color="green",shape="box"];3151[label="yvy1530",fontsize=16,color="green",shape="box"];3152[label="yvy1540",fontsize=16,color="green",shape="box"];3153[label="yvy1530",fontsize=16,color="green",shape="box"];3154[label="yvy1540",fontsize=16,color="green",shape="box"];3155[label="yvy1530",fontsize=16,color="green",shape="box"];3156[label="yvy1540",fontsize=16,color="green",shape="box"];3157[label="yvy1530",fontsize=16,color="green",shape="box"];3158[label="yvy1540",fontsize=16,color="green",shape="box"];3159[label="yvy1530",fontsize=16,color="green",shape="box"];3160[label="yvy1540",fontsize=16,color="green",shape="box"];3161[label="yvy1530",fontsize=16,color="green",shape="box"];3162[label="yvy1540",fontsize=16,color="green",shape="box"];3163[label="yvy1530",fontsize=16,color="green",shape="box"];3164[label="yvy1540",fontsize=16,color="green",shape="box"];3165[label="yvy1530",fontsize=16,color="green",shape="box"];3166[label="yvy1540",fontsize=16,color="green",shape="box"];3167[label="yvy1530",fontsize=16,color="green",shape="box"];3168[label="yvy1540",fontsize=16,color="green",shape="box"];3169[label="yvy1530",fontsize=16,color="green",shape="box"];3170[label="yvy1540",fontsize=16,color="green",shape="box"];3171[label="yvy1530",fontsize=16,color="green",shape="box"];3172[label="yvy1540",fontsize=16,color="green",shape="box"];3173[label="yvy1530",fontsize=16,color="green",shape="box"];3174[label="yvy1540",fontsize=16,color="green",shape="box"];3175[label="yvy1530",fontsize=16,color="green",shape="box"];3176[label="yvy1540",fontsize=16,color="green",shape="box"];3177[label="yvy1530",fontsize=16,color="green",shape="box"];3178[label="yvy1540",fontsize=16,color="green",shape="box"];3179[label="yvy1530",fontsize=16,color="green",shape="box"];3180[label="yvy1540",fontsize=16,color="green",shape="box"];3181[label="yvy1530",fontsize=16,color="green",shape="box"];3182[label="yvy1540",fontsize=16,color="green",shape="box"];3183[label="yvy1530",fontsize=16,color="green",shape="box"];3184[label="yvy1540",fontsize=16,color="green",shape="box"];3185[label="yvy1530",fontsize=16,color="green",shape="box"];3186[label="yvy1540",fontsize=16,color="green",shape="box"];3187[label="yvy1530",fontsize=16,color="green",shape="box"];3188[label="yvy1540",fontsize=16,color="green",shape="box"];3189[label="yvy1530",fontsize=16,color="green",shape="box"];3190[label="yvy1540",fontsize=16,color="green",shape="box"];3191[label="yvy1530",fontsize=16,color="green",shape="box"];3192[label="yvy1540",fontsize=16,color="green",shape="box"];3193[label="yvy1530",fontsize=16,color="green",shape="box"];3194[label="yvy1540",fontsize=16,color="green",shape="box"];3195[label="yvy1530",fontsize=16,color="green",shape="box"];3196[label="yvy1540",fontsize=16,color="green",shape="box"];3197[label="yvy1530",fontsize=16,color="green",shape="box"];3198[label="yvy1540",fontsize=16,color="green",shape="box"];3199[label="yvy1530",fontsize=16,color="green",shape="box"];3200[label="yvy1540",fontsize=16,color="green",shape="box"];3201[label="yvy1530",fontsize=16,color="green",shape="box"];3202[label="yvy1540",fontsize=16,color="green",shape="box"];3203[label="yvy1530",fontsize=16,color="green",shape="box"];3204[label="yvy1540",fontsize=16,color="green",shape="box"];3205[label="yvy1531 <= yvy1541",fontsize=16,color="blue",shape="box"];4564[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4564[label="",style="solid", color="blue", weight=9]; 4564 -> 3276[label="",style="solid", color="blue", weight=3]; 4565[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4565[label="",style="solid", color="blue", weight=9]; 4565 -> 3277[label="",style="solid", color="blue", weight=3]; 4566[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4566[label="",style="solid", color="blue", weight=9]; 4566 -> 3278[label="",style="solid", color="blue", weight=3]; 4567[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4567[label="",style="solid", color="blue", weight=9]; 4567 -> 3279[label="",style="solid", color="blue", weight=3]; 4568[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4568[label="",style="solid", color="blue", weight=9]; 4568 -> 3280[label="",style="solid", color="blue", weight=3]; 4569[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 3281[label="",style="solid", color="blue", weight=3]; 4570[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 3282[label="",style="solid", color="blue", weight=3]; 4571[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 3283[label="",style="solid", color="blue", weight=3]; 4572[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 3284[label="",style="solid", color="blue", weight=3]; 4573[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 3285[label="",style="solid", color="blue", weight=3]; 4574[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 3286[label="",style="solid", color="blue", weight=3]; 4575[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 3287[label="",style="solid", color="blue", weight=3]; 4576[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 3288[label="",style="solid", color="blue", weight=3]; 4577[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3205 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 3289[label="",style="solid", color="blue", weight=3]; 3206[label="yvy1530 == yvy1540",fontsize=16,color="blue",shape="box"];4578[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 3290[label="",style="solid", color="blue", weight=3]; 4579[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 3291[label="",style="solid", color="blue", weight=3]; 4580[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 3292[label="",style="solid", color="blue", weight=3]; 4581[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 3293[label="",style="solid", color="blue", weight=3]; 4582[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 3294[label="",style="solid", color="blue", weight=3]; 4583[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 3295[label="",style="solid", color="blue", weight=3]; 4584[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 3296[label="",style="solid", color="blue", weight=3]; 4585[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 3297[label="",style="solid", color="blue", weight=3]; 4586[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 3298[label="",style="solid", color="blue", weight=3]; 4587[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 3299[label="",style="solid", color="blue", weight=3]; 4588[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 3300[label="",style="solid", color="blue", weight=3]; 4589[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 3301[label="",style="solid", color="blue", weight=3]; 4590[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 3302[label="",style="solid", color="blue", weight=3]; 4591[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 3303[label="",style="solid", color="blue", weight=3]; 3207 -> 72[label="",style="dashed", color="red", weight=0]; 3207[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3207 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3208 -> 73[label="",style="dashed", color="red", weight=0]; 3208[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3208 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3209 -> 74[label="",style="dashed", color="red", weight=0]; 3209[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3209 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3210 -> 75[label="",style="dashed", color="red", weight=0]; 3210[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3210 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3211 -> 76[label="",style="dashed", color="red", weight=0]; 3211[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3211 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3212 -> 77[label="",style="dashed", color="red", weight=0]; 3212[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3212 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3213 -> 78[label="",style="dashed", color="red", weight=0]; 3213[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3213 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3214 -> 79[label="",style="dashed", color="red", weight=0]; 3214[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3214 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3215 -> 80[label="",style="dashed", color="red", weight=0]; 3215[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3215 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3216 -> 81[label="",style="dashed", color="red", weight=0]; 3216[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3216 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3217 -> 82[label="",style="dashed", color="red", weight=0]; 3217[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3217 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3218 -> 83[label="",style="dashed", color="red", weight=0]; 3218[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3218 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3219 -> 84[label="",style="dashed", color="red", weight=0]; 3219[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3219 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3220 -> 85[label="",style="dashed", color="red", weight=0]; 3220[label="yvy1530 < yvy1540",fontsize=16,color="magenta"];3220 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3221[label="GT",fontsize=16,color="green",shape="box"];3222[label="Succ yvy9500",fontsize=16,color="green",shape="box"];3223[label="yvy284",fontsize=16,color="green",shape="box"];3224 -> 1327[label="",style="dashed", color="red", weight=0]; 3224[label="FiniteMap.sizeFM yvy904",fontsize=16,color="magenta"];3224 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3225 -> 772[label="",style="dashed", color="red", weight=0]; 3225[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM yvy903",fontsize=16,color="magenta"];3225 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3226[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 False",fontsize=16,color="black",shape="box"];3226 -> 3335[label="",style="solid", color="black", weight=3]; 3227[label="FiniteMap.mkBalBranch6MkBalBranch11 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 True",fontsize=16,color="black",shape="box"];3227 -> 3336[label="",style="solid", color="black", weight=3]; 3228[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 yvy543 yvy544)",fontsize=16,color="burlywood",shape="box"];4592[label="yvy543/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4592[label="",style="solid", color="burlywood", weight=9]; 4592 -> 3337[label="",style="solid", color="burlywood", weight=3]; 4593[label="yvy543/FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4593[label="",style="solid", color="burlywood", weight=9]; 4593 -> 3338[label="",style="solid", color="burlywood", weight=3]; 3229 -> 948[label="",style="dashed", color="red", weight=0]; 3229[label="FiniteMap.mkBranchResult yvy540 yvy541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy90 yvy543) yvy544",fontsize=16,color="magenta"];3229 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3230[label="True",fontsize=16,color="green",shape="box"];3231[label="False",fontsize=16,color="green",shape="box"];3232 -> 1610[label="",style="dashed", color="red", weight=0]; 3232[label="yvy1531 == yvy1541 && yvy1532 <= yvy1542",fontsize=16,color="magenta"];3232 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3233[label="yvy1531 < yvy1541",fontsize=16,color="blue",shape="box"];4594[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 3345[label="",style="solid", color="blue", weight=3]; 4595[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 3346[label="",style="solid", color="blue", weight=3]; 4596[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 3347[label="",style="solid", color="blue", weight=3]; 4597[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 3348[label="",style="solid", color="blue", weight=3]; 4598[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 3349[label="",style="solid", color="blue", weight=3]; 4599[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 3350[label="",style="solid", color="blue", weight=3]; 4600[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 3351[label="",style="solid", color="blue", weight=3]; 4601[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 3352[label="",style="solid", color="blue", weight=3]; 4602[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 3353[label="",style="solid", color="blue", weight=3]; 4603[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 3354[label="",style="solid", color="blue", weight=3]; 4604[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 3355[label="",style="solid", color="blue", weight=3]; 4605[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 3356[label="",style="solid", color="blue", weight=3]; 4606[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 3357[label="",style="solid", color="blue", weight=3]; 4607[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 3358[label="",style="solid", color="blue", weight=3]; 3234 -> 995[label="",style="dashed", color="red", weight=0]; 3234[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3234 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3235 -> 985[label="",style="dashed", color="red", weight=0]; 3235[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3235 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3235 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3236 -> 992[label="",style="dashed", color="red", weight=0]; 3236[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3236 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3237 -> 996[label="",style="dashed", color="red", weight=0]; 3237[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3237 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3237 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3238 -> 994[label="",style="dashed", color="red", weight=0]; 3238[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3238 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3238 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3239 -> 991[label="",style="dashed", color="red", weight=0]; 3239[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3239 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3239 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3240 -> 983[label="",style="dashed", color="red", weight=0]; 3240[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3240 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3240 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3241 -> 984[label="",style="dashed", color="red", weight=0]; 3241[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3241 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3241 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3242 -> 990[label="",style="dashed", color="red", weight=0]; 3242[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3242 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3242 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3243 -> 993[label="",style="dashed", color="red", weight=0]; 3243[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3243 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3243 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3244 -> 988[label="",style="dashed", color="red", weight=0]; 3244[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3244 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3244 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3245 -> 987[label="",style="dashed", color="red", weight=0]; 3245[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3245 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3245 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3246 -> 989[label="",style="dashed", color="red", weight=0]; 3246[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3246 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3246 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3247 -> 986[label="",style="dashed", color="red", weight=0]; 3247[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3247 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3247 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3248[label="yvy1530",fontsize=16,color="green",shape="box"];3249[label="yvy1540",fontsize=16,color="green",shape="box"];3250[label="yvy1530",fontsize=16,color="green",shape="box"];3251[label="yvy1540",fontsize=16,color="green",shape="box"];3252[label="yvy1530",fontsize=16,color="green",shape="box"];3253[label="yvy1540",fontsize=16,color="green",shape="box"];3254[label="yvy1530",fontsize=16,color="green",shape="box"];3255[label="yvy1540",fontsize=16,color="green",shape="box"];3256[label="yvy1530",fontsize=16,color="green",shape="box"];3257[label="yvy1540",fontsize=16,color="green",shape="box"];3258[label="yvy1530",fontsize=16,color="green",shape="box"];3259[label="yvy1540",fontsize=16,color="green",shape="box"];3260[label="yvy1530",fontsize=16,color="green",shape="box"];3261[label="yvy1540",fontsize=16,color="green",shape="box"];3262[label="yvy1530",fontsize=16,color="green",shape="box"];3263[label="yvy1540",fontsize=16,color="green",shape="box"];3264[label="yvy1530",fontsize=16,color="green",shape="box"];3265[label="yvy1540",fontsize=16,color="green",shape="box"];3266[label="yvy1530",fontsize=16,color="green",shape="box"];3267[label="yvy1540",fontsize=16,color="green",shape="box"];3268[label="yvy1530",fontsize=16,color="green",shape="box"];3269[label="yvy1540",fontsize=16,color="green",shape="box"];3270[label="yvy1530",fontsize=16,color="green",shape="box"];3271[label="yvy1540",fontsize=16,color="green",shape="box"];3272[label="yvy1530",fontsize=16,color="green",shape="box"];3273[label="yvy1540",fontsize=16,color="green",shape="box"];3274[label="yvy1530",fontsize=16,color="green",shape="box"];3275[label="yvy1540",fontsize=16,color="green",shape="box"];3276 -> 1923[label="",style="dashed", color="red", weight=0]; 3276[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3276 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3276 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3277 -> 1924[label="",style="dashed", color="red", weight=0]; 3277[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3277 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3277 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3278 -> 1925[label="",style="dashed", color="red", weight=0]; 3278[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3278 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3278 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3279 -> 1926[label="",style="dashed", color="red", weight=0]; 3279[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3279 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3279 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3280 -> 1927[label="",style="dashed", color="red", weight=0]; 3280[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3280 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3280 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3281 -> 1928[label="",style="dashed", color="red", weight=0]; 3281[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3281 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3281 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3282 -> 1929[label="",style="dashed", color="red", weight=0]; 3282[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3282 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3282 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3283 -> 1930[label="",style="dashed", color="red", weight=0]; 3283[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3283 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3284 -> 1931[label="",style="dashed", color="red", weight=0]; 3284[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3284 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3285 -> 1932[label="",style="dashed", color="red", weight=0]; 3285[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3285 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3286 -> 1933[label="",style="dashed", color="red", weight=0]; 3286[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3286 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3287 -> 1934[label="",style="dashed", color="red", weight=0]; 3287[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3287 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3288 -> 1935[label="",style="dashed", color="red", weight=0]; 3288[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3288 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3289 -> 1936[label="",style="dashed", color="red", weight=0]; 3289[label="yvy1531 <= yvy1541",fontsize=16,color="magenta"];3289 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3290 -> 995[label="",style="dashed", color="red", weight=0]; 3290[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3290 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3291 -> 985[label="",style="dashed", color="red", weight=0]; 3291[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3291 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3292 -> 992[label="",style="dashed", color="red", weight=0]; 3292[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3292 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3293 -> 996[label="",style="dashed", color="red", weight=0]; 3293[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3293 -> 3421[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3294 -> 994[label="",style="dashed", color="red", weight=0]; 3294[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3294 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3295 -> 991[label="",style="dashed", color="red", weight=0]; 3295[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3295 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3296 -> 983[label="",style="dashed", color="red", weight=0]; 3296[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3296 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3297 -> 984[label="",style="dashed", color="red", weight=0]; 3297[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3297 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3297 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3298 -> 990[label="",style="dashed", color="red", weight=0]; 3298[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3298 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3299 -> 993[label="",style="dashed", color="red", weight=0]; 3299[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3299 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3299 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3300 -> 988[label="",style="dashed", color="red", weight=0]; 3300[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3300 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3300 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3301 -> 987[label="",style="dashed", color="red", weight=0]; 3301[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3301 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3301 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3302 -> 989[label="",style="dashed", color="red", weight=0]; 3302[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3302 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3303 -> 986[label="",style="dashed", color="red", weight=0]; 3303[label="yvy1530 == yvy1540",fontsize=16,color="magenta"];3303 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3303 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3304[label="yvy1530",fontsize=16,color="green",shape="box"];3305[label="yvy1540",fontsize=16,color="green",shape="box"];3306[label="yvy1530",fontsize=16,color="green",shape="box"];3307[label="yvy1540",fontsize=16,color="green",shape="box"];3308[label="yvy1530",fontsize=16,color="green",shape="box"];3309[label="yvy1540",fontsize=16,color="green",shape="box"];3310[label="yvy1530",fontsize=16,color="green",shape="box"];3311[label="yvy1540",fontsize=16,color="green",shape="box"];3312[label="yvy1530",fontsize=16,color="green",shape="box"];3313[label="yvy1540",fontsize=16,color="green",shape="box"];3314[label="yvy1530",fontsize=16,color="green",shape="box"];3315[label="yvy1540",fontsize=16,color="green",shape="box"];3316[label="yvy1530",fontsize=16,color="green",shape="box"];3317[label="yvy1540",fontsize=16,color="green",shape="box"];3318[label="yvy1530",fontsize=16,color="green",shape="box"];3319[label="yvy1540",fontsize=16,color="green",shape="box"];3320[label="yvy1530",fontsize=16,color="green",shape="box"];3321[label="yvy1540",fontsize=16,color="green",shape="box"];3322[label="yvy1530",fontsize=16,color="green",shape="box"];3323[label="yvy1540",fontsize=16,color="green",shape="box"];3324[label="yvy1530",fontsize=16,color="green",shape="box"];3325[label="yvy1540",fontsize=16,color="green",shape="box"];3326[label="yvy1530",fontsize=16,color="green",shape="box"];3327[label="yvy1540",fontsize=16,color="green",shape="box"];3328[label="yvy1530",fontsize=16,color="green",shape="box"];3329[label="yvy1540",fontsize=16,color="green",shape="box"];3330[label="yvy1530",fontsize=16,color="green",shape="box"];3331[label="yvy1540",fontsize=16,color="green",shape="box"];3332[label="yvy904",fontsize=16,color="green",shape="box"];3333 -> 1327[label="",style="dashed", color="red", weight=0]; 3333[label="FiniteMap.sizeFM yvy903",fontsize=16,color="magenta"];3333 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3334[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3335[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 otherwise",fontsize=16,color="black",shape="box"];3335 -> 3444[label="",style="solid", color="black", weight=3]; 3336[label="FiniteMap.mkBalBranch6Single_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54",fontsize=16,color="black",shape="box"];3336 -> 3445[label="",style="solid", color="black", weight=3]; 3337[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 FiniteMap.EmptyFM yvy544)",fontsize=16,color="black",shape="box"];3337 -> 3446[label="",style="solid", color="black", weight=3]; 3338[label="FiniteMap.mkBalBranch6Double_L yvy50 yvy51 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544) yvy90 yvy90 (FiniteMap.Branch yvy540 yvy541 yvy542 (FiniteMap.Branch yvy5430 yvy5431 yvy5432 yvy5433 yvy5434) yvy544)",fontsize=16,color="black",shape="box"];3338 -> 3447[label="",style="solid", color="black", weight=3]; 3339[label="yvy540",fontsize=16,color="green",shape="box"];3340[label="yvy544",fontsize=16,color="green",shape="box"];3341[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) yvy50 yvy51 yvy90 yvy543",fontsize=16,color="black",shape="box"];3341 -> 3448[label="",style="solid", color="black", weight=3]; 3342[label="yvy541",fontsize=16,color="green",shape="box"];3343[label="yvy1532 <= yvy1542",fontsize=16,color="blue",shape="box"];4608[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 3449[label="",style="solid", color="blue", weight=3]; 4609[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 3450[label="",style="solid", color="blue", weight=3]; 4610[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 3451[label="",style="solid", color="blue", weight=3]; 4611[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 3452[label="",style="solid", color="blue", weight=3]; 4612[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 3453[label="",style="solid", color="blue", weight=3]; 4613[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 3454[label="",style="solid", color="blue", weight=3]; 4614[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 3455[label="",style="solid", color="blue", weight=3]; 4615[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 3456[label="",style="solid", color="blue", weight=3]; 4616[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 3457[label="",style="solid", color="blue", weight=3]; 4617[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 3458[label="",style="solid", color="blue", weight=3]; 4618[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 3459[label="",style="solid", color="blue", weight=3]; 4619[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 3460[label="",style="solid", color="blue", weight=3]; 4620[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 3461[label="",style="solid", color="blue", weight=3]; 4621[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3343 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 3462[label="",style="solid", color="blue", weight=3]; 3344[label="yvy1531 == yvy1541",fontsize=16,color="blue",shape="box"];4622[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 3463[label="",style="solid", color="blue", weight=3]; 4623[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 3464[label="",style="solid", color="blue", weight=3]; 4624[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 3465[label="",style="solid", color="blue", weight=3]; 4625[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 3466[label="",style="solid", color="blue", weight=3]; 4626[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 3467[label="",style="solid", color="blue", weight=3]; 4627[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 3468[label="",style="solid", color="blue", weight=3]; 4628[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 3469[label="",style="solid", color="blue", weight=3]; 4629[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 3470[label="",style="solid", color="blue", weight=3]; 4630[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 3471[label="",style="solid", color="blue", weight=3]; 4631[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 3472[label="",style="solid", color="blue", weight=3]; 4632[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 3473[label="",style="solid", color="blue", weight=3]; 4633[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 3474[label="",style="solid", color="blue", weight=3]; 4634[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 3475[label="",style="solid", color="blue", weight=3]; 4635[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 3476[label="",style="solid", color="blue", weight=3]; 3345 -> 72[label="",style="dashed", color="red", weight=0]; 3345[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3345 -> 3477[label="",style="dashed", color="magenta", weight=3]; 3345 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3346 -> 73[label="",style="dashed", color="red", weight=0]; 3346[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3346 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3346 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3347 -> 74[label="",style="dashed", color="red", weight=0]; 3347[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3347 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3347 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3348 -> 75[label="",style="dashed", color="red", weight=0]; 3348[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3348 -> 3483[label="",style="dashed", color="magenta", weight=3]; 3348 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3349 -> 76[label="",style="dashed", color="red", weight=0]; 3349[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3349 -> 3485[label="",style="dashed", color="magenta", weight=3]; 3349 -> 3486[label="",style="dashed", color="magenta", weight=3]; 3350 -> 77[label="",style="dashed", color="red", weight=0]; 3350[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3350 -> 3487[label="",style="dashed", color="magenta", weight=3]; 3350 -> 3488[label="",style="dashed", color="magenta", weight=3]; 3351 -> 78[label="",style="dashed", color="red", weight=0]; 3351[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3351 -> 3489[label="",style="dashed", color="magenta", weight=3]; 3351 -> 3490[label="",style="dashed", color="magenta", weight=3]; 3352 -> 79[label="",style="dashed", color="red", weight=0]; 3352[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3352 -> 3491[label="",style="dashed", color="magenta", weight=3]; 3352 -> 3492[label="",style="dashed", color="magenta", weight=3]; 3353 -> 80[label="",style="dashed", color="red", weight=0]; 3353[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3353 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3353 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3354 -> 81[label="",style="dashed", color="red", weight=0]; 3354[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3354 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3354 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3355 -> 82[label="",style="dashed", color="red", weight=0]; 3355[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3355 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3355 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3356 -> 83[label="",style="dashed", color="red", weight=0]; 3356[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3356 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3356 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3357 -> 84[label="",style="dashed", color="red", weight=0]; 3357[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3357 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3357 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3358 -> 85[label="",style="dashed", color="red", weight=0]; 3358[label="yvy1531 < yvy1541",fontsize=16,color="magenta"];3358 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3358 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3359[label="yvy1530",fontsize=16,color="green",shape="box"];3360[label="yvy1540",fontsize=16,color="green",shape="box"];3361[label="yvy1530",fontsize=16,color="green",shape="box"];3362[label="yvy1540",fontsize=16,color="green",shape="box"];3363[label="yvy1530",fontsize=16,color="green",shape="box"];3364[label="yvy1540",fontsize=16,color="green",shape="box"];3365[label="yvy1530",fontsize=16,color="green",shape="box"];3366[label="yvy1540",fontsize=16,color="green",shape="box"];3367[label="yvy1530",fontsize=16,color="green",shape="box"];3368[label="yvy1540",fontsize=16,color="green",shape="box"];3369[label="yvy1530",fontsize=16,color="green",shape="box"];3370[label="yvy1540",fontsize=16,color="green",shape="box"];3371[label="yvy1530",fontsize=16,color="green",shape="box"];3372[label="yvy1540",fontsize=16,color="green",shape="box"];3373[label="yvy1530",fontsize=16,color="green",shape="box"];3374[label="yvy1540",fontsize=16,color="green",shape="box"];3375[label="yvy1530",fontsize=16,color="green",shape="box"];3376[label="yvy1540",fontsize=16,color="green",shape="box"];3377[label="yvy1530",fontsize=16,color="green",shape="box"];3378[label="yvy1540",fontsize=16,color="green",shape="box"];3379[label="yvy1530",fontsize=16,color="green",shape="box"];3380[label="yvy1540",fontsize=16,color="green",shape="box"];3381[label="yvy1530",fontsize=16,color="green",shape="box"];3382[label="yvy1540",fontsize=16,color="green",shape="box"];3383[label="yvy1530",fontsize=16,color="green",shape="box"];3384[label="yvy1540",fontsize=16,color="green",shape="box"];3385[label="yvy1530",fontsize=16,color="green",shape="box"];3386[label="yvy1540",fontsize=16,color="green",shape="box"];3387[label="yvy1531",fontsize=16,color="green",shape="box"];3388[label="yvy1541",fontsize=16,color="green",shape="box"];3389[label="yvy1531",fontsize=16,color="green",shape="box"];3390[label="yvy1541",fontsize=16,color="green",shape="box"];3391[label="yvy1531",fontsize=16,color="green",shape="box"];3392[label="yvy1541",fontsize=16,color="green",shape="box"];3393[label="yvy1531",fontsize=16,color="green",shape="box"];3394[label="yvy1541",fontsize=16,color="green",shape="box"];3395[label="yvy1531",fontsize=16,color="green",shape="box"];3396[label="yvy1541",fontsize=16,color="green",shape="box"];3397[label="yvy1531",fontsize=16,color="green",shape="box"];3398[label="yvy1541",fontsize=16,color="green",shape="box"];3399[label="yvy1531",fontsize=16,color="green",shape="box"];3400[label="yvy1541",fontsize=16,color="green",shape="box"];3401[label="yvy1531",fontsize=16,color="green",shape="box"];3402[label="yvy1541",fontsize=16,color="green",shape="box"];3403[label="yvy1531",fontsize=16,color="green",shape="box"];3404[label="yvy1541",fontsize=16,color="green",shape="box"];3405[label="yvy1531",fontsize=16,color="green",shape="box"];3406[label="yvy1541",fontsize=16,color="green",shape="box"];3407[label="yvy1531",fontsize=16,color="green",shape="box"];3408[label="yvy1541",fontsize=16,color="green",shape="box"];3409[label="yvy1531",fontsize=16,color="green",shape="box"];3410[label="yvy1541",fontsize=16,color="green",shape="box"];3411[label="yvy1531",fontsize=16,color="green",shape="box"];3412[label="yvy1541",fontsize=16,color="green",shape="box"];3413[label="yvy1531",fontsize=16,color="green",shape="box"];3414[label="yvy1541",fontsize=16,color="green",shape="box"];3415[label="yvy1530",fontsize=16,color="green",shape="box"];3416[label="yvy1540",fontsize=16,color="green",shape="box"];3417[label="yvy1530",fontsize=16,color="green",shape="box"];3418[label="yvy1540",fontsize=16,color="green",shape="box"];3419[label="yvy1530",fontsize=16,color="green",shape="box"];3420[label="yvy1540",fontsize=16,color="green",shape="box"];3421[label="yvy1530",fontsize=16,color="green",shape="box"];3422[label="yvy1540",fontsize=16,color="green",shape="box"];3423[label="yvy1530",fontsize=16,color="green",shape="box"];3424[label="yvy1540",fontsize=16,color="green",shape="box"];3425[label="yvy1530",fontsize=16,color="green",shape="box"];3426[label="yvy1540",fontsize=16,color="green",shape="box"];3427[label="yvy1530",fontsize=16,color="green",shape="box"];3428[label="yvy1540",fontsize=16,color="green",shape="box"];3429[label="yvy1530",fontsize=16,color="green",shape="box"];3430[label="yvy1540",fontsize=16,color="green",shape="box"];3431[label="yvy1530",fontsize=16,color="green",shape="box"];3432[label="yvy1540",fontsize=16,color="green",shape="box"];3433[label="yvy1530",fontsize=16,color="green",shape="box"];3434[label="yvy1540",fontsize=16,color="green",shape="box"];3435[label="yvy1530",fontsize=16,color="green",shape="box"];3436[label="yvy1540",fontsize=16,color="green",shape="box"];3437[label="yvy1530",fontsize=16,color="green",shape="box"];3438[label="yvy1540",fontsize=16,color="green",shape="box"];3439[label="yvy1530",fontsize=16,color="green",shape="box"];3440[label="yvy1540",fontsize=16,color="green",shape="box"];3441[label="yvy1530",fontsize=16,color="green",shape="box"];3442[label="yvy1540",fontsize=16,color="green",shape="box"];3443[label="yvy903",fontsize=16,color="green",shape="box"];3444[label="FiniteMap.mkBalBranch6MkBalBranch10 yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54 yvy900 yvy901 yvy902 yvy903 yvy904 True",fontsize=16,color="black",shape="box"];3444 -> 3505[label="",style="solid", color="black", weight=3]; 3445 -> 3586[label="",style="dashed", color="red", weight=0]; 3445[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) yvy900 yvy901 yvy903 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) yvy50 yvy51 yvy904 yvy54)",fontsize=16,color="magenta"];3445 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3446[label="error []",fontsize=16,color="red",shape="box"];3447 -> 3586[label="",style="dashed", color="red", weight=0]; 3447[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) yvy5430 yvy5431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy90 yvy5433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) yvy540 yvy541 yvy5434 yvy544)",fontsize=16,color="magenta"];3447 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3448 -> 948[label="",style="dashed", color="red", weight=0]; 3448[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy543",fontsize=16,color="magenta"];3448 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3449 -> 1923[label="",style="dashed", color="red", weight=0]; 3449[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3449 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3449 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3450 -> 1924[label="",style="dashed", color="red", weight=0]; 3450[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3450 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3450 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3451 -> 1925[label="",style="dashed", color="red", weight=0]; 3451[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3451 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3451 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3452 -> 1926[label="",style="dashed", color="red", weight=0]; 3452[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3452 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3452 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3453 -> 1927[label="",style="dashed", color="red", weight=0]; 3453[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3453 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3454 -> 1928[label="",style="dashed", color="red", weight=0]; 3454[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3454 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3455 -> 1929[label="",style="dashed", color="red", weight=0]; 3455[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3455 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3455 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3456 -> 1930[label="",style="dashed", color="red", weight=0]; 3456[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3456 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3456 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3457 -> 1931[label="",style="dashed", color="red", weight=0]; 3457[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3457 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3458 -> 1932[label="",style="dashed", color="red", weight=0]; 3458[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3458 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3459 -> 1933[label="",style="dashed", color="red", weight=0]; 3459[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3459 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3460 -> 1934[label="",style="dashed", color="red", weight=0]; 3460[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3460 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3461 -> 1935[label="",style="dashed", color="red", weight=0]; 3461[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3461 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3462 -> 1936[label="",style="dashed", color="red", weight=0]; 3462[label="yvy1532 <= yvy1542",fontsize=16,color="magenta"];3462 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3463 -> 995[label="",style="dashed", color="red", weight=0]; 3463[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3463 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3464 -> 985[label="",style="dashed", color="red", weight=0]; 3464[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3464 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3465 -> 992[label="",style="dashed", color="red", weight=0]; 3465[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3465 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3466 -> 996[label="",style="dashed", color="red", weight=0]; 3466[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3466 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3467 -> 994[label="",style="dashed", color="red", weight=0]; 3467[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3467 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3468 -> 991[label="",style="dashed", color="red", weight=0]; 3468[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3468 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3469 -> 983[label="",style="dashed", color="red", weight=0]; 3469[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3469 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3470 -> 984[label="",style="dashed", color="red", weight=0]; 3470[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3470 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3471 -> 990[label="",style="dashed", color="red", weight=0]; 3471[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3471 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3472 -> 993[label="",style="dashed", color="red", weight=0]; 3472[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3472 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3473 -> 988[label="",style="dashed", color="red", weight=0]; 3473[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3473 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3474 -> 987[label="",style="dashed", color="red", weight=0]; 3474[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3474 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3475 -> 989[label="",style="dashed", color="red", weight=0]; 3475[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3475 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3476 -> 986[label="",style="dashed", color="red", weight=0]; 3476[label="yvy1531 == yvy1541",fontsize=16,color="magenta"];3476 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3477[label="yvy1531",fontsize=16,color="green",shape="box"];3478[label="yvy1541",fontsize=16,color="green",shape="box"];3479[label="yvy1531",fontsize=16,color="green",shape="box"];3480[label="yvy1541",fontsize=16,color="green",shape="box"];3481[label="yvy1531",fontsize=16,color="green",shape="box"];3482[label="yvy1541",fontsize=16,color="green",shape="box"];3483[label="yvy1531",fontsize=16,color="green",shape="box"];3484[label="yvy1541",fontsize=16,color="green",shape="box"];3485[label="yvy1531",fontsize=16,color="green",shape="box"];3486[label="yvy1541",fontsize=16,color="green",shape="box"];3487[label="yvy1531",fontsize=16,color="green",shape="box"];3488[label="yvy1541",fontsize=16,color="green",shape="box"];3489[label="yvy1531",fontsize=16,color="green",shape="box"];3490[label="yvy1541",fontsize=16,color="green",shape="box"];3491[label="yvy1531",fontsize=16,color="green",shape="box"];3492[label="yvy1541",fontsize=16,color="green",shape="box"];3493[label="yvy1531",fontsize=16,color="green",shape="box"];3494[label="yvy1541",fontsize=16,color="green",shape="box"];3495[label="yvy1531",fontsize=16,color="green",shape="box"];3496[label="yvy1541",fontsize=16,color="green",shape="box"];3497[label="yvy1531",fontsize=16,color="green",shape="box"];3498[label="yvy1541",fontsize=16,color="green",shape="box"];3499[label="yvy1531",fontsize=16,color="green",shape="box"];3500[label="yvy1541",fontsize=16,color="green",shape="box"];3501[label="yvy1531",fontsize=16,color="green",shape="box"];3502[label="yvy1541",fontsize=16,color="green",shape="box"];3503[label="yvy1531",fontsize=16,color="green",shape="box"];3504[label="yvy1541",fontsize=16,color="green",shape="box"];3505[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 yvy904) yvy54",fontsize=16,color="burlywood",shape="box"];4636[label="yvy904/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3505 -> 4636[label="",style="solid", color="burlywood", weight=9]; 4636 -> 3584[label="",style="solid", color="burlywood", weight=3]; 4637[label="yvy904/FiniteMap.Branch yvy9040 yvy9041 yvy9042 yvy9043 yvy9044",fontsize=10,color="white",style="solid",shape="box"];3505 -> 4637[label="",style="solid", color="burlywood", weight=9]; 4637 -> 3585[label="",style="solid", color="burlywood", weight=3]; 3587[label="yvy903",fontsize=16,color="green",shape="box"];3588[label="yvy900",fontsize=16,color="green",shape="box"];3589[label="yvy904",fontsize=16,color="green",shape="box"];3590[label="yvy901",fontsize=16,color="green",shape="box"];3591[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3592[label="yvy54",fontsize=16,color="green",shape="box"];3593[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3594[label="yvy50",fontsize=16,color="green",shape="box"];3595[label="yvy51",fontsize=16,color="green",shape="box"];3586[label="FiniteMap.mkBranch (Pos (Succ yvy323)) yvy324 yvy325 yvy326 (FiniteMap.mkBranch (Pos (Succ yvy327)) yvy328 yvy329 yvy330 yvy331)",fontsize=16,color="black",shape="triangle"];3586 -> 3623[label="",style="solid", color="black", weight=3]; 3596[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) yvy50 yvy51 yvy90 yvy5433",fontsize=16,color="black",shape="box"];3596 -> 3624[label="",style="solid", color="black", weight=3]; 3597[label="yvy5430",fontsize=16,color="green",shape="box"];3598[label="yvy5434",fontsize=16,color="green",shape="box"];3599[label="yvy5431",fontsize=16,color="green",shape="box"];3600[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3601[label="yvy544",fontsize=16,color="green",shape="box"];3602[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3603[label="yvy540",fontsize=16,color="green",shape="box"];3604[label="yvy541",fontsize=16,color="green",shape="box"];3527[label="yvy543",fontsize=16,color="green",shape="box"];3528[label="yvy1532",fontsize=16,color="green",shape="box"];3529[label="yvy1542",fontsize=16,color="green",shape="box"];3530[label="yvy1532",fontsize=16,color="green",shape="box"];3531[label="yvy1542",fontsize=16,color="green",shape="box"];3532[label="yvy1532",fontsize=16,color="green",shape="box"];3533[label="yvy1542",fontsize=16,color="green",shape="box"];3534[label="yvy1532",fontsize=16,color="green",shape="box"];3535[label="yvy1542",fontsize=16,color="green",shape="box"];3536[label="yvy1532",fontsize=16,color="green",shape="box"];3537[label="yvy1542",fontsize=16,color="green",shape="box"];3538[label="yvy1532",fontsize=16,color="green",shape="box"];3539[label="yvy1542",fontsize=16,color="green",shape="box"];3540[label="yvy1532",fontsize=16,color="green",shape="box"];3541[label="yvy1542",fontsize=16,color="green",shape="box"];3542[label="yvy1532",fontsize=16,color="green",shape="box"];3543[label="yvy1542",fontsize=16,color="green",shape="box"];3544[label="yvy1532",fontsize=16,color="green",shape="box"];3545[label="yvy1542",fontsize=16,color="green",shape="box"];3546[label="yvy1532",fontsize=16,color="green",shape="box"];3547[label="yvy1542",fontsize=16,color="green",shape="box"];3548[label="yvy1532",fontsize=16,color="green",shape="box"];3549[label="yvy1542",fontsize=16,color="green",shape="box"];3550[label="yvy1532",fontsize=16,color="green",shape="box"];3551[label="yvy1542",fontsize=16,color="green",shape="box"];3552[label="yvy1532",fontsize=16,color="green",shape="box"];3553[label="yvy1542",fontsize=16,color="green",shape="box"];3554[label="yvy1532",fontsize=16,color="green",shape="box"];3555[label="yvy1542",fontsize=16,color="green",shape="box"];3556[label="yvy1531",fontsize=16,color="green",shape="box"];3557[label="yvy1541",fontsize=16,color="green",shape="box"];3558[label="yvy1531",fontsize=16,color="green",shape="box"];3559[label="yvy1541",fontsize=16,color="green",shape="box"];3560[label="yvy1531",fontsize=16,color="green",shape="box"];3561[label="yvy1541",fontsize=16,color="green",shape="box"];3562[label="yvy1531",fontsize=16,color="green",shape="box"];3563[label="yvy1541",fontsize=16,color="green",shape="box"];3564[label="yvy1531",fontsize=16,color="green",shape="box"];3565[label="yvy1541",fontsize=16,color="green",shape="box"];3566[label="yvy1531",fontsize=16,color="green",shape="box"];3567[label="yvy1541",fontsize=16,color="green",shape="box"];3568[label="yvy1531",fontsize=16,color="green",shape="box"];3569[label="yvy1541",fontsize=16,color="green",shape="box"];3570[label="yvy1531",fontsize=16,color="green",shape="box"];3571[label="yvy1541",fontsize=16,color="green",shape="box"];3572[label="yvy1531",fontsize=16,color="green",shape="box"];3573[label="yvy1541",fontsize=16,color="green",shape="box"];3574[label="yvy1531",fontsize=16,color="green",shape="box"];3575[label="yvy1541",fontsize=16,color="green",shape="box"];3576[label="yvy1531",fontsize=16,color="green",shape="box"];3577[label="yvy1541",fontsize=16,color="green",shape="box"];3578[label="yvy1531",fontsize=16,color="green",shape="box"];3579[label="yvy1541",fontsize=16,color="green",shape="box"];3580[label="yvy1531",fontsize=16,color="green",shape="box"];3581[label="yvy1541",fontsize=16,color="green",shape="box"];3582[label="yvy1531",fontsize=16,color="green",shape="box"];3583[label="yvy1541",fontsize=16,color="green",shape="box"];3584[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 FiniteMap.EmptyFM) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 FiniteMap.EmptyFM) yvy54",fontsize=16,color="black",shape="box"];3584 -> 3625[label="",style="solid", color="black", weight=3]; 3585[label="FiniteMap.mkBalBranch6Double_R yvy50 yvy51 yvy54 (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 (FiniteMap.Branch yvy9040 yvy9041 yvy9042 yvy9043 yvy9044)) (FiniteMap.Branch yvy900 yvy901 yvy902 yvy903 (FiniteMap.Branch yvy9040 yvy9041 yvy9042 yvy9043 yvy9044)) yvy54",fontsize=16,color="black",shape="box"];3585 -> 3626[label="",style="solid", color="black", weight=3]; 3623 -> 948[label="",style="dashed", color="red", weight=0]; 3623[label="FiniteMap.mkBranchResult yvy324 yvy325 yvy326 (FiniteMap.mkBranch (Pos (Succ yvy327)) yvy328 yvy329 yvy330 yvy331)",fontsize=16,color="magenta"];3623 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3623 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3623 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3623 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3624 -> 948[label="",style="dashed", color="red", weight=0]; 3624[label="FiniteMap.mkBranchResult yvy50 yvy51 yvy90 yvy5433",fontsize=16,color="magenta"];3624 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3625[label="error []",fontsize=16,color="red",shape="box"];3626 -> 3586[label="",style="dashed", color="red", weight=0]; 3626[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) yvy9040 yvy9041 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy900 yvy901 yvy903 yvy9043) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) yvy50 yvy51 yvy9044 yvy54)",fontsize=16,color="magenta"];3626 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3627[label="yvy324",fontsize=16,color="green",shape="box"];3628[label="FiniteMap.mkBranch (Pos (Succ yvy327)) yvy328 yvy329 yvy330 yvy331",fontsize=16,color="black",shape="triangle"];3628 -> 3641[label="",style="solid", color="black", weight=3]; 3629[label="yvy326",fontsize=16,color="green",shape="box"];3630[label="yvy325",fontsize=16,color="green",shape="box"];3631[label="yvy5433",fontsize=16,color="green",shape="box"];3632 -> 3628[label="",style="dashed", color="red", weight=0]; 3632[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) yvy900 yvy901 yvy903 yvy9043",fontsize=16,color="magenta"];3632 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3633[label="yvy9040",fontsize=16,color="green",shape="box"];3634[label="yvy9044",fontsize=16,color="green",shape="box"];3635[label="yvy9041",fontsize=16,color="green",shape="box"];3636[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3637[label="yvy54",fontsize=16,color="green",shape="box"];3638[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3639[label="yvy50",fontsize=16,color="green",shape="box"];3640[label="yvy51",fontsize=16,color="green",shape="box"];3641 -> 948[label="",style="dashed", color="red", weight=0]; 3641[label="FiniteMap.mkBranchResult yvy328 yvy329 yvy330 yvy331",fontsize=16,color="magenta"];3641 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3642[label="yvy903",fontsize=16,color="green",shape="box"];3643[label="yvy9043",fontsize=16,color="green",shape="box"];3644[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3645[label="yvy900",fontsize=16,color="green",shape="box"];3646[label="yvy901",fontsize=16,color="green",shape="box"];3647[label="yvy328",fontsize=16,color="green",shape="box"];3648[label="yvy331",fontsize=16,color="green",shape="box"];3649[label="yvy330",fontsize=16,color="green",shape="box"];3650[label="yvy329",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(yvy4000), Succ(yvy3000)) -> new_primCmpNat(yvy4000, yvy3000) 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(yvy4000), Succ(yvy3000)) -> new_primCmpNat(yvy4000, yvy3000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(yvy4000, yvy3000, bcb, bcc, bcd) new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bag) -> new_esEs3(yvy4000, yvy3000, bbg) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_@2, da), db)) -> new_esEs1(yvy4002, yvy3002, da, db) new_esEs3(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd, bde) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, be), bf)) -> new_esEs1(yvy4000, yvy3000, be, bf) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(yvy4001, yvy3001, dh, ea, eb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_@2, ec), ed), dg) -> new_esEs1(yvy4001, yvy3001, ec, ed) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(yvy4001, yvy3001, eg) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_Either, bcg), bch)) -> new_esEs2(yvy4000, yvy3000, bcg, bch) new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], hd), he) -> new_esEs(yvy4000, yvy3000, hd) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_esEs(yvy4001, yvy3001, h) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(yvy4002, yvy3002, de) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, fg), fh), cc, dg) -> new_esEs2(yvy4000, yvy3000, fg, fh) new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_Maybe, beb)) -> new_esEs3(yvy4000, yvy3000, beb) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hf), hg), hh), he) -> new_esEs0(yvy4000, yvy3000, hf, hg, hh) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bac), bad), he) -> new_esEs2(yvy4000, yvy3000, bac, bad) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], ba)) -> new_esEs(yvy4000, yvy3000, ba) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(yvy4000, yvy3000, ga) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yvy4000, yvy3000, bb, bc, bd) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(yvy4002, yvy3002, ce, cf, cg) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs0(yvy4001, yvy3001, gd, ge, gf) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbe), bbf), bag) -> new_esEs2(yvy4000, yvy3000, bbe, bbf) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy4001, yvy3001, hc) new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_[], bdb)) -> new_esEs(yvy4000, yvy3000, bdb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], eh), cc, dg) -> new_esEs(yvy4000, yvy3000, eh) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bg), bh)) -> new_esEs2(yvy4000, yvy3000, bg, bh) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_[], df), dg) -> new_esEs(yvy4001, yvy3001, df) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_[], bca)) -> new_esEs(yvy4000, yvy3000, bca) new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, ca)) -> new_esEs3(yvy4000, yvy3000, ca) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_Maybe, bda)) -> new_esEs3(yvy4000, yvy3000, bda) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_[], cd)) -> new_esEs(yvy4002, yvy3002, cd) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, bae), he) -> new_esEs3(yvy4000, yvy3000, bae) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, baa), bab), he) -> new_esEs1(yvy4000, yvy3000, baa, bab) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_[], gc)) -> new_esEs(yvy4001, yvy3001, gc) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_Either, ha), hb)) -> new_esEs2(yvy4001, yvy3001, ha, hb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_Either, dc), dd)) -> new_esEs2(yvy4002, yvy3002, dc, dd) new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_@2, bce), bcf)) -> new_esEs1(yvy4000, yvy3000, bce, bcf) new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_@2, gg), gh)) -> new_esEs1(yvy4001, yvy3001, gg, gh) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbc), bbd), bag) -> new_esEs1(yvy4000, yvy3000, bbc, bbd) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(yvy4000, yvy3000, fa, fb, fc) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, fd), ff), cc, dg) -> new_esEs1(yvy4000, yvy3000, fd, ff) new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], baf), bag) -> new_esEs(yvy4000, yvy3000, baf) new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bah), bba), bbb), bag) -> new_esEs0(yvy4000, yvy3000, bah, bba, bbb) new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_Either, ee), ef), dg) -> new_esEs2(yvy4001, yvy3001, ee, ef) new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_Either, bdh), bea)) -> new_esEs2(yvy4000, yvy3000, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(yvy4000, yvy3000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_Maybe, beb)) -> new_esEs3(yvy4000, yvy3000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(yvy4000), Just(yvy3000), app(ty_[], bdb)) -> new_esEs(yvy4000, yvy3000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(yvy4000), Just(yvy3000), app(app(ty_@2, bdf), bdg)) -> new_esEs1(yvy4000, yvy3000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_Either, bg), bh)) -> new_esEs2(yvy4000, yvy3000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(yvy4000, yvy3000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_Maybe, ca)) -> new_esEs3(yvy4000, yvy3000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(app(ty_@2, be), bf)) -> new_esEs1(yvy4000, yvy3000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_Either, fg), fh), cc, dg) -> new_esEs2(yvy4000, yvy3000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_Either, dc), dd)) -> new_esEs2(yvy4002, yvy3002, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_Either, ee), ef), dg) -> new_esEs2(yvy4001, yvy3001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(yvy4001, yvy3001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(yvy4002, yvy3002, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(yvy4000, yvy3000, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(yvy4001, yvy3001, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(yvy4002, yvy3002, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(yvy4000, yvy3000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(ty_[], eh), cc, dg) -> new_esEs(yvy4000, yvy3000, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(ty_[], df), dg) -> new_esEs(yvy4001, yvy3001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(ty_[], cd)) -> new_esEs(yvy4002, yvy3002, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, cc, app(app(ty_@2, da), db)) -> new_esEs1(yvy4002, yvy3002, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), cb, app(app(ty_@2, ec), ed), dg) -> new_esEs1(yvy4001, yvy3001, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), app(app(ty_@2, fd), ff), cc, dg) -> new_esEs1(yvy4000, yvy3000, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_Either, bac), bad), he) -> new_esEs2(yvy4000, yvy3000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_Either, ha), hb)) -> new_esEs2(yvy4001, yvy3001, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_Either, bcg), bch)) -> new_esEs2(yvy4000, yvy3000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_Either, bbe), bbf), bag) -> new_esEs2(yvy4000, yvy3000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(app(ty_@3, hf), hg), hh), he) -> new_esEs0(yvy4000, yvy3000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs0(yvy4001, yvy3001, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_Maybe, hc)) -> new_esEs3(yvy4001, yvy3001, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_Maybe, bae), he) -> new_esEs3(yvy4000, yvy3000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(ty_[], hd), he) -> new_esEs(yvy4000, yvy3000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(ty_[], gc)) -> new_esEs(yvy4001, yvy3001, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), app(app(ty_@2, baa), bab), he) -> new_esEs1(yvy4000, yvy3000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), gb, app(app(ty_@2, gg), gh)) -> new_esEs1(yvy4001, yvy3001, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(yvy4000, yvy3000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, bah), bba), bbb), bag) -> new_esEs0(yvy4000, yvy3000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_Maybe, bbg), bag) -> new_esEs3(yvy4000, yvy3000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_Maybe, bda)) -> new_esEs3(yvy4000, yvy3000, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(ty_[], bca)) -> new_esEs(yvy4000, yvy3000, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(yvy4000), Left(yvy3000), app(ty_[], baf), bag) -> new_esEs(yvy4000, yvy3000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), h) -> new_esEs(yvy4001, yvy3001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(yvy4000, yvy4001), :(yvy3000, yvy3001), app(ty_[], ba)) -> new_esEs(yvy4000, yvy3000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(yvy4000), Right(yvy3000), bbh, app(app(ty_@2, bce), bcf)) -> new_esEs1(yvy4000, yvy3000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(yvy4000), Left(yvy3000), app(app(ty_@2, bbc), bbd), bag) -> new_esEs1(yvy4000, yvy3000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitLT1(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bd, be) -> new_splitLT(yvy64, yvy65, bd, be) new_splitLT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, bb), bb, bc) new_splitLT2(yvy30, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy35, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, h, ba) -> new_splitLT1(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, h), h, ba) new_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) The TRS R consists of the following rules: new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt23(yvy204, yvy206, ty_Integer) -> new_lt10(yvy204, yvy206) new_esEs14(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs22(yvy1530, yvy1540, eff, efg, efh) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, yvy294) -> True new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_gt14(yvy35, yvy30, app(ty_Ratio, ebb)) -> new_gt7(yvy35, yvy30, ebb) new_ltEs23(yvy205, yvy207, ty_Integer) -> new_ltEs9(yvy205, yvy207) new_ltEs24(yvy153, yvy154, ty_Ordering) -> new_ltEs14(yvy153, yvy154) new_lt14(yvy40, yvy30, cee) -> new_esEs12(new_compare17(yvy40, yvy30, cee)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(yvy234, yvy235, False, bhh) -> GT new_esEs9(yvy400, yvy300, app(app(ty_Either, faf), fag)) -> new_esEs27(yvy400, yvy300, faf, fag) new_esEs5(yvy401, yvy301, app(ty_Ratio, dhe)) -> new_esEs19(yvy401, yvy301, dhe) new_compare26(yvy167, yvy168, True, gf, gg) -> EQ new_esEs11(yvy400, yvy300, app(ty_Ratio, fde)) -> new_esEs19(yvy400, yvy300, fde) new_ltEs19(yvy193, yvy196, app(ty_[], dh)) -> new_ltEs12(yvy193, yvy196, dh) new_esEs38(yvy4002, yvy3002, app(ty_Maybe, dca)) -> new_esEs23(yvy4002, yvy3002, dca) new_esEs30(yvy191, yvy194, app(ty_[], ce)) -> new_esEs21(yvy191, yvy194, ce) new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs24(yvy153, yvy154, app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs4(yvy153, yvy154, ece, ecf, ecg) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_ltEs4(yvy1530, yvy1540, fgf, fgg, fgh) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Bool, feh) -> new_ltEs7(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, app(ty_Ratio, beg)) -> new_esEs19(yvy1530, yvy1540, beg) new_esEs6(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, app(app(ty_@2, de), df)) -> new_esEs28(yvy191, yvy194, de, df) new_esEs39(yvy4001, yvy3001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs22(yvy4001, yvy3001, dcd, dce, dcf) new_esEs37(yvy204, yvy206, ty_@0) -> new_esEs15(yvy204, yvy206) new_lt6(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_lt14(yvy1530, yvy1540, ega) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs26(yvy4000, yvy3000) new_lt23(yvy204, yvy206, ty_Double) -> new_lt17(yvy204, yvy206) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, ty_Integer) -> new_esEs18(yvy191, yvy194) new_lt5(yvy1531, yvy1541, ty_Float) -> new_lt11(yvy1531, yvy1541) new_primCompAux0(yvy132, LT) -> LT new_ltEs20(yvy167, yvy168, app(app(ty_@2, hh), baa)) -> new_ltEs18(yvy167, yvy168, hh, baa) new_esEs38(yvy4002, yvy3002, app(app(ty_@2, dbe), dbf)) -> new_esEs28(yvy4002, yvy3002, dbe, dbf) new_not(True) -> False new_lt5(yvy1531, yvy1541, ty_Bool) -> new_lt8(yvy1531, yvy1541) new_lt23(yvy204, yvy206, ty_Int) -> new_lt9(yvy204, yvy206) new_ltEs23(yvy205, yvy207, ty_Char) -> new_ltEs15(yvy205, yvy207) new_esEs32(yvy4000, yvy3000, app(app(ty_Either, bcd), bce)) -> new_esEs27(yvy4000, yvy3000, bcd, bce) new_lt6(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_lt4(yvy1530, yvy1540, efd) new_lt22(yvy1530, yvy1540, app(ty_Ratio, beg)) -> new_lt4(yvy1530, yvy1540, beg) new_ltEs17(Left(yvy1530), Right(yvy1540), fgc, feh) -> True new_esEs7(yvy400, yvy300, app(ty_[], cef)) -> new_esEs21(yvy400, yvy300, cef) new_compare30(LT, LT) -> EQ new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Right(yvy4000), Right(yvy3000), chc, app(app(app(ty_@3, che), chf), chg)) -> new_esEs22(yvy4000, yvy3000, che, chf, chg) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs24(yvy153, yvy154, ty_Double) -> new_ltEs16(yvy153, yvy154) new_compare16(yvy278, yvy279, yvy280, yvy281, True, bch, bda) -> LT new_ltEs20(yvy167, yvy168, ty_Bool) -> new_ltEs7(yvy167, yvy168) new_lt20(yvy191, yvy194, app(app(app(ty_@3, cf), cg), da)) -> new_lt13(yvy191, yvy194, cf, cg, da) new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs14(EQ, EQ) -> True new_compare17(Nothing, Nothing, cee) -> EQ new_gt14(yvy35, yvy30, app(app(ty_Either, ebh), eca)) -> new_gt0(yvy35, yvy30, ebh, eca) new_esEs33(yvy4000, yvy3000, app(ty_Maybe, fef)) -> new_esEs23(yvy4000, yvy3000, fef) new_compare30(GT, GT) -> EQ new_lt11(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_esEs13(yvy1531, yvy1541, app(ty_[], eec)) -> new_esEs21(yvy1531, yvy1541, eec) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(app(ty_Either, fhb), fhc)) -> new_ltEs17(yvy1530, yvy1540, fhb, fhc) new_esEs27(Right(yvy4000), Right(yvy3000), chc, app(ty_Maybe, dad)) -> new_esEs23(yvy4000, yvy3000, dad) new_lt6(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_lt19(yvy1530, yvy1540, egd, ege) new_lt22(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs40(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt2(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) new_ltEs23(yvy205, yvy207, ty_Float) -> new_ltEs11(yvy205, yvy207) new_esEs37(yvy204, yvy206, ty_Bool) -> new_esEs16(yvy204, yvy206) new_compare17(Just(yvy400), Nothing, cee) -> GT new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_esEs40(yvy4000, yvy3000, app(app(ty_@2, dea), deb)) -> new_esEs28(yvy4000, yvy3000, dea, deb) new_esEs5(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, ty_Int) -> new_ltEs8(yvy160, yvy161) new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, gaa), gab), gac)) -> new_ltEs4(yvy1530, yvy1540, gaa, gab, gac) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs22(yvy400, yvy300, egg, egh, eha) new_lt5(yvy1531, yvy1541, ty_@0) -> new_lt7(yvy1531, yvy1541) new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), daf, dag, dah) -> new_asAs(new_esEs40(yvy4000, yvy3000, daf), new_asAs(new_esEs39(yvy4001, yvy3001, dag), new_esEs38(yvy4002, yvy3002, dah))) new_esEs20(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs37(yvy204, yvy206, ty_Double) -> new_esEs26(yvy204, yvy206) new_ltEs20(yvy167, yvy168, app(ty_Maybe, he)) -> new_ltEs13(yvy167, yvy168, he) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Int, feh) -> new_ltEs8(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy167, yvy168, ty_Float) -> new_ltEs11(yvy167, yvy168) new_esEs4(yvy402, yvy302, app(ty_[], dfb)) -> new_esEs21(yvy402, yvy302, dfb) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare32(yvy400, yvy300, ty_@0) -> new_compare11(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, app(app(ty_Either, edf), edg)) -> new_ltEs17(yvy1532, yvy1542, edf, edg) new_lt5(yvy1531, yvy1541, ty_Ordering) -> new_lt15(yvy1531, yvy1541) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Integer, cga) -> new_esEs18(yvy4000, yvy3000) new_esEs19(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), dhg) -> new_asAs(new_esEs35(yvy4000, yvy3000, dhg), new_esEs34(yvy4001, yvy3001, dhg)) new_ltEs23(yvy205, yvy207, app(app(ty_@2, ccf), ccg)) -> new_ltEs18(yvy205, yvy207, ccf, ccg) new_esEs6(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs15(yvy4000, yvy3000) new_gt6(yvy40, yvy30, deg, deh, dfa) -> new_esEs41(new_compare31(yvy40, yvy30, deg, deh, dfa)) new_esEs14(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Ordering) -> new_esEs24(yvy192, yvy195) new_lt23(yvy204, yvy206, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt13(yvy204, yvy206, cdb, cdc, cdd) new_esEs39(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_ltEs19(yvy193, yvy196, ty_Double) -> new_ltEs16(yvy193, yvy196) new_gt14(yvy35, yvy30, app(ty_[], ebc)) -> new_gt1(yvy35, yvy30, ebc) new_esEs38(yvy4002, yvy3002, app(ty_[], dba)) -> new_esEs21(yvy4002, yvy3002, dba) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_[], ffb), feh) -> new_ltEs12(yvy1530, yvy1540, ffb) new_esEs30(yvy191, yvy194, app(ty_Maybe, db)) -> new_esEs23(yvy191, yvy194, db) new_ltEs19(yvy193, yvy196, ty_Ordering) -> new_ltEs14(yvy193, yvy196) new_ltEs20(yvy167, yvy168, ty_@0) -> new_ltEs6(yvy167, yvy168) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cac), cad), cae)) -> new_esEs22(yvy4000, yvy3000, cac, cad, cae) new_lt25(yvy40, yvy30, ty_Char) -> new_lt16(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_ltEs20(yvy167, yvy168, app(ty_Ratio, gh)) -> new_ltEs10(yvy167, yvy168, gh) new_ltEs14(EQ, GT) -> True new_esEs40(yvy4000, yvy3000, app(ty_Maybe, dee)) -> new_esEs23(yvy4000, yvy3000, dee) new_ltEs20(yvy167, yvy168, app(app(ty_Either, hf), hg)) -> new_ltEs17(yvy167, yvy168, hf, hg) new_ltEs5(yvy1532, yvy1542, ty_Ordering) -> new_ltEs14(yvy1532, yvy1542) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs10(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs4(yvy402, yvy302, ty_@0) -> new_esEs15(yvy402, yvy302) new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_esEs21(:(yvy4000, yvy4001), [], dhf) -> False new_esEs21([], :(yvy3000, yvy3001), dhf) -> False new_ltEs14(LT, GT) -> True new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_ltEs21(yvy1531, yvy1541, ty_Char) -> new_ltEs15(yvy1531, yvy1541) new_ltEs14(GT, GT) -> True new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs10(yvy401, yvy301, app(app(ty_Either, fbh), fca)) -> new_esEs27(yvy401, yvy301, fbh, fca) new_esEs33(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_compare11(@0, @0) -> EQ new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_ltEs5(yvy1532, yvy1542, app(ty_Ratio, ech)) -> new_ltEs10(yvy1532, yvy1542, ech) new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, app(ty_Maybe, dhd)) -> new_esEs23(yvy401, yvy301, dhd) new_ltEs5(yvy1532, yvy1542, ty_@0) -> new_ltEs6(yvy1532, yvy1542) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_[], fhh)) -> new_ltEs12(yvy1530, yvy1540, fhh) new_lt23(yvy204, yvy206, ty_Float) -> new_lt11(yvy204, yvy206) new_gt14(yvy35, yvy30, ty_Char) -> new_gt9(yvy35, yvy30) new_ltEs22(yvy160, yvy161, app(ty_Ratio, bgc)) -> new_ltEs10(yvy160, yvy161, bgc) new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, bae), baf), bag)) -> new_esEs22(yvy4001, yvy3001, bae, baf, bag) new_ltEs22(yvy160, yvy161, app(app(ty_Either, bha), bhb)) -> new_ltEs17(yvy160, yvy161, bha, bhb) new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_ltEs22(yvy160, yvy161, ty_Double) -> new_ltEs16(yvy160, yvy161) new_lt22(yvy1530, yvy1540, app(ty_Maybe, bfd)) -> new_lt14(yvy1530, yvy1540, bfd) new_esEs14(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_esEs19(yvy1530, yvy1540, efd) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare29(False, False) -> EQ new_esEs38(yvy4002, yvy3002, app(ty_Ratio, dcb)) -> new_esEs19(yvy4002, yvy3002, dcb) new_esEs33(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt6(yvy1530, yvy1540, app(ty_[], efe)) -> new_lt12(yvy1530, yvy1540, efe) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, app(ty_Maybe, cff)) -> new_esEs23(yvy400, yvy300, cff) new_ltEs21(yvy1531, yvy1541, ty_Double) -> new_ltEs16(yvy1531, yvy1541) new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs12(LT) -> True new_esEs13(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_esEs28(yvy1531, yvy1541, efb, efc) new_esEs6(yvy400, yvy300, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs22(yvy400, yvy300, daf, dag, dah) new_gt0(yvy40, yvy30, bg, bh) -> new_esEs41(new_compare7(yvy40, yvy30, bg, bh)) new_esEs7(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_[], fb)) -> new_lt12(yvy192, yvy195, fb) new_ltEs20(yvy167, yvy168, ty_Integer) -> new_ltEs9(yvy167, yvy168) new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) new_esEs40(yvy4000, yvy3000, app(ty_[], dde)) -> new_esEs21(yvy4000, yvy3000, dde) new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) new_esEs4(yvy402, yvy302, ty_Bool) -> new_esEs16(yvy402, yvy302) new_ltEs19(yvy193, yvy196, ty_Char) -> new_ltEs15(yvy193, yvy196) new_lt23(yvy204, yvy206, ty_Ordering) -> new_lt15(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs22(yvy401, yvy301, dge, dgf, dgg) new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs4(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), ece, ecf, ecg) -> new_pePe(new_lt6(yvy1530, yvy1540, ece), new_asAs(new_esEs14(yvy1530, yvy1540, ece), new_pePe(new_lt5(yvy1531, yvy1541, ecf), new_asAs(new_esEs13(yvy1531, yvy1541, ecf), new_ltEs5(yvy1532, yvy1542, ecg))))) new_lt20(yvy191, yvy194, ty_Integer) -> new_lt10(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chc, app(app(ty_Either, dab), dac)) -> new_esEs27(yvy4000, yvy3000, dab, dac) new_esEs37(yvy204, yvy206, ty_Int) -> new_esEs17(yvy204, yvy206) new_lt5(yvy1531, yvy1541, ty_Integer) -> new_lt10(yvy1531, yvy1541) new_ltEs10(yvy153, yvy154, bhg) -> new_fsEs(new_compare5(yvy153, yvy154, bhg)) new_esEs29(yvy192, yvy195, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs22(yvy192, yvy195, fc, fd, ff) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(app(ty_@2, fhd), fhe)) -> new_ltEs18(yvy1530, yvy1540, fhd, fhe) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare29(True, False) -> GT new_esEs40(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_gt12(yvy40, yvy30) -> new_esEs41(new_compare11(yvy40, yvy30)) new_esEs14(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_esEs31(yvy4001, yvy3001, app(ty_Maybe, bbd)) -> new_esEs23(yvy4001, yvy3001, bbd) new_esEs4(yvy402, yvy302, app(ty_Maybe, dgb)) -> new_esEs23(yvy402, yvy302, dgb) new_compare7(Left(yvy400), Right(yvy300), bg, bh) -> LT new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs12(GT) -> False new_esEs14(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs12(EQ) -> False new_esEs13(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_esEs27(yvy1531, yvy1541, eeh, efa) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, yvy270, ceb, cec, ced) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, yvy270, ceb, cec, ced) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Ratio, fhg)) -> new_ltEs10(yvy1530, yvy1540, fhg) new_lt23(yvy204, yvy206, app(app(ty_Either, cdf), cdg)) -> new_lt18(yvy204, yvy206, cdf, cdg) new_esEs39(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(ty_Ratio, fgd)) -> new_ltEs10(yvy1530, yvy1540, fgd) new_lt21(yvy192, yvy195, ty_Ordering) -> new_lt15(yvy192, yvy195) new_lt20(yvy191, yvy194, ty_Float) -> new_lt11(yvy191, yvy194) new_esEs38(yvy4002, yvy3002, app(app(ty_Either, dbg), dbh)) -> new_esEs27(yvy4002, yvy3002, dbg, dbh) new_esEs10(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_esEs37(yvy204, yvy206, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs22(yvy204, yvy206, cdb, cdc, cdd) new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs32(yvy4000, yvy3000, app(app(ty_@2, bcb), bcc)) -> new_esEs28(yvy4000, yvy3000, bcb, bcc) new_esEs5(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_lt25(yvy40, yvy30, ty_@0) -> new_lt7(yvy40, yvy30) new_esEs36(yvy1530, yvy1540, app(app(ty_@2, bfg), bfh)) -> new_esEs28(yvy1530, yvy1540, bfg, bfh) new_lt5(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_lt13(yvy1531, yvy1541, eed, eee, eef) new_esEs10(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt11(yvy35, yvy30) new_compare0([], :(yvy300, yvy301), bf) -> LT new_compare32(yvy400, yvy300, ty_Bool) -> new_compare29(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Bool) -> new_esEs16(yvy1531, yvy1541) new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, app(ty_Ratio, cd)) -> new_esEs19(yvy191, yvy194, cd) new_ltEs16(yvy153, yvy154) -> new_fsEs(new_compare18(yvy153, yvy154)) new_esEs5(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs13(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_esEs19(yvy1531, yvy1541, eeb) new_lt20(yvy191, yvy194, ty_Bool) -> new_lt8(yvy191, yvy194) new_ltEs23(yvy205, yvy207, app(ty_[], cbg)) -> new_ltEs12(yvy205, yvy207, cbg) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Integer, feh) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_esEs14(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cah), cba)) -> new_esEs27(yvy4000, yvy3000, cah, cba) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_esEs40(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs38(yvy4002, yvy3002, ty_Bool) -> new_esEs16(yvy4002, yvy3002) new_esEs27(Right(yvy4000), Right(yvy3000), chc, app(ty_Ratio, dae)) -> new_esEs19(yvy4000, yvy3000, dae) new_esEs30(yvy191, yvy194, ty_Bool) -> new_esEs16(yvy191, yvy194) new_esEs5(yvy401, yvy301, app(ty_[], dgd)) -> new_esEs21(yvy401, yvy301, dgd) new_compare8(@2(yvy400, yvy401), @2(yvy300, yvy301), gd, ge) -> new_compare28(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, gd), new_esEs10(yvy401, yvy301, ge)), gd, ge) new_lt21(yvy192, yvy195, ty_@0) -> new_lt7(yvy192, yvy195) new_esEs33(yvy4000, yvy3000, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs22(yvy4000, yvy3000, fdg, fdh, fea) new_esEs21([], [], dhf) -> True new_esEs10(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs39(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, app(app(ty_Either, chc), cga)) -> new_esEs27(yvy400, yvy300, chc, cga) new_ltEs13(Nothing, Nothing, fhf) -> True new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Nothing, fhf) -> False new_esEs29(yvy192, yvy195, ty_Int) -> new_esEs17(yvy192, yvy195) new_lt22(yvy1530, yvy1540, app(ty_[], beh)) -> new_lt12(yvy1530, yvy1540, beh) new_gt14(yvy35, yvy30, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_gt6(yvy35, yvy30, ebd, ebe, ebf) new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_ltEs23(yvy205, yvy207, app(ty_Ratio, cbf)) -> new_ltEs10(yvy205, yvy207, cbf) new_esEs10(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs4(yvy402, yvy302, ty_Float) -> new_esEs20(yvy402, yvy302) new_lt12(yvy40, yvy30, bf) -> new_esEs12(new_compare0(yvy40, yvy30, bf)) new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs22(yvy4000, yvy3000, bbg, bbh, bca) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare25(yvy160, yvy161, False, bga, bgb) -> new_compare19(yvy160, yvy161, new_ltEs22(yvy160, yvy161, bga), bga, bgb) new_compare30(GT, EQ) -> GT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cge), cgf), cga) -> new_esEs28(yvy4000, yvy3000, cge, cgf) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Float, feh) -> new_ltEs11(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, app(ty_Ratio, fa)) -> new_esEs19(yvy192, yvy195, fa) new_esEs4(yvy402, yvy302, ty_Ordering) -> new_esEs24(yvy402, yvy302) new_lt21(yvy192, yvy195, app(ty_Maybe, fg)) -> new_lt14(yvy192, yvy195, fg) new_ltEs24(yvy153, yvy154, app(ty_Ratio, bhg)) -> new_ltEs10(yvy153, yvy154, bhg) new_esEs40(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy192, yvy195, ty_Int) -> new_lt9(yvy192, yvy195) new_compare29(False, True) -> LT new_lt25(yvy40, yvy30, ty_Bool) -> new_lt8(yvy40, yvy30) new_esEs11(yvy400, yvy300, app(ty_Maybe, fdd)) -> new_esEs23(yvy400, yvy300, fdd) new_compare210(yvy153, yvy154, False, gba) -> new_compare110(yvy153, yvy154, new_ltEs24(yvy153, yvy154, gba), gba) new_esEs15(@0, @0) -> True new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt20(yvy191, yvy194, app(ty_Maybe, db)) -> new_lt14(yvy191, yvy194, db) new_esEs10(yvy401, yvy301, app(ty_Maybe, fcb)) -> new_esEs23(yvy401, yvy301, fcb) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt6(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, app(ty_[], eda)) -> new_ltEs12(yvy1532, yvy1542, eda) new_ltEs7(True, True) -> True new_gt9(yvy40, yvy30) -> new_esEs41(new_compare12(yvy40, yvy30)) new_esEs6(yvy400, yvy300, app(ty_[], dhf)) -> new_esEs21(yvy400, yvy300, dhf) new_lt20(yvy191, yvy194, ty_@0) -> new_lt7(yvy191, yvy194) new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs11(yvy400, yvy300, app(app(ty_@2, fch), fda)) -> new_esEs28(yvy400, yvy300, fch, fda) new_lt22(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs16(True, True) -> True new_esEs7(yvy400, yvy300, app(app(ty_Either, cfd), cfe)) -> new_esEs27(yvy400, yvy300, cfd, cfe) new_esEs10(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs14(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs41(GT) -> True new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Ratio, ffa), feh) -> new_ltEs10(yvy1530, yvy1540, ffa) new_compare28(yvy204, yvy205, yvy206, yvy207, False, cbd, cbe) -> new_compare15(yvy204, yvy205, yvy206, yvy207, new_lt23(yvy204, yvy206, cbd), new_asAs(new_esEs37(yvy204, yvy206, cbd), new_ltEs23(yvy205, yvy207, cbe)), cbd, cbe) new_esEs14(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_esEs27(yvy1530, yvy1540, egb, egc) new_esEs38(yvy4002, yvy3002, ty_@0) -> new_esEs15(yvy4002, yvy3002) new_esEs37(yvy204, yvy206, app(app(ty_Either, cdf), cdg)) -> new_esEs27(yvy204, yvy206, cdf, cdg) new_gt14(yvy35, yvy30, ty_Bool) -> new_gt8(yvy35, yvy30) new_lt20(yvy191, yvy194, ty_Ordering) -> new_lt15(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chc, app(app(ty_@2, chh), daa)) -> new_esEs28(yvy4000, yvy3000, chh, daa) new_lt21(yvy192, yvy195, ty_Float) -> new_lt11(yvy192, yvy195) new_lt21(yvy192, yvy195, ty_Bool) -> new_lt8(yvy192, yvy195) new_esEs10(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs38(yvy4002, yvy3002, ty_Char) -> new_esEs25(yvy4002, yvy3002) new_esEs10(yvy401, yvy301, app(app(ty_@2, fbf), fbg)) -> new_esEs28(yvy401, yvy301, fbf, fbg) new_compare13(yvy250, yvy251, True, gbb, gbc) -> LT new_esEs33(yvy4000, yvy3000, app(app(ty_@2, feb), fec)) -> new_esEs28(yvy4000, yvy3000, feb, fec) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs25(yvy4000, yvy3000) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs24(yvy153, yvy154, app(ty_[], bdb)) -> new_ltEs12(yvy153, yvy154, bdb) new_esEs33(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs4(yvy402, yvy302, ty_Integer) -> new_esEs18(yvy402, yvy302) new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_lt25(yvy40, yvy30, app(ty_[], bf)) -> new_lt12(yvy40, yvy30, bf) new_esEs13(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs22(yvy1531, yvy1541, eed, eee, eef) new_esEs29(yvy192, yvy195, ty_Double) -> new_esEs26(yvy192, yvy195) new_esEs13(yvy1531, yvy1541, ty_@0) -> new_esEs15(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_lt22(yvy1530, yvy1540, app(app(ty_Either, bfe), bff)) -> new_lt18(yvy1530, yvy1540, bfe, bff) new_compare0(:(yvy400, yvy401), [], bf) -> GT new_compare32(yvy400, yvy300, app(ty_[], eaa)) -> new_compare0(yvy400, yvy300, eaa) new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_esEs31(yvy4001, yvy3001, app(ty_Ratio, bbe)) -> new_esEs19(yvy4001, yvy3001, bbe) new_esEs39(yvy4001, yvy3001, app(app(ty_Either, dda), ddb)) -> new_esEs27(yvy4001, yvy3001, dda, ddb) new_compare32(yvy400, yvy300, ty_Float) -> new_compare9(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_esEs23(yvy1530, yvy1540, ega) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(ty_[], fge)) -> new_ltEs12(yvy1530, yvy1540, fge) new_esEs14(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Double) -> new_esEs26(yvy191, yvy194) new_esEs37(yvy204, yvy206, ty_Ordering) -> new_esEs24(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Float) -> new_esEs20(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_lt18(yvy1531, yvy1541, eeh, efa) new_lt20(yvy191, yvy194, ty_Int) -> new_lt9(yvy191, yvy194) new_esEs37(yvy204, yvy206, app(ty_Maybe, cde)) -> new_esEs23(yvy204, yvy206, cde) new_esEs36(yvy1530, yvy1540, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs22(yvy1530, yvy1540, bfa, bfb, bfc) new_esEs4(yvy402, yvy302, ty_Char) -> new_esEs25(yvy402, yvy302) new_esEs26(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs29(yvy192, yvy195, app(app(ty_@2, gb), gc)) -> new_esEs28(yvy192, yvy195, gb, gc) new_lt20(yvy191, yvy194, app(app(ty_Either, dc), dd)) -> new_lt18(yvy191, yvy194, dc, dd) new_lt5(yvy1531, yvy1541, ty_Int) -> new_lt9(yvy1531, yvy1541) new_esEs36(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Int) -> new_esEs17(yvy191, yvy194) new_lt8(yvy40, yvy30) -> new_esEs12(new_compare29(yvy40, yvy30)) new_compare13(yvy250, yvy251, False, gbb, gbc) -> GT new_esEs11(yvy400, yvy300, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs22(yvy400, yvy300, fce, fcf, fcg) new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs38(yvy4002, yvy3002, ty_Integer) -> new_esEs18(yvy4002, yvy3002) new_esEs13(yvy1531, yvy1541, ty_Char) -> new_esEs25(yvy1531, yvy1541) new_esEs10(yvy401, yvy301, app(ty_Ratio, fcc)) -> new_esEs19(yvy401, yvy301, fcc) new_esEs36(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, app(ty_Ratio, feg)) -> new_esEs19(yvy4000, yvy3000, feg) new_lt10(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) new_lt23(yvy204, yvy206, ty_Bool) -> new_lt8(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Integer) -> new_esEs18(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(ty_[], egf)) -> new_esEs21(yvy400, yvy300, egf) new_primCompAux1(yvy400, yvy300, yvy114, bf) -> new_primCompAux0(yvy114, new_compare32(yvy400, yvy300, bf)) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs37(yvy204, yvy206, ty_Integer) -> new_esEs18(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(ty_Either, dhb), dhc)) -> new_esEs27(yvy401, yvy301, dhb, dhc) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Char, feh) -> new_ltEs15(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_@2, gag), gah)) -> new_ltEs18(yvy1530, yvy1540, gag, gah) new_lt22(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_lt20(yvy191, yvy194, ty_Char) -> new_lt16(yvy191, yvy194) new_esEs40(yvy4000, yvy3000, app(app(ty_Either, dec), ded)) -> new_esEs27(yvy4000, yvy3000, dec, ded) new_esEs16(False, False) -> True new_ltEs21(yvy1531, yvy1541, app(ty_[], bdf)) -> new_ltEs12(yvy1531, yvy1541, bdf) new_esEs38(yvy4002, yvy3002, ty_Float) -> new_esEs20(yvy4002, yvy3002) new_esEs4(yvy402, yvy302, app(app(ty_Either, dfh), dga)) -> new_esEs27(yvy402, yvy302, dfh, dga) new_esEs21(:(yvy4000, yvy4001), :(yvy3000, yvy3001), dhf) -> new_asAs(new_esEs33(yvy4000, yvy3000, dhf), new_esEs21(yvy4001, yvy3001, dhf)) new_compare32(yvy400, yvy300, app(app(app(ty_@3, eab), eac), ead)) -> new_compare31(yvy400, yvy300, eab, eac, ead) new_esEs14(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, True, ca, cb, cc) -> EQ new_ltEs17(Right(yvy1530), Left(yvy1540), fgc, feh) -> False new_esEs36(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, ty_Float) -> new_esEs20(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_[], bgd)) -> new_ltEs12(yvy160, yvy161, bgd) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Ordering, feh) -> new_ltEs14(yvy1530, yvy1540) new_lt21(yvy192, yvy195, app(app(ty_Either, fh), ga)) -> new_lt18(yvy192, yvy195, fh, ga) new_lt6(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_compare110(yvy234, yvy235, True, bhh) -> LT new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_esEs31(yvy4001, yvy3001, app(app(ty_@2, bah), bba)) -> new_esEs28(yvy4001, yvy3001, bah, bba) new_ltEs14(LT, LT) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_@0, feh) -> new_ltEs6(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_esEs23(yvy1531, yvy1541, eeg) new_esEs36(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_ltEs13(Nothing, Just(yvy1540), fhf) -> True new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Ordering) -> new_esEs24(yvy1531, yvy1541) new_lt15(yvy40, yvy30) -> new_esEs12(new_compare30(yvy40, yvy30)) new_gt14(yvy35, yvy30, app(ty_Maybe, ebg)) -> new_gt4(yvy35, yvy30, ebg) new_esEs36(yvy1530, yvy1540, app(ty_Maybe, bfd)) -> new_esEs23(yvy1530, yvy1540, bfd) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs9(yvy400, yvy300, app(ty_[], ehh)) -> new_esEs21(yvy400, yvy300, ehh) new_lt23(yvy204, yvy206, ty_@0) -> new_lt7(yvy204, yvy206) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) new_lt6(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_lt18(yvy1530, yvy1540, egb, egc) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs21(yvy1531, yvy1541, ty_@0) -> new_ltEs6(yvy1531, yvy1541) new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt4(yvy40, yvy30, ecd) -> new_esEs12(new_compare5(yvy40, yvy30, ecd)) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, app(ty_[], dcc)) -> new_esEs21(yvy4001, yvy3001, dcc) new_ltEs5(yvy1532, yvy1542, ty_Char) -> new_ltEs15(yvy1532, yvy1542) new_lt22(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Maybe, gad)) -> new_ltEs13(yvy1530, yvy1540, gad) new_ltEs11(yvy153, yvy154) -> new_fsEs(new_compare9(yvy153, yvy154)) new_ltEs19(yvy193, yvy196, ty_Bool) -> new_ltEs7(yvy193, yvy196) new_lt22(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs37(yvy204, yvy206, ty_Char) -> new_esEs25(yvy204, yvy206) new_esEs36(yvy1530, yvy1540, app(app(ty_Either, bfe), bff)) -> new_esEs27(yvy1530, yvy1540, bfe, bff) new_gt14(yvy35, yvy30, ty_Int) -> new_gt3(yvy35, yvy30) new_esEs32(yvy4000, yvy3000, app(ty_Ratio, bcg)) -> new_esEs19(yvy4000, yvy3000, bcg) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_gt14(yvy35, yvy30, ty_Integer) -> new_gt10(yvy35, yvy30) new_compare29(True, True) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bf) -> new_primCompAux1(yvy400, yvy300, new_compare0(yvy401, yvy301, bf), bf) new_esEs38(yvy4002, yvy3002, ty_Double) -> new_esEs26(yvy4002, yvy3002) new_esEs5(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_ltEs8(yvy153, yvy154) -> new_fsEs(new_compare6(yvy153, yvy154)) new_esEs36(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs38(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) new_esEs14(yvy1530, yvy1540, app(ty_[], efe)) -> new_esEs21(yvy1530, yvy1540, efe) new_esEs40(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs33(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_compare28(yvy204, yvy205, yvy206, yvy207, True, cbd, cbe) -> EQ new_primCompAux0(yvy132, GT) -> GT new_lt6(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt25(yvy40, yvy30, app(app(ty_Either, bg), bh)) -> new_lt18(yvy40, yvy30, bg, bh) new_esEs9(yvy400, yvy300, app(ty_Ratio, fba)) -> new_esEs19(yvy400, yvy300, fba) new_esEs29(yvy192, yvy195, app(ty_[], fb)) -> new_esEs21(yvy192, yvy195, fb) new_lt23(yvy204, yvy206, app(ty_Ratio, cch)) -> new_lt4(yvy204, yvy206, cch) new_lt6(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_compare19(yvy241, yvy242, True, bhe, bhf) -> LT new_esEs23(Nothing, Just(yvy3000), caa) -> False new_esEs23(Just(yvy4000), Nothing, caa) -> False new_lt7(yvy40, yvy30) -> new_esEs12(new_compare11(yvy40, yvy30)) new_lt6(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_gt10(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) new_esEs13(yvy1531, yvy1541, ty_Double) -> new_esEs26(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, ty_Char) -> new_lt16(yvy1531, yvy1541) new_esEs24(GT, GT) -> True new_lt5(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_lt4(yvy1531, yvy1541, eeb) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_lt14(yvy1531, yvy1541, eeg) new_ltEs20(yvy167, yvy168, ty_Ordering) -> new_ltEs14(yvy167, yvy168) new_compare17(Just(yvy400), Just(yvy300), cee) -> new_compare210(yvy400, yvy300, new_esEs7(yvy400, yvy300, cee), cee) new_gt3(yvy40, yvy30) -> new_esEs41(new_compare6(yvy40, yvy30)) new_ltEs24(yvy153, yvy154, ty_Float) -> new_ltEs11(yvy153, yvy154) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(yvy167, yvy168, app(ty_[], ha)) -> new_ltEs12(yvy167, yvy168, ha) new_esEs10(yvy401, yvy301, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs22(yvy401, yvy301, fbc, fbd, fbe) new_lt6(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt8(yvy40, yvy30) -> new_esEs41(new_compare29(yvy40, yvy30)) new_gt14(yvy35, yvy30, ty_Float) -> new_gt13(yvy35, yvy30) new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs19(yvy193, yvy196, ty_@0) -> new_ltEs6(yvy193, yvy196) new_esEs23(Nothing, Nothing, caa) -> True new_compare32(yvy400, yvy300, ty_Ordering) -> new_compare30(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_@2, dcg), dch)) -> new_esEs28(yvy4001, yvy3001, dcg, dch) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Integer) -> new_esEs18(yvy192, yvy195) new_compare7(Left(yvy400), Left(yvy300), bg, bh) -> new_compare25(yvy400, yvy300, new_esEs8(yvy400, yvy300, bg), bg, bh) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_@2, caf), cag)) -> new_esEs28(yvy4000, yvy3000, caf, cag) new_esEs7(yvy400, yvy300, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs22(yvy400, yvy300, ceg, ceh, cfa) new_esEs33(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Char) -> new_lt16(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cgb), cgc), cgd), cga) -> new_esEs22(yvy4000, yvy3000, cgb, cgc, cgd) new_compare32(yvy400, yvy300, ty_Char) -> new_compare12(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, app(app(ty_Either, bbb), bbc)) -> new_esEs27(yvy4001, yvy3001, bbb, bbc) new_esEs4(yvy402, yvy302, app(ty_Ratio, dgc)) -> new_esEs19(yvy402, yvy302, dgc) new_gt5(yvy40, yvy30, gd, ge) -> new_esEs41(new_compare8(yvy40, yvy30, gd, ge)) new_fsEs(yvy295) -> new_not(new_esEs24(yvy295, GT)) new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy4002, yvy3002, ty_Ordering) -> new_esEs24(yvy4002, yvy3002) new_lt6(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs14(EQ, LT) -> False new_compare32(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare32(yvy400, yvy300, app(ty_Maybe, eae)) -> new_compare17(yvy400, yvy300, eae) new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs22(yvy160, yvy161, ty_Char) -> new_ltEs15(yvy160, yvy161) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbb)) -> new_esEs23(yvy4000, yvy3000, cbb) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Maybe, cha), cga) -> new_esEs23(yvy4000, yvy3000, cha) new_ltEs22(yvy160, yvy161, ty_Integer) -> new_ltEs9(yvy160, yvy161) new_ltEs23(yvy205, yvy207, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs4(yvy205, yvy207, cbh, cca, ccb) new_lt23(yvy204, yvy206, app(ty_[], cda)) -> new_lt12(yvy204, yvy206, cda) new_esEs24(LT, LT) -> True new_esEs33(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_lt20(yvy191, yvy194, app(app(ty_@2, de), df)) -> new_lt19(yvy191, yvy194, de, df) new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_esEs38(yvy4002, yvy3002, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs22(yvy4002, yvy3002, dbb, dbc, dbd) new_ltEs15(yvy153, yvy154) -> new_fsEs(new_compare12(yvy153, yvy154)) new_pePe(False, yvy294) -> yvy294 new_ltEs23(yvy205, yvy207, ty_Int) -> new_ltEs8(yvy205, yvy207) new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_compare25(yvy160, yvy161, True, bga, bgb) -> EQ new_gt14(yvy35, yvy30, ty_@0) -> new_gt12(yvy35, yvy30) new_compare210(yvy153, yvy154, True, gba) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_compare32(yvy400, yvy300, app(app(ty_Either, eaf), eag)) -> new_compare7(yvy400, yvy300, eaf, eag) new_esEs39(yvy4001, yvy3001, app(ty_Maybe, ddc)) -> new_esEs23(yvy4001, yvy3001, ddc) new_lt22(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt13(yvy40, yvy30, deg, deh, dfa) -> new_esEs12(new_compare31(yvy40, yvy30, deg, deh, dfa)) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_[], cab)) -> new_esEs21(yvy4000, yvy3000, cab) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ca, cb, cc) -> new_compare10(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, new_lt20(yvy191, yvy194, ca), new_asAs(new_esEs30(yvy191, yvy194, ca), new_pePe(new_lt21(yvy192, yvy195, cb), new_asAs(new_esEs29(yvy192, yvy195, cb), new_ltEs19(yvy193, yvy196, cc)))), ca, cb, cc) new_lt5(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_lt19(yvy1531, yvy1541, efb, efc) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt22(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_ltEs19(yvy193, yvy196, app(app(ty_Either, ee), ef)) -> new_ltEs17(yvy193, yvy196, ee, ef) new_lt6(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_lt13(yvy1530, yvy1540, eff, efg, efh) new_gt7(yvy40, yvy30, ecd) -> new_esEs41(new_compare5(yvy40, yvy30, ecd)) new_esEs7(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs4(yvy402, yvy302, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs22(yvy402, yvy302, dfc, dfd, dfe) new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs8(yvy400, yvy300, app(app(ty_Either, ehd), ehe)) -> new_esEs27(yvy400, yvy300, ehd, ehe) new_ltEs5(yvy1532, yvy1542, app(ty_Maybe, ede)) -> new_ltEs13(yvy1532, yvy1542, ede) new_ltEs14(GT, EQ) -> False new_ltEs22(yvy160, yvy161, ty_Float) -> new_ltEs11(yvy160, yvy161) new_gt4(yvy40, yvy30, cee) -> new_esEs41(new_compare17(yvy40, yvy30, cee)) new_ltEs20(yvy167, yvy168, ty_Double) -> new_ltEs16(yvy167, yvy168) new_compare30(LT, GT) -> LT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_Either, cgg), cgh), cga) -> new_esEs27(yvy4000, yvy3000, cgg, cgh) new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(app(app(ty_@3, fc), fd), ff)) -> new_lt13(yvy192, yvy195, fc, fd, ff) new_esEs28(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bab, bac) -> new_asAs(new_esEs32(yvy4000, yvy3000, bab), new_esEs31(yvy4001, yvy3001, bac)) new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, ty_Float) -> new_ltEs11(yvy1532, yvy1542) new_ltEs19(yvy193, yvy196, app(ty_Ratio, dg)) -> new_ltEs10(yvy193, yvy196, dg) new_compare15(yvy278, yvy279, yvy280, yvy281, True, yvy283, bch, bda) -> new_compare16(yvy278, yvy279, yvy280, yvy281, True, bch, bda) new_esEs29(yvy192, yvy195, ty_Bool) -> new_esEs16(yvy192, yvy195) new_esEs32(yvy4000, yvy3000, app(ty_Maybe, bcf)) -> new_esEs23(yvy4000, yvy3000, bcf) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_Either, ffg), ffh), feh) -> new_ltEs17(yvy1530, yvy1540, ffg, ffh) new_ltEs12(yvy153, yvy154, bdb) -> new_fsEs(new_compare0(yvy153, yvy154, bdb)) new_esEs33(yvy4000, yvy3000, app(app(ty_Either, fed), fee)) -> new_esEs27(yvy4000, yvy3000, fed, fee) new_esEs18(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, app(app(ty_Either, ccd), cce)) -> new_ltEs17(yvy205, yvy207, ccd, cce) new_lt23(yvy204, yvy206, ty_Char) -> new_lt16(yvy204, yvy206) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cbc)) -> new_esEs19(yvy4000, yvy3000, cbc) new_esEs10(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_esEs40(yvy4000, yvy3000, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs22(yvy4000, yvy3000, ddf, ddg, ddh) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Double, cga) -> new_esEs26(yvy4000, yvy3000) new_esEs36(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs23(yvy205, yvy207, ty_Double) -> new_ltEs16(yvy205, yvy207) new_esEs29(yvy192, yvy195, app(ty_Maybe, fg)) -> new_esEs23(yvy192, yvy195, fg) new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_ltEs7(False, True) -> True new_esEs30(yvy191, yvy194, ty_Ordering) -> new_esEs24(yvy191, yvy194) new_ltEs21(yvy1531, yvy1541, app(app(ty_Either, bec), bed)) -> new_ltEs17(yvy1531, yvy1541, bec, bed) new_esEs13(yvy1531, yvy1541, ty_Int) -> new_esEs17(yvy1531, yvy1541) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_lt25(yvy40, yvy30, ty_Float) -> new_lt11(yvy40, yvy30) new_esEs5(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs7(True, False) -> False new_compare30(EQ, GT) -> LT new_ltEs19(yvy193, yvy196, ty_Integer) -> new_ltEs9(yvy193, yvy196) new_compare19(yvy241, yvy242, False, bhe, bhf) -> GT new_ltEs19(yvy193, yvy196, ty_Float) -> new_ltEs11(yvy193, yvy196) new_esEs6(yvy400, yvy300, app(ty_Maybe, caa)) -> new_esEs23(yvy400, yvy300, caa) new_compare12(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ceb, cec, ced) -> LT new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_ltEs7(False, False) -> True new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs11(yvy400, yvy300, app(app(ty_Either, fdb), fdc)) -> new_esEs27(yvy400, yvy300, fdb, fdc) new_lt20(yvy191, yvy194, app(ty_[], ce)) -> new_lt12(yvy191, yvy194, ce) new_esEs29(yvy192, yvy195, ty_@0) -> new_esEs15(yvy192, yvy195) new_ltEs21(yvy1531, yvy1541, app(ty_Ratio, bde)) -> new_ltEs10(yvy1531, yvy1541, bde) new_esEs30(yvy191, yvy194, app(app(app(ty_@3, cf), cg), da)) -> new_esEs22(yvy191, yvy194, cf, cg, da) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Maybe, fff), feh) -> new_ltEs13(yvy1530, yvy1540, fff) new_esEs37(yvy204, yvy206, app(app(ty_@2, cdh), cea)) -> new_esEs28(yvy204, yvy206, cdh, cea) new_compare32(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Integer) -> new_ltEs9(yvy1532, yvy1542) new_esEs30(yvy191, yvy194, ty_@0) -> new_esEs15(yvy191, yvy194) new_lt23(yvy204, yvy206, app(ty_Maybe, cde)) -> new_lt14(yvy204, yvy206, cde) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_esEs14(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_esEs28(yvy1530, yvy1540, egd, ege) new_lt5(yvy1531, yvy1541, app(ty_[], eec)) -> new_lt12(yvy1531, yvy1541, eec) new_esEs37(yvy204, yvy206, app(ty_Ratio, cch)) -> new_esEs19(yvy204, yvy206, cch) new_ltEs24(yvy153, yvy154, app(app(ty_@2, bdc), bdd)) -> new_ltEs18(yvy153, yvy154, bdc, bdd) new_lt22(yvy1530, yvy1540, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt13(yvy1530, yvy1540, bfa, bfb, bfc) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_[], cfh), cga) -> new_esEs21(yvy4000, yvy3000, cfh) new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs14(GT, LT) -> False new_esEs7(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) new_compare30(GT, LT) -> GT new_ltEs9(yvy153, yvy154) -> new_fsEs(new_compare14(yvy153, yvy154)) new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_compare30(EQ, LT) -> GT new_compare7(Right(yvy400), Right(yvy300), bg, bh) -> new_compare26(yvy400, yvy300, new_esEs9(yvy400, yvy300, bh), bg, bh) new_lt19(yvy40, yvy30, gd, ge) -> new_esEs12(new_compare8(yvy40, yvy30, gd, ge)) new_esEs7(yvy400, yvy300, app(ty_Ratio, cfg)) -> new_esEs19(yvy400, yvy300, cfg) new_ltEs21(yvy1531, yvy1541, app(ty_Maybe, beb)) -> new_ltEs13(yvy1531, yvy1541, beb) new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs40(yvy4000, yvy3000, app(ty_Ratio, def)) -> new_esEs19(yvy4000, yvy3000, def) new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, ty_Char) -> new_esEs25(yvy191, yvy194) new_lt25(yvy40, yvy30, ty_Double) -> new_lt17(yvy40, yvy30) new_ltEs24(yvy153, yvy154, ty_Int) -> new_ltEs8(yvy153, yvy154) new_sr0(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Int, cga) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs21(yvy1531, yvy1541, ty_Float) -> new_ltEs11(yvy1531, yvy1541) new_esEs5(yvy401, yvy301, app(app(ty_@2, dgh), dha)) -> new_esEs28(yvy401, yvy301, dgh, dha) new_lt25(yvy40, yvy30, app(ty_Maybe, cee)) -> new_lt14(yvy40, yvy30, cee) new_esEs9(yvy400, yvy300, app(app(ty_@2, fad), fae)) -> new_esEs28(yvy400, yvy300, fad, fae) new_ltEs22(yvy160, yvy161, app(app(ty_@2, bhc), bhd)) -> new_ltEs18(yvy160, yvy161, bhc, bhd) new_lt25(yvy40, yvy30, app(ty_Ratio, ecd)) -> new_lt4(yvy40, yvy30, ecd) new_ltEs20(yvy167, yvy168, ty_Char) -> new_ltEs15(yvy167, yvy168) new_lt21(yvy192, yvy195, ty_Integer) -> new_lt10(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Float, cga) -> new_esEs20(yvy4000, yvy3000) new_gt1(yvy40, yvy30, bf) -> new_esEs41(new_compare0(yvy40, yvy30, bf)) new_asAs(True, yvy229) -> yvy229 new_esEs37(yvy204, yvy206, app(ty_[], cda)) -> new_esEs21(yvy204, yvy206, cda) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_@2, fga), fgb), feh) -> new_ltEs18(yvy1530, yvy1540, fga, fgb) new_lt20(yvy191, yvy194, app(ty_Ratio, cd)) -> new_lt4(yvy191, yvy194, cd) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Ratio, chb), cga) -> new_esEs19(yvy4000, yvy3000, chb) new_ltEs21(yvy1531, yvy1541, ty_Integer) -> new_ltEs9(yvy1531, yvy1541) new_ltEs22(yvy160, yvy161, ty_Ordering) -> new_ltEs14(yvy160, yvy161) new_ltEs23(yvy205, yvy207, ty_Bool) -> new_ltEs7(yvy205, yvy207) new_esEs36(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, app(ty_[], bbf)) -> new_esEs21(yvy4000, yvy3000, bbf) new_gt11(yvy40, yvy30) -> new_esEs41(new_compare30(yvy40, yvy30)) new_compare0([], [], bf) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_Either, gae), gaf)) -> new_ltEs17(yvy1530, yvy1540, gae, gaf) new_sr(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) new_esEs7(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Double, feh) -> new_ltEs16(yvy1530, yvy1540) new_primMulNat0(Zero, Zero) -> Zero new_ltEs22(yvy160, yvy161, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs4(yvy160, yvy161, bge, bgf, bgg) new_esEs8(yvy400, yvy300, app(ty_Maybe, ehf)) -> new_esEs23(yvy400, yvy300, ehf) new_esEs27(Left(yvy4000), Right(yvy3000), chc, cga) -> False new_esEs27(Right(yvy4000), Left(yvy3000), chc, cga) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Char, cga) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, app(ty_Ratio, ddd)) -> new_esEs19(yvy4001, yvy3001, ddd) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, yvy270, ceb, cec, ced) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ceb, cec, ced) new_ltEs21(yvy1531, yvy1541, ty_Ordering) -> new_ltEs14(yvy1531, yvy1541) new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt15(yvy40, yvy30) new_ltEs19(yvy193, yvy196, app(ty_Maybe, ed)) -> new_ltEs13(yvy193, yvy196, ed) new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_Ratio, fa)) -> new_lt4(yvy192, yvy195, fa) new_esEs30(yvy191, yvy194, ty_Float) -> new_esEs20(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chc, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare6(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) new_primCompAux0(yvy132, EQ) -> yvy132 new_esEs27(Left(yvy4000), Left(yvy3000), ty_Ordering, cga) -> new_esEs24(yvy4000, yvy3000) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, ceb, cec, ced) -> GT new_compare7(Right(yvy400), Left(yvy300), bg, bh) -> GT new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs4(yvy402, yvy302, app(app(ty_@2, dff), dfg)) -> new_esEs28(yvy402, yvy302, dff, dfg) new_esEs29(yvy192, yvy195, ty_Float) -> new_esEs20(yvy192, yvy195) new_lt16(yvy40, yvy30) -> new_esEs12(new_compare12(yvy40, yvy30)) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_gt14(yvy35, yvy30, app(app(ty_@2, ecb), ecc)) -> new_gt5(yvy35, yvy30, ecb, ecc) new_ltEs24(yvy153, yvy154, app(app(ty_Either, fgc), feh)) -> new_ltEs17(yvy153, yvy154, fgc, feh) new_ltEs21(yvy1531, yvy1541, app(app(ty_@2, bee), bef)) -> new_ltEs18(yvy1531, yvy1541, bee, bef) new_esEs29(yvy192, yvy195, ty_Char) -> new_esEs25(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(ty_[], beh)) -> new_esEs21(yvy1530, yvy1540, beh) new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Bool) -> new_ltEs7(yvy1532, yvy1542) new_ltEs18(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bdc, bdd) -> new_pePe(new_lt22(yvy1530, yvy1540, bdc), new_asAs(new_esEs36(yvy1530, yvy1540, bdc), new_ltEs21(yvy1531, yvy1541, bdd))) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, ffc), ffd), ffe), feh) -> new_ltEs4(yvy1530, yvy1540, ffc, ffd, ffe) new_esEs9(yvy400, yvy300, app(ty_Maybe, fah)) -> new_esEs23(yvy400, yvy300, fah) new_ltEs5(yvy1532, yvy1542, ty_Double) -> new_ltEs16(yvy1532, yvy1542) new_lt21(yvy192, yvy195, app(app(ty_@2, gb), gc)) -> new_lt19(yvy192, yvy195, gb, gc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(yvy193, yvy196, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs4(yvy193, yvy196, ea, eb, ec) new_compare26(yvy167, yvy168, False, gf, gg) -> new_compare13(yvy167, yvy168, new_ltEs20(yvy167, yvy168, gg), gf, gg) new_lt25(yvy40, yvy30, app(app(app(ty_@3, deg), deh), dfa)) -> new_lt13(yvy40, yvy30, deg, deh, dfa) new_esEs6(yvy400, yvy300, app(app(ty_@2, bab), bac)) -> new_esEs28(yvy400, yvy300, bab, bac) new_esEs31(yvy4001, yvy3001, app(ty_[], bad)) -> new_esEs21(yvy4001, yvy3001, bad) new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_not(False) -> True new_esEs29(yvy192, yvy195, app(app(ty_Either, fh), ga)) -> new_esEs27(yvy192, yvy195, fh, ga) new_lt22(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs8(yvy400, yvy300, app(ty_Ratio, ehg)) -> new_esEs19(yvy400, yvy300, ehg) new_ltEs24(yvy153, yvy154, ty_Integer) -> new_ltEs9(yvy153, yvy154) new_esEs5(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare32(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy153, yvy154, ty_Bool) -> new_ltEs7(yvy153, yvy154) new_esEs30(yvy191, yvy194, app(app(ty_Either, dc), dd)) -> new_esEs27(yvy191, yvy194, dc, dd) new_compare30(EQ, EQ) -> EQ new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), deg, deh, dfa) -> new_compare27(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, deg), new_asAs(new_esEs5(yvy401, yvy301, deh), new_esEs4(yvy402, yvy302, dfa))), deg, deh, dfa) new_esEs41(LT) -> False new_lt18(yvy40, yvy30, bg, bh) -> new_esEs12(new_compare7(yvy40, yvy30, bg, bh)) new_lt5(yvy1531, yvy1541, ty_Double) -> new_lt17(yvy1531, yvy1541) new_esEs39(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare30(LT, EQ) -> LT new_ltEs21(yvy1531, yvy1541, ty_Int) -> new_ltEs8(yvy1531, yvy1541) new_lt22(yvy1530, yvy1540, app(app(ty_@2, bfg), bfh)) -> new_lt19(yvy1530, yvy1540, bfg, bfh) new_esEs9(yvy400, yvy300, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs22(yvy400, yvy300, faa, fab, fac) new_ltEs19(yvy193, yvy196, app(app(ty_@2, eg), eh)) -> new_ltEs18(yvy193, yvy196, eg, eh) new_esEs27(Left(yvy4000), Left(yvy3000), ty_@0, cga) -> new_esEs15(yvy4000, yvy3000) new_ltEs22(yvy160, yvy161, ty_@0) -> new_ltEs6(yvy160, yvy161) new_ltEs5(yvy1532, yvy1542, app(app(app(ty_@3, edb), edc), edd)) -> new_ltEs4(yvy1532, yvy1542, edb, edc, edd) new_esEs8(yvy400, yvy300, app(app(ty_@2, ehb), ehc)) -> new_esEs28(yvy400, yvy300, ehb, ehc) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(yvy191, yvy194, ty_Double) -> new_lt17(yvy191, yvy194) new_ltEs14(LT, EQ) -> True new_ltEs22(yvy160, yvy161, app(ty_Maybe, bgh)) -> new_ltEs13(yvy160, yvy161, bgh) new_esEs6(yvy400, yvy300, app(ty_Ratio, dhg)) -> new_esEs19(yvy400, yvy300, dhg) new_lt25(yvy40, yvy30, app(app(ty_@2, gd), ge)) -> new_lt19(yvy40, yvy30, gd, ge) new_esEs40(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs21(yvy1531, yvy1541, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs4(yvy1531, yvy1541, bdg, bdh, bea) new_esEs11(yvy400, yvy300, app(ty_[], fcd)) -> new_esEs21(yvy400, yvy300, fcd) new_ltEs6(yvy153, yvy154) -> new_fsEs(new_compare11(yvy153, yvy154)) new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Int) -> new_ltEs8(yvy1532, yvy1542) new_esEs25(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_ltEs21(yvy1531, yvy1541, ty_Bool) -> new_ltEs7(yvy1531, yvy1541) new_ltEs5(yvy1532, yvy1542, app(app(ty_@2, edh), eea)) -> new_ltEs18(yvy1532, yvy1542, edh, eea) new_compare15(yvy278, yvy279, yvy280, yvy281, False, yvy283, bch, bda) -> new_compare16(yvy278, yvy279, yvy280, yvy281, yvy283, bch, bda) new_esEs10(yvy401, yvy301, app(ty_[], fbb)) -> new_esEs21(yvy401, yvy301, fbb) new_compare32(yvy400, yvy300, app(app(ty_@2, eah), eba)) -> new_compare8(yvy400, yvy300, eah, eba) new_ltEs20(yvy167, yvy168, ty_Int) -> new_ltEs8(yvy167, yvy168) new_esEs4(yvy402, yvy302, ty_Double) -> new_esEs26(yvy402, yvy302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy153, yvy154, ty_Char) -> new_ltEs15(yvy153, yvy154) new_ltEs24(yvy153, yvy154, app(ty_Maybe, fhf)) -> new_ltEs13(yvy153, yvy154, fhf) new_lt23(yvy204, yvy206, app(app(ty_@2, cdh), cea)) -> new_lt19(yvy204, yvy206, cdh, cea) new_ltEs24(yvy153, yvy154, ty_@0) -> new_ltEs6(yvy153, yvy154) new_primEqNat0(Zero, Zero) -> True new_lt21(yvy192, yvy195, ty_Double) -> new_lt17(yvy192, yvy195) new_compare17(Nothing, Just(yvy300), cee) -> LT new_lt25(yvy40, yvy30, ty_Integer) -> new_lt10(yvy40, yvy30) new_esEs33(yvy4000, yvy3000, app(ty_[], fdf)) -> new_esEs21(yvy4000, yvy3000, fdf) new_esEs27(Right(yvy4000), Right(yvy3000), chc, app(ty_[], chd)) -> new_esEs21(yvy4000, yvy3000, chd) new_ltEs23(yvy205, yvy207, app(ty_Maybe, ccc)) -> new_ltEs13(yvy205, yvy207, ccc) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(ty_Maybe, fha)) -> new_ltEs13(yvy1530, yvy1540, fha) new_asAs(False, yvy229) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Bool, cga) -> new_esEs16(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_@0) -> new_ltEs6(yvy205, yvy207) new_ltEs19(yvy193, yvy196, ty_Int) -> new_ltEs8(yvy193, yvy196) new_gt13(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) new_esEs5(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_lt6(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_compare16(yvy278, yvy279, yvy280, yvy281, False, bch, bda) -> GT new_ltEs20(yvy167, yvy168, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs4(yvy167, yvy168, hb, hc, hd) new_ltEs23(yvy205, yvy207, ty_Ordering) -> new_ltEs14(yvy205, yvy207) new_compare32(yvy400, yvy300, app(ty_Ratio, dhh)) -> new_compare5(yvy400, yvy300, dhh) new_esEs7(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_gt14(yvy35, yvy30, ty_Double) -> new_gt2(yvy35, yvy30) new_esEs7(yvy400, yvy300, app(app(ty_@2, cfb), cfc)) -> new_esEs28(yvy400, yvy300, cfb, cfc) new_ltEs22(yvy160, yvy161, ty_Bool) -> new_ltEs7(yvy160, yvy161) The set Q consists of the following terms: new_esEs8(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt25(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_compare0([], :(x0, x1), x2) new_ltEs24(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(x0, x1, ty_Integer) new_fsEs(x0) new_lt25(x0, x1, ty_Double) new_ltEs10(x0, x1, x2) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Double) new_compare11(@0, @0) new_esEs27(Left(x0), Left(x1), ty_Char, x2) new_esEs4(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_gt8(x0, x1) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulNat0(Zero, Succ(x0)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt25(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(Right(x0), Right(x1), x2, ty_Integer) new_esEs14(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_gt14(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, ty_Float) new_esEs23(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt11(x0, x1) new_esEs10(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_lt25(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_compare29(False, False) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs13(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs23(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Float) new_ltEs7(False, True) new_esEs5(x0, x1, ty_@0) new_ltEs7(True, False) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_gt10(x0, x1) new_esEs6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs21([], [], x0) new_lt20(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Float) new_ltEs9(x0, x1) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt14(x0, x1, ty_Bool) new_compare110(x0, x1, True, x2) new_ltEs22(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux0(x0, GT) new_esEs31(x0, x1, ty_Float) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs23(Nothing, Nothing, x0) new_esEs7(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, x2, x3, True, x4, x5) new_ltEs22(x0, x1, ty_Bool) new_gt14(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs12(GT) new_esEs27(Right(x0), Right(x1), x2, ty_@0) new_esEs7(x0, x1, ty_Integer) new_esEs27(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt23(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Bool) new_compare32(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_lt6(x0, x1, ty_Int) new_compare17(Just(x0), Just(x1), x2) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs27(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Double) new_esEs27(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs39(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_@0) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs23(Nothing, Just(x0), x1) new_ltEs24(x0, x1, ty_Double) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_compare14(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare28(x0, x1, x2, x3, False, x4, x5) new_esEs39(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_@0) new_lt22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_compare32(x0, x1, ty_Bool) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_@0) new_esEs24(LT, GT) new_esEs24(GT, LT) new_compare210(x0, x1, False, x2) new_esEs9(x0, x1, ty_Ordering) new_compare17(Nothing, Just(x0), x1) new_gt4(x0, x1, x2) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs27(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs11(x0, x1, ty_Int) new_lt12(x0, x1, x2) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2) new_esEs40(x0, x1, ty_Integer) new_lt25(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_compare30(LT, LT) new_gt14(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_lt6(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_gt14(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_primCompAux1(x0, x1, x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, ty_Bool) new_compare32(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Int) new_lt6(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, x2, x3, True, x4, x5, x6) new_esEs20(Float(x0, x1), Float(x2, x3)) new_lt5(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_lt8(x0, x1) new_esEs13(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(Left(x0), Left(x1), ty_Float, x2) new_esEs25(Char(x0), Char(x1)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs27(Right(x0), Right(x1), x2, ty_Ordering) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt25(x0, x1, ty_Integer) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Char) new_esEs38(x0, x1, app(ty_[], x2)) new_gt13(x0, x1) new_esEs11(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, x2, x3, False, x4, x5, x6) new_lt22(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_ltEs5(x0, x1, ty_Bool) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Float) new_ltEs6(x0, x1) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs8(x0, x1) new_ltEs5(x0, x1, ty_Integer) new_lt25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, ty_Char) new_sr(x0, x1) new_compare210(x0, x1, True, x2) new_lt19(x0, x1, x2, x3) new_gt14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(GT, GT) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_esEs27(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs30(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs13(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs15(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Integer) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_lt22(x0, x1, ty_Float) new_not(False) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_ltEs24(x0, x1, ty_Ordering) new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs40(x0, x1, ty_Float) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_esEs12(LT) new_esEs24(GT, GT) new_esEs32(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, True, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_gt0(x0, x1, x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_Bool) new_esEs27(Left(x0), Left(x1), ty_Double, x2) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_esEs33(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Bool) new_gt3(x0, x1) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt5(x0, x1, x2, x3) new_esEs27(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt15(x0, x1) new_esEs4(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Float) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt25(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_compare29(True, True) new_lt23(x0, x1, ty_Char) new_esEs41(LT) new_esEs21(:(x0, x1), :(x2, x3), x4) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, ty_Int) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs11(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_lt14(x0, x1, x2) new_lt25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_primCompAux0(x0, EQ) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs9(x0, x1, ty_Float) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt25(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Bool) new_compare13(x0, x1, False, x2, x3) new_compare16(x0, x1, x2, x3, False, x4, x5) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, app(ty_[], x2)) new_compare32(x0, x1, ty_Ordering) new_gt14(x0, x1, ty_Double) new_gt12(x0, x1) new_gt14(x0, x1, ty_Char) new_lt25(x0, x1, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_esEs27(Left(x0), Left(x1), ty_@0, x2) new_ltEs14(LT, LT) new_gt14(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Ordering) new_esEs27(Left(x0), Left(x1), ty_Int, x2) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs33(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs24(EQ, EQ) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Float) new_lt5(x0, x1, ty_Ordering) new_compare17(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Double) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt25(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(True, True) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_ltEs12(x0, x1, x2) new_esEs21([], :(x0, x1), x2) new_lt17(x0, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_compare30(EQ, EQ) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Double) new_esEs41(GT) new_esEs8(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(@0, @0) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(x0, x1, ty_Double) new_lt25(x0, x1, ty_Bool) new_esEs23(Just(x0), Nothing, x1) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Just(x1), ty_Double) new_lt6(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Double) new_ltEs14(LT, GT) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs14(GT, LT) new_esEs27(Left(x0), Left(x1), ty_Integer, x2) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(True, False) new_compare29(False, True) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Char) new_compare7(Right(x0), Right(x1), x2, x3) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_ltEs7(False, False) new_esEs30(x0, x1, ty_Double) new_esEs9(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Int) new_esEs27(Left(x0), Right(x1), x2, x3) new_esEs27(Right(x0), Left(x1), x2, x3) new_primCmpInt(Neg(Zero), Neg(Zero)) new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt5(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_gt14(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs40(x0, x1, ty_@0) new_compare0(:(x0, x1), [], x2) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt21(x0, x1, ty_Bool) new_esEs27(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Float) new_compare26(x0, x1, False, x2, x3) new_lt6(x0, x1, ty_Char) new_esEs16(False, False) new_lt22(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Double) new_gt14(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_compare17(Nothing, Nothing, x0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, ty_Double) new_compare32(x0, x1, ty_Char) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs13(Just(x0), Nothing, x1) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Ordering) new_pePe(False, x0) new_primMulNat0(Zero, Zero) new_asAs(False, x0) new_esEs27(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs24(LT, LT) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare19(x0, x1, True, x2, x3) new_ltEs14(EQ, EQ) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs39(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Integer) new_lt4(x0, x1, x2) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Double) new_esEs13(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_gt11(x0, x1) new_lt16(x0, x1) new_esEs13(x0, x1, ty_Double) new_gt7(x0, x1, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_ltEs13(Nothing, Just(x0), x1) new_esEs6(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Ordering) new_gt9(x0, x1) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_@0) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs5(x0, x1, ty_Float) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_compare12(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare7(Left(x0), Left(x1), x2, x3) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs18(Integer(x0), Integer(x1)) new_ltEs24(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Double) new_compare32(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs39(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare0([], [], x0) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_compare30(GT, GT) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs37(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Double) new_ltEs16(x0, x1) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_esEs17(x0, x1) new_esEs14(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_gt14(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Float) new_compare32(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Integer) new_asAs(True, x0) new_esEs4(x0, x1, ty_Ordering) new_gt14(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs12(EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs41(EQ) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_[], x2)) new_gt2(x0, x1) new_ltEs24(x0, x1, ty_Bool) new_lt9(x0, x1) new_primCompAux0(x0, LT) new_ltEs7(True, True) new_esEs33(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_compare28(x0, x1, x2, x3, True, x4, x5) new_lt21(x0, x1, ty_Double) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs19(x0, x1, ty_@0) new_ltEs13(Nothing, Nothing, x0) new_ltEs5(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Int) new_esEs27(Right(x0), Right(x1), x2, ty_Int) new_esEs16(False, True) new_esEs16(True, False) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs27(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, ty_Float) new_compare6(x0, x1) new_lt13(x0, x1, x2, x3, x4) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs21(:(x0, x1), [], x2) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs14(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Double) new_esEs27(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(Right(x0), Right(x1), x2, ty_Bool) new_esEs11(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_gt1(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_gt6(x0, x1, x2, x3, x4) new_esEs28(@2(x0, x1), @2(x2, x3), x4, x5) 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_splitLT(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 8 *new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, h, ba) -> new_splitLT1(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_splitLT2(yvy30, yvy31, yvy32, Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy34, yvy35, True, h, ba) -> new_splitLT3(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 6 >= 6, 8 >= 7, 9 >= 8 *new_splitLT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitLT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, bb), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 8, 8 >= 9 *new_splitLT1(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, bd, be) -> new_splitLT(yvy64, yvy65, bd, be) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare2(Just(yvy400), Just(yvy300), ge) -> new_compare21(yvy400, yvy300, new_esEs7(yvy400, yvy300, ge), ge) new_compare22(yvy160, yvy161, False, app(app(app(ty_@3, cbb), cbc), cbd), cba) -> new_ltEs0(yvy160, yvy161, cbb, cbc, cbd) new_ltEs(yvy153, yvy154, gf) -> new_compare(yvy153, yvy154, gf) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(app(ty_Either, eg), eh)) -> new_ltEs2(yvy193, yvy196, eg, eh) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs0(yvy1532, yvy1542, hb, hc, hd) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(ty_Maybe, bag)), bac)) -> new_lt1(yvy1531, yvy1541, bag) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(app(ty_Either, bah), bba)), bac)) -> new_lt2(yvy1531, yvy1541, bah, bba) new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs0(yvy205, yvy207, cdh, cea, ceb) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(app(ty_Either, hf), hg)) -> new_ltEs2(yvy1532, yvy1542, hf, hg) new_compare22(yvy160, yvy161, False, app(ty_Maybe, cbe), cba) -> new_ltEs1(yvy160, yvy161, cbe) new_compare23(yvy167, yvy168, False, ccb, app(ty_Maybe, ccg)) -> new_ltEs1(yvy167, yvy168, ccg) new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(app(app(ty_@3, cfb), cfc), cfd), cfa) -> new_lt0(yvy204, yvy206, cfb, cfc, cfd) new_compare3(Right(yvy400), Right(yvy300), caf, cag) -> new_compare23(yvy400, yvy300, new_esEs9(yvy400, yvy300, cag), caf, cag) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(app(app(ty_@3, bbe), bbf), bbg), gh, bac) -> new_lt0(yvy1530, yvy1540, bbe, bbf, bbg) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(app(ty_Either, bah), bba), bac) -> new_lt2(yvy1531, yvy1541, bah, bba) new_primCompAux(yvy400, yvy300, yvy114, app(ty_Maybe, be)) -> new_compare2(yvy400, yvy300, be) new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(app(ty_@2, bfh), bga)) -> new_ltEs3(yvy1530, yvy1540, bfh, bga) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(app(ty_Either, hf), hg))) -> new_ltEs2(yvy1532, yvy1542, hf, hg) new_ltEs2(Left(yvy1530), Left(yvy1540), app(ty_[], bdf), bdg) -> new_ltEs(yvy1530, yvy1540, bdf) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(ty_Maybe, he))) -> new_ltEs1(yvy1532, yvy1542, he) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs0(yvy193, yvy196, ec, ed, ee) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(ty_Maybe, bag), bac) -> new_lt1(yvy1531, yvy1541, bag) new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs0(yvy1530, yvy1540, bcf, bcg, bch) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(app(ty_@2, bhb), bhc)) -> new_ltEs3(yvy1531, yvy1541, bhb, bhc) new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(app(ty_Either, ced), cee)) -> new_ltEs2(yvy205, yvy207, ced, cee) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), gh), bac)) -> new_lt3(yvy1530, yvy1540, bcc, bcd) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(app(ty_@2, cad), cae), bhe) -> new_lt3(yvy1530, yvy1540, cad, cae) new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(app(ty_Either, cff), cfg), cfa) -> new_lt2(yvy204, yvy206, cff, cfg) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(ty_[], bbd)), gh), bac)) -> new_lt(yvy1530, yvy1540, bbd) new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(ty_[], cdg)) -> new_ltEs(yvy205, yvy207, cdg) new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(ty_[], ceh), cfa) -> new_lt(yvy204, yvy206, ceh) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(app(ty_Either, ga), gb), cg) -> new_lt2(yvy192, yvy195, ga, gb) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(ty_Maybe, bgg))) -> new_ltEs1(yvy1531, yvy1541, bgg) new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(ty_Maybe, bda))) -> new_ltEs1(yvy1530, yvy1540, bda) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(ty_[], bbd), gh, bac) -> new_lt(yvy1530, yvy1540, bbd) new_ltEs2(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, bdh), bea), beb), bdg) -> new_ltEs0(yvy1530, yvy1540, bdh, bea, beb) new_compare23(yvy167, yvy168, False, ccb, app(app(ty_@2, cdb), cdc)) -> new_ltEs3(yvy167, yvy168, cdb, cdc) new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(ty_[], bfa))) -> new_ltEs(yvy1530, yvy1540, bfa) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(ty_Maybe, bgg)) -> new_ltEs1(yvy1531, yvy1541, bgg) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(ty_Maybe, fh), cg) -> new_lt1(yvy192, yvy195, fh) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(ty_Maybe, dd), cf, cg) -> new_lt1(yvy191, yvy194, dd) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(ty_[], bab), bac) -> new_lt(yvy1531, yvy1541, bab) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(app(ty_@2, dg), dh), cf, cg) -> new_lt3(yvy191, yvy194, dg, dh) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(ty_[], fc), cg) -> new_lt(yvy192, yvy195, fc) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(ty_Maybe, he)) -> new_ltEs1(yvy1532, yvy1542, he) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(ty_[], bhd), bhe) -> new_lt(yvy1530, yvy1540, bhd) new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(ty_Maybe, cec)) -> new_ltEs1(yvy205, yvy207, cec) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(app(ty_Either, bgh), bha))) -> new_ltEs2(yvy1531, yvy1541, bgh, bha) new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(yvy205, yvy207, cef, ceg) new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(ty_Maybe, bfe)) -> new_ltEs1(yvy1530, yvy1540, bfe) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(ty_Maybe, bbh), gh, bac) -> new_lt1(yvy1530, yvy1540, bbh) new_compare23(yvy167, yvy168, False, ccb, app(app(ty_Either, cch), cda)) -> new_ltEs2(yvy167, yvy168, cch, cda) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(app(app(ty_@3, bgd), bge), bgf))) -> new_ltEs0(yvy1531, yvy1541, bgd, bge, bgf) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(app(ty_Either, bca), bcb), gh, bac) -> new_lt2(yvy1530, yvy1540, bca, bcb) new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(app(app(ty_@3, bfb), bfc), bfd))) -> new_ltEs0(yvy1530, yvy1540, bfb, bfc, bfd) new_compare23(yvy167, yvy168, False, ccb, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs0(yvy167, yvy168, ccd, cce, ccf) new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(ty_Maybe, cfe), cfa) -> new_lt1(yvy204, yvy206, cfe) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(app(app(ty_@3, bgd), bge), bgf)) -> new_ltEs0(yvy1531, yvy1541, bgd, bge, bgf) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(app(ty_Either, de), df), cf, cg) -> new_lt2(yvy191, yvy194, de, df) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(app(app(ty_@3, da), db), dc), cf, cg) -> new_lt0(yvy191, yvy194, da, db, dc) new_ltEs1(Just(yvy1530), Just(yvy1540), app(ty_Maybe, bda)) -> new_ltEs1(yvy1530, yvy1540, bda) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(app(ty_@2, bcc), bcd), gh, bac) -> new_lt3(yvy1530, yvy1540, bcc, bcd) new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(app(ty_Either, bed), bee)), bdg)) -> new_ltEs2(yvy1530, yvy1540, bed, bee) new_ltEs2(Left(yvy1530), Left(yvy1540), app(ty_Maybe, bec), bdg) -> new_ltEs1(yvy1530, yvy1540, bec) new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(ty_Maybe, bec)), bdg)) -> new_ltEs1(yvy1530, yvy1540, bec) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(ty_Maybe, ef)) -> new_ltEs1(yvy193, yvy196, ef) new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(app(ty_Either, bff), bfg))) -> new_ltEs2(yvy1530, yvy1540, bff, bfg) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(ty_Maybe, caa), bhe) -> new_lt1(yvy1530, yvy1540, caa) new_lt1(yvy40, yvy30, ge) -> new_compare2(yvy40, yvy30, ge) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(ty_[], ha)) -> new_ltEs(yvy1532, yvy1542, ha) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(app(ty_Either, bgh), bha)) -> new_ltEs2(yvy1531, yvy1541, bgh, bha) new_ltEs1(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs0(yvy1530, yvy1540, bcf, bcg, bch) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(app(ty_@2, bbb), bbc), bac) -> new_lt3(yvy1531, yvy1541, bbb, bbc) new_lt0(yvy40, yvy30, cb, cc, cd) -> new_compare1(yvy40, yvy30, cb, cc, cd) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(ty_[], bgc)) -> new_ltEs(yvy1531, yvy1541, bgc) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(ty_[], eb)) -> new_ltEs(yvy193, yvy196, eb) new_ltEs1(Just(yvy1530), Just(yvy1540), app(app(ty_@2, bdd), bde)) -> new_ltEs3(yvy1530, yvy1540, bdd, bde) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(app(ty_@2, gc), gd), cg) -> new_lt3(yvy192, yvy195, gc, gd) new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(app(app(ty_@3, bdh), bea), beb)), bdg)) -> new_ltEs0(yvy1530, yvy1540, bdh, bea, beb) new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(app(ty_@2, bef), beg)), bdg)) -> new_ltEs3(yvy1530, yvy1540, bef, beg) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(app(app(ty_@3, bbe), bbf), bbg)), gh), bac)) -> new_lt0(yvy1530, yvy1540, bbe, bbf, bbg) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(app(ty_@2, fa), fb)) -> new_ltEs3(yvy193, yvy196, fa, fb) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(app(ty_@2, cad), cae)), bhe)) -> new_lt3(yvy1530, yvy1540, cad, cae) new_compare22(yvy160, yvy161, False, app(app(ty_@2, cbh), cca), cba) -> new_ltEs3(yvy160, yvy161, cbh, cca) new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(app(ty_@2, cfh), cga), cfa) -> new_lt3(yvy204, yvy206, cfh, cga) new_compare21(yvy153, yvy154, False, app(ty_[], gf)) -> new_compare(yvy153, yvy154, gf) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(app(ty_@2, hh), baa))) -> new_ltEs3(yvy1532, yvy1542, hh, baa) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(app(ty_@2, bhb), bhc))) -> new_ltEs3(yvy1531, yvy1541, bhb, bhc) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(app(ty_Either, cab), cac), bhe) -> new_lt2(yvy1530, yvy1540, cab, cac) new_lt2(yvy40, yvy30, caf, cag) -> new_compare3(yvy40, yvy30, caf, cag) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(app(app(ty_@3, bad), bae), baf), bac) -> new_lt0(yvy1531, yvy1541, bad, bae, baf) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(ty_[], bgc))) -> new_ltEs(yvy1531, yvy1541, bgc) new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(app(ty_@2, bfh), bga))) -> new_ltEs3(yvy1530, yvy1540, bfh, bga) new_lt(yvy40, yvy30, h) -> new_compare(yvy40, yvy30, h) new_compare3(Left(yvy400), Left(yvy300), caf, cag) -> new_compare22(yvy400, yvy300, new_esEs8(yvy400, yvy300, caf), caf, cag) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(app(ty_Either, cab), cac)), bhe)) -> new_lt2(yvy1530, yvy1540, cab, cac) new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(app(ty_@2, hh), baa)) -> new_ltEs3(yvy1532, yvy1542, hh, baa) new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_primCompAux(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h) new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(app(ty_@2, bdd), bde))) -> new_ltEs3(yvy1530, yvy1540, bdd, bde) new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(app(ty_Either, bff), bfg)) -> new_ltEs2(yvy1530, yvy1540, bff, bfg) new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(app(app(ty_@3, bhf), bhg), bhh), bhe) -> new_lt0(yvy1530, yvy1540, bhf, bhg, bhh) new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(app(ty_Either, bdb), bdc))) -> new_ltEs2(yvy1530, yvy1540, bdb, bdc) new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs0(yvy1530, yvy1540, bfb, bfc, bfd) new_compare4(@2(yvy400, yvy401), @2(yvy300, yvy301), cdd, cde) -> new_compare24(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cdd), new_esEs10(yvy401, yvy301, cde)), cdd, cde) new_primCompAux(yvy400, yvy300, yvy114, app(ty_[], ba)) -> new_compare(yvy400, yvy300, ba) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(ty_Maybe, caa)), bhe)) -> new_lt1(yvy1530, yvy1540, caa) new_compare23(yvy167, yvy168, False, ccb, app(ty_[], ccc)) -> new_ltEs(yvy167, yvy168, ccc) new_ltEs2(Left(yvy1530), Left(yvy1540), app(app(ty_@2, bef), beg), bdg) -> new_ltEs3(yvy1530, yvy1540, bef, beg) new_compare22(yvy160, yvy161, False, app(ty_[], cah), cba) -> new_ltEs(yvy160, yvy161, cah) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(ty_[], ha))) -> new_ltEs(yvy1532, yvy1542, ha) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs0(yvy1532, yvy1542, hb, hc, hd) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(ty_[], ce), cf, cg) -> new_lt(yvy191, yvy194, ce) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(app(app(ty_@3, bad), bae), baf)), bac)) -> new_lt0(yvy1531, yvy1541, bad, bae, baf) new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(ty_[], bce))) -> new_ltEs(yvy1530, yvy1540, bce) new_lt3(yvy40, yvy30, cdd, cde) -> new_compare4(yvy40, yvy30, cdd, cde) new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_compare(yvy401, yvy301, h) new_primCompAux(yvy400, yvy300, yvy114, app(app(ty_@2, bh), ca)) -> new_compare4(yvy400, yvy300, bh, ca) new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(ty_[], bdf)), bdg)) -> new_ltEs(yvy1530, yvy1540, bdf) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(app(ty_Either, bca), bcb)), gh), bac)) -> new_lt2(yvy1530, yvy1540, bca, bcb) new_ltEs2(Left(yvy1530), Left(yvy1540), app(app(ty_Either, bed), bee), bdg) -> new_ltEs2(yvy1530, yvy1540, bed, bee) new_primCompAux(yvy400, yvy300, yvy114, app(app(ty_Either, bf), bg)) -> new_compare3(yvy400, yvy300, bf, bg) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(ty_[], bab)), bac)) -> new_lt(yvy1531, yvy1541, bab) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(app(app(ty_@3, bhf), bhg), bhh)), bhe)) -> new_lt0(yvy1530, yvy1540, bhf, bhg, bhh) new_ltEs1(Just(yvy1530), Just(yvy1540), app(ty_[], bce)) -> new_ltEs(yvy1530, yvy1540, bce) new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(ty_[], bhd)), bhe)) -> new_lt(yvy1530, yvy1540, bhd) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(app(ty_@2, bbb), bbc)), bac)) -> new_lt3(yvy1531, yvy1541, bbb, bbc) new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(app(app(ty_@3, fd), ff), fg), cg) -> new_lt0(yvy192, yvy195, fd, ff, fg) new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(ty_[], bfa)) -> new_ltEs(yvy1530, yvy1540, bfa) new_primCompAux(yvy400, yvy300, yvy114, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(yvy400, yvy300, bb, bc, bd) new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(ty_Maybe, bbh)), gh), bac)) -> new_lt1(yvy1530, yvy1540, bbh) new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(ty_Maybe, bfe))) -> new_ltEs1(yvy1530, yvy1540, bfe) new_compare22(yvy160, yvy161, False, app(app(ty_Either, cbf), cbg), cba) -> new_ltEs2(yvy160, yvy161, cbf, cbg) new_compare1(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), cb, cc, cd) -> new_compare20(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, cb), new_asAs(new_esEs5(yvy401, yvy301, cc), new_esEs4(yvy402, yvy302, cd))), cb, cc, cd) new_ltEs1(Just(yvy1530), Just(yvy1540), app(app(ty_Either, bdb), bdc)) -> new_ltEs2(yvy1530, yvy1540, bdb, bdc) The TRS R consists of the following rules: new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_ltEs21(yvy1531, yvy1541, ty_@0) -> new_ltEs6(yvy1531, yvy1541) new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs22(yvy1530, yvy1540, bbe, bbf, bbg) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(yvy204, yvy206, ty_Integer) -> new_lt10(yvy204, yvy206) new_lt4(yvy40, yvy30, cgb) -> new_esEs12(new_compare5(yvy40, yvy30, cgb)) new_pePe(True, yvy294) -> True new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_ltEs5(yvy1532, yvy1542, ty_Char) -> new_ltEs15(yvy1532, yvy1542) new_esEs39(yvy4001, yvy3001, app(ty_[], fdc)) -> new_esEs21(yvy4001, yvy3001, fdc) new_ltEs23(yvy205, yvy207, ty_Integer) -> new_ltEs9(yvy205, yvy207) new_ltEs24(yvy153, yvy154, ty_Ordering) -> new_ltEs14(yvy153, yvy154) new_lt22(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Maybe, bda)) -> new_ltEs13(yvy1530, yvy1540, bda) new_ltEs11(yvy153, yvy154) -> new_fsEs(new_compare9(yvy153, yvy154)) new_ltEs19(yvy193, yvy196, ty_Bool) -> new_ltEs7(yvy193, yvy196) new_lt14(yvy40, yvy30, ge) -> new_esEs12(new_compare17(yvy40, yvy30, ge)) new_lt22(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs37(yvy204, yvy206, ty_Char) -> new_esEs25(yvy204, yvy206) new_esEs36(yvy1530, yvy1540, app(app(ty_Either, cab), cac)) -> new_esEs27(yvy1530, yvy1540, cab, cac) new_esEs32(yvy4000, yvy3000, app(ty_Ratio, dgh)) -> new_esEs19(yvy4000, yvy3000, dgh) new_compare110(yvy234, yvy235, False, ech) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_esEs9(yvy400, yvy300, app(app(ty_Either, chd), che)) -> new_esEs27(yvy400, yvy300, chd, che) new_esEs5(yvy401, yvy301, app(ty_Ratio, fgh)) -> new_esEs19(yvy401, yvy301, fgh) new_compare26(yvy167, yvy168, True, ccb, dea) -> EQ new_esEs11(yvy400, yvy300, app(ty_Ratio, dba)) -> new_esEs19(yvy400, yvy300, dba) new_compare29(True, True) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_primCompAux1(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h) new_ltEs19(yvy193, yvy196, app(ty_[], eb)) -> new_ltEs12(yvy193, yvy196, eb) new_esEs38(yvy4002, yvy3002, ty_Double) -> new_esEs26(yvy4002, yvy3002) new_esEs5(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs38(yvy4002, yvy3002, app(ty_Maybe, fda)) -> new_esEs23(yvy4002, yvy3002, fda) new_ltEs8(yvy153, yvy154) -> new_fsEs(new_compare6(yvy153, yvy154)) new_esEs30(yvy191, yvy194, app(ty_[], ce)) -> new_esEs21(yvy191, yvy194, ce) new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs36(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs38(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) new_esEs14(yvy1530, yvy1540, app(ty_[], bbd)) -> new_esEs21(yvy1530, yvy1540, bbd) new_ltEs24(yvy153, yvy154, app(app(app(ty_@3, gg), gh), bac)) -> new_ltEs4(yvy153, yvy154, gg, gh, bac) new_esEs40(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs33(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs24(EQ, EQ) -> True new_primCompAux0(yvy132, GT) -> GT new_compare28(yvy204, yvy205, yvy206, yvy207, True, cdf, cfa) -> EQ new_lt6(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs4(yvy1530, yvy1540, bfb, bfc, bfd) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Bool, bdg) -> new_ltEs7(yvy1530, yvy1540) new_esEs9(yvy400, yvy300, app(ty_Ratio, chg)) -> new_esEs19(yvy400, yvy300, chg) new_esEs36(yvy1530, yvy1540, app(ty_Ratio, ecb)) -> new_esEs19(yvy1530, yvy1540, ecb) new_esEs6(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs29(yvy192, yvy195, app(ty_[], fc)) -> new_esEs21(yvy192, yvy195, fc) new_lt23(yvy204, yvy206, app(ty_Ratio, eee)) -> new_lt4(yvy204, yvy206, eee) new_esEs30(yvy191, yvy194, app(app(ty_@2, dg), dh)) -> new_esEs28(yvy191, yvy194, dg, dh) new_esEs39(yvy4001, yvy3001, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs22(yvy4001, yvy3001, fdd, fde, fdf) new_lt6(yvy1530, yvy1540, app(ty_Maybe, bbh)) -> new_lt14(yvy1530, yvy1540, bbh) new_esEs37(yvy204, yvy206, ty_@0) -> new_esEs15(yvy204, yvy206) new_lt6(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs26(yvy4000, yvy3000) new_compare19(yvy241, yvy242, True, ece, ecf) -> LT new_lt23(yvy204, yvy206, ty_Double) -> new_lt17(yvy204, yvy206) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs23(Nothing, Just(yvy3000), eda) -> False new_esEs23(Just(yvy4000), Nothing, eda) -> False new_esEs23(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, ty_Integer) -> new_esEs18(yvy191, yvy194) new_lt6(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt7(yvy40, yvy30) -> new_esEs12(new_compare11(yvy40, yvy30)) new_lt5(yvy1531, yvy1541, ty_Float) -> new_lt11(yvy1531, yvy1541) new_primCompAux0(yvy132, LT) -> LT new_ltEs20(yvy167, yvy168, app(app(ty_@2, cdb), cdc)) -> new_ltEs18(yvy167, yvy168, cdb, cdc) new_esEs38(yvy4002, yvy3002, app(app(ty_@2, fce), fcf)) -> new_esEs28(yvy4002, yvy3002, fce, fcf) new_esEs13(yvy1531, yvy1541, ty_Double) -> new_esEs26(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, ty_Char) -> new_lt16(yvy1531, yvy1541) new_esEs24(GT, GT) -> True new_not(True) -> False new_lt5(yvy1531, yvy1541, ty_Bool) -> new_lt8(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(ty_Ratio, cgd)) -> new_lt4(yvy1531, yvy1541, cgd) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_Maybe, bag)) -> new_lt14(yvy1531, yvy1541, bag) new_lt23(yvy204, yvy206, ty_Int) -> new_lt9(yvy204, yvy206) new_ltEs20(yvy167, yvy168, ty_Ordering) -> new_ltEs14(yvy167, yvy168) new_ltEs23(yvy205, yvy207, ty_Char) -> new_ltEs15(yvy205, yvy207) new_compare17(Just(yvy400), Just(yvy300), ge) -> new_compare210(yvy400, yvy300, new_esEs7(yvy400, yvy300, ge), ge) new_ltEs24(yvy153, yvy154, ty_Float) -> new_ltEs11(yvy153, yvy154) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(yvy167, yvy168, app(ty_[], ccc)) -> new_ltEs12(yvy167, yvy168, ccc) new_esEs10(yvy401, yvy301, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(yvy401, yvy301, dch, dda, ddb) new_lt6(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs19(yvy193, yvy196, ty_@0) -> new_ltEs6(yvy193, yvy196) new_esEs23(Nothing, Nothing, eda) -> True new_compare32(yvy400, yvy300, ty_Ordering) -> new_compare30(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_@2, fdg), fdh)) -> new_esEs28(yvy4001, yvy3001, fdg, fdh) new_esEs32(yvy4000, yvy3000, app(app(ty_Either, dge), dgf)) -> new_esEs27(yvy4000, yvy3000, dge, dgf) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_lt6(yvy1530, yvy1540, app(ty_Ratio, cge)) -> new_lt4(yvy1530, yvy1540, cge) new_esEs29(yvy192, yvy195, ty_Integer) -> new_esEs18(yvy192, yvy195) new_compare7(Left(yvy400), Left(yvy300), caf, cag) -> new_compare25(yvy400, yvy300, new_esEs8(yvy400, yvy300, caf), caf, cag) new_lt22(yvy1530, yvy1540, app(ty_Ratio, ecb)) -> new_lt4(yvy1530, yvy1540, ecb) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_@2, edf), edg)) -> new_esEs28(yvy4000, yvy3000, edf, edg) new_esEs33(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, app(app(app(ty_@3, eah), eba), ebb)) -> new_esEs22(yvy400, yvy300, eah, eba, ebb) new_ltEs17(Left(yvy1530), Right(yvy1540), beh, bdg) -> True new_esEs7(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Char) -> new_lt16(yvy192, yvy195) new_esEs7(yvy400, yvy300, app(ty_[], eag)) -> new_esEs21(yvy400, yvy300, eag) new_compare30(LT, LT) -> EQ new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, ehe), ehf), ehg), egd) -> new_esEs22(yvy4000, yvy3000, ehe, ehf, ehg) new_esEs27(Right(yvy4000), Right(yvy3000), egc, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs22(yvy4000, yvy3000, fag, fah, fba) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_compare32(yvy400, yvy300, ty_Char) -> new_compare12(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, app(app(ty_Either, dfc), dfd)) -> new_esEs27(yvy4001, yvy3001, dfc, dfd) new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs24(yvy153, yvy154, ty_Double) -> new_ltEs16(yvy153, yvy154) new_compare16(yvy278, yvy279, yvy280, yvy281, True, dha, dhb) -> LT new_ltEs20(yvy167, yvy168, ty_Bool) -> new_ltEs7(yvy167, yvy168) new_lt20(yvy191, yvy194, app(app(app(ty_@3, da), db), dc)) -> new_lt13(yvy191, yvy194, da, db, dc) new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs4(yvy402, yvy302, app(ty_Ratio, efg)) -> new_esEs19(yvy402, yvy302, efg) new_ltEs14(EQ, EQ) -> True new_fsEs(yvy295) -> new_not(new_esEs24(yvy295, GT)) new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_compare17(Nothing, Nothing, ge) -> EQ new_esEs33(yvy4000, yvy3000, app(ty_Maybe, ead)) -> new_esEs23(yvy4000, yvy3000, ead) new_esEs40(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_compare30(GT, GT) -> EQ new_lt11(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) new_esEs39(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_esEs13(yvy1531, yvy1541, app(ty_[], bab)) -> new_esEs21(yvy1531, yvy1541, bab) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, app(app(ty_Either, bff), bfg)) -> new_ltEs17(yvy1530, yvy1540, bff, bfg) new_esEs38(yvy4002, yvy3002, ty_Ordering) -> new_esEs24(yvy4002, yvy3002) new_lt6(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), egc, app(ty_Maybe, fbf)) -> new_esEs23(yvy4000, yvy3000, fbf) new_ltEs14(EQ, LT) -> False new_compare32(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare32(yvy400, yvy300, app(ty_Maybe, be)) -> new_compare17(yvy400, yvy300, be) new_lt6(yvy1530, yvy1540, app(app(ty_@2, bcc), bcd)) -> new_lt19(yvy1530, yvy1540, bcc, bcd) new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_lt22(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs40(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_ltEs22(yvy160, yvy161, ty_Char) -> new_ltEs15(yvy160, yvy161) new_ltEs23(yvy205, yvy207, ty_Float) -> new_ltEs11(yvy205, yvy207) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Maybe, eeb)) -> new_esEs23(yvy4000, yvy3000, eeb) new_esEs37(yvy204, yvy206, ty_Bool) -> new_esEs16(yvy204, yvy206) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Maybe, fad), egd) -> new_esEs23(yvy4000, yvy3000, fad) new_compare17(Just(yvy400), Nothing, ge) -> GT new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_esEs40(yvy4000, yvy3000, app(app(ty_@2, ffa), ffb)) -> new_esEs28(yvy4000, yvy3000, ffa, ffb) new_ltEs22(yvy160, yvy161, ty_Integer) -> new_ltEs9(yvy160, yvy161) new_ltEs23(yvy205, yvy207, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs4(yvy205, yvy207, cdh, cea, ceb) new_lt23(yvy204, yvy206, app(ty_[], ceh)) -> new_lt12(yvy204, yvy206, ceh) new_esEs5(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, ty_Int) -> new_ltEs8(yvy160, yvy161) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs4(yvy1530, yvy1540, bcf, bcg, bch) new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs24(LT, LT) -> True new_esEs33(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_esEs8(yvy400, yvy300, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs22(yvy400, yvy300, dbc, dbd, dbe) new_lt5(yvy1531, yvy1541, ty_@0) -> new_lt7(yvy1531, yvy1541) new_lt20(yvy191, yvy194, app(app(ty_@2, dg), dh)) -> new_lt19(yvy191, yvy194, dg, dh) new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), efh, ega, egb) -> new_asAs(new_esEs40(yvy4000, yvy3000, efh), new_asAs(new_esEs39(yvy4001, yvy3001, ega), new_esEs38(yvy4002, yvy3002, egb))) new_esEs20(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_esEs38(yvy4002, yvy3002, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs22(yvy4002, yvy3002, fcb, fcc, fcd) new_ltEs15(yvy153, yvy154) -> new_fsEs(new_compare12(yvy153, yvy154)) new_esEs37(yvy204, yvy206, ty_Double) -> new_esEs26(yvy204, yvy206) new_pePe(False, yvy294) -> yvy294 new_ltEs20(yvy167, yvy168, app(ty_Maybe, ccg)) -> new_ltEs13(yvy167, yvy168, ccg) new_ltEs23(yvy205, yvy207, ty_Int) -> new_ltEs8(yvy205, yvy207) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Int, bdg) -> new_ltEs8(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_ltEs20(yvy167, yvy168, ty_Float) -> new_ltEs11(yvy167, yvy168) new_esEs4(yvy402, yvy302, app(ty_[], eef)) -> new_esEs21(yvy402, yvy302, eef) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare32(yvy400, yvy300, ty_@0) -> new_compare11(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, app(app(ty_Either, hf), hg)) -> new_ltEs17(yvy1532, yvy1542, hf, hg) new_lt5(yvy1531, yvy1541, ty_Ordering) -> new_lt15(yvy1531, yvy1541) new_compare25(yvy160, yvy161, True, ecc, cba) -> EQ new_esEs27(Left(yvy4000), Left(yvy3000), ty_Integer, egd) -> new_esEs18(yvy4000, yvy3000) new_compare210(yvy153, yvy154, True, fbh) -> EQ new_esEs19(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), eaf) -> new_asAs(new_esEs35(yvy4000, yvy3000, eaf), new_esEs34(yvy4001, yvy3001, eaf)) new_ltEs23(yvy205, yvy207, app(app(ty_@2, cef), ceg)) -> new_ltEs18(yvy205, yvy207, cef, ceg) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs6(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs15(yvy4000, yvy3000) new_compare32(yvy400, yvy300, app(app(ty_Either, bf), bg)) -> new_compare7(yvy400, yvy300, bf, bg) new_esEs14(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, app(ty_Maybe, fec)) -> new_esEs23(yvy4001, yvy3001, fec) new_esEs29(yvy192, yvy195, ty_Ordering) -> new_esEs24(yvy192, yvy195) new_lt23(yvy204, yvy206, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_lt13(yvy204, yvy206, cfb, cfc, cfd) new_esEs39(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_lt22(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt13(yvy40, yvy30, cb, cc, cd) -> new_esEs12(new_compare31(yvy40, yvy30, cb, cc, cd)) new_ltEs19(yvy193, yvy196, ty_Double) -> new_ltEs16(yvy193, yvy196) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_[], edb)) -> new_esEs21(yvy4000, yvy3000, edb) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, cg) -> new_compare10(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, new_lt20(yvy191, yvy194, ea), new_asAs(new_esEs30(yvy191, yvy194, ea), new_pePe(new_lt21(yvy192, yvy195, cf), new_asAs(new_esEs29(yvy192, yvy195, cf), new_ltEs19(yvy193, yvy196, cg)))), ea, cf, cg) new_esEs38(yvy4002, yvy3002, app(ty_[], fca)) -> new_esEs21(yvy4002, yvy3002, fca) new_lt5(yvy1531, yvy1541, app(app(ty_@2, bbb), bbc)) -> new_lt19(yvy1531, yvy1541, bbb, bbc) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_[], bdf), bdg) -> new_ltEs12(yvy1530, yvy1540, bdf) new_lt22(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, app(ty_Maybe, dd)) -> new_esEs23(yvy191, yvy194, dd) new_ltEs19(yvy193, yvy196, app(app(ty_Either, eg), eh)) -> new_ltEs17(yvy193, yvy196, eg, eh) new_lt6(yvy1530, yvy1540, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_lt13(yvy1530, yvy1540, bbe, bbf, bbg) new_ltEs19(yvy193, yvy196, ty_Ordering) -> new_ltEs14(yvy193, yvy196) new_ltEs20(yvy167, yvy168, ty_@0) -> new_ltEs6(yvy167, yvy168) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, edc), edd), ede)) -> new_esEs22(yvy4000, yvy3000, edc, edd, ede) new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_ltEs20(yvy167, yvy168, app(ty_Ratio, deb)) -> new_ltEs10(yvy167, yvy168, deb) new_esEs7(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs4(yvy402, yvy302, app(app(app(ty_@3, eeg), eeh), efa)) -> new_esEs22(yvy402, yvy302, eeg, eeh, efa) new_esEs8(yvy400, yvy300, app(app(ty_Either, dbh), dca)) -> new_esEs27(yvy400, yvy300, dbh, dca) new_ltEs14(EQ, GT) -> True new_esEs40(yvy4000, yvy3000, app(ty_Maybe, ffe)) -> new_esEs23(yvy4000, yvy3000, ffe) new_ltEs5(yvy1532, yvy1542, app(ty_Maybe, he)) -> new_ltEs13(yvy1532, yvy1542, he) new_ltEs14(GT, EQ) -> False new_ltEs20(yvy167, yvy168, app(app(ty_Either, cch), cda)) -> new_ltEs17(yvy167, yvy168, cch, cda) new_ltEs5(yvy1532, yvy1542, ty_Ordering) -> new_ltEs14(yvy1532, yvy1542) new_ltEs22(yvy160, yvy161, ty_Float) -> new_ltEs11(yvy160, yvy161) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs20(yvy167, yvy168, ty_Double) -> new_ltEs16(yvy167, yvy168) new_compare30(LT, GT) -> LT new_esEs10(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_Either, fab), fac), egd) -> new_esEs27(yvy4000, yvy3000, fab, fac) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_@0) -> new_esEs15(yvy402, yvy302) new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_lt21(yvy192, yvy195, app(app(app(ty_@3, fd), ff), fg)) -> new_lt13(yvy192, yvy195, fd, ff, fg) new_esEs28(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), dec, ded) -> new_asAs(new_esEs32(yvy4000, yvy3000, dec), new_esEs31(yvy4001, yvy3001, ded)) new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_esEs21(:(yvy4000, yvy4001), [], dhc) -> False new_esEs21([], :(yvy3000, yvy3001), dhc) -> False new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, ty_Float) -> new_ltEs11(yvy1532, yvy1542) new_ltEs14(LT, GT) -> True new_ltEs19(yvy193, yvy196, app(ty_Ratio, dce)) -> new_ltEs10(yvy193, yvy196, dce) new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_compare15(yvy278, yvy279, yvy280, yvy281, True, yvy283, dha, dhb) -> new_compare16(yvy278, yvy279, yvy280, yvy281, True, dha, dhb) new_ltEs21(yvy1531, yvy1541, ty_Char) -> new_ltEs15(yvy1531, yvy1541) new_esEs29(yvy192, yvy195, ty_Bool) -> new_esEs16(yvy192, yvy195) new_ltEs14(GT, GT) -> True new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs10(yvy401, yvy301, app(app(ty_Either, dde), ddf)) -> new_esEs27(yvy401, yvy301, dde, ddf) new_esEs32(yvy4000, yvy3000, app(ty_Maybe, dgg)) -> new_esEs23(yvy4000, yvy3000, dgg) new_esEs33(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_Either, bed), bee), bdg) -> new_ltEs17(yvy1530, yvy1540, bed, bee) new_compare11(@0, @0) -> EQ new_ltEs5(yvy1532, yvy1542, app(ty_Ratio, cgc)) -> new_ltEs10(yvy1532, yvy1542, cgc) new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_ltEs12(yvy153, yvy154, gf) -> new_fsEs(new_compare0(yvy153, yvy154, gf)) new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, app(ty_Maybe, fgg)) -> new_esEs23(yvy401, yvy301, fgg) new_esEs33(yvy4000, yvy3000, app(app(ty_Either, eab), eac)) -> new_esEs27(yvy4000, yvy3000, eab, eac) new_ltEs5(yvy1532, yvy1542, ty_@0) -> new_ltEs6(yvy1532, yvy1542) new_esEs18(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_[], bce)) -> new_ltEs12(yvy1530, yvy1540, bce) new_ltEs23(yvy205, yvy207, app(app(ty_Either, ced), cee)) -> new_ltEs17(yvy205, yvy207, ced, cee) new_lt23(yvy204, yvy206, ty_Float) -> new_lt11(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_Ratio, ecd)) -> new_ltEs10(yvy160, yvy161, ecd) new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, def), deg), deh)) -> new_esEs22(yvy4001, yvy3001, def, deg, deh) new_lt23(yvy204, yvy206, ty_Char) -> new_lt16(yvy204, yvy206) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Ratio, eec)) -> new_esEs19(yvy4000, yvy3000, eec) new_esEs10(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, app(app(ty_Either, cbf), cbg)) -> new_ltEs17(yvy160, yvy161, cbf, cbg) new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_esEs40(yvy4000, yvy3000, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs22(yvy4000, yvy3000, fef, feg, feh) new_ltEs22(yvy160, yvy161, ty_Double) -> new_ltEs16(yvy160, yvy161) new_lt22(yvy1530, yvy1540, app(ty_Maybe, caa)) -> new_lt14(yvy1530, yvy1540, caa) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Double, egd) -> new_esEs26(yvy4000, yvy3000) new_esEs14(yvy1530, yvy1540, app(ty_Ratio, cge)) -> new_esEs19(yvy1530, yvy1540, cge) new_esEs36(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs39(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs23(yvy205, yvy207, ty_Double) -> new_ltEs16(yvy205, yvy207) new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs29(yvy192, yvy195, app(ty_Maybe, fh)) -> new_esEs23(yvy192, yvy195, fh) new_esEs6(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare29(False, False) -> EQ new_esEs38(yvy4002, yvy3002, app(ty_Ratio, fdb)) -> new_esEs19(yvy4002, yvy3002, fdb) new_esEs33(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_ltEs7(False, True) -> True new_esEs30(yvy191, yvy194, ty_Ordering) -> new_esEs24(yvy191, yvy194) new_esEs13(yvy1531, yvy1541, ty_Int) -> new_esEs17(yvy1531, yvy1541) new_ltEs21(yvy1531, yvy1541, app(app(ty_Either, bgh), bha)) -> new_ltEs17(yvy1531, yvy1541, bgh, bha) new_lt6(yvy1530, yvy1540, app(ty_[], bbd)) -> new_lt12(yvy1530, yvy1540, bbd) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, app(ty_Maybe, ebg)) -> new_esEs23(yvy400, yvy300, ebg) new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_ltEs21(yvy1531, yvy1541, ty_Double) -> new_ltEs16(yvy1531, yvy1541) new_esEs12(LT) -> True new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(app(ty_@2, bbb), bbc)) -> new_esEs28(yvy1531, yvy1541, bbb, bbc) new_esEs5(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs6(yvy400, yvy300, app(app(app(ty_@3, efh), ega), egb)) -> new_esEs22(yvy400, yvy300, efh, ega, egb) new_esEs7(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_[], fc)) -> new_lt12(yvy192, yvy195, fc) new_ltEs20(yvy167, yvy168, ty_Integer) -> new_ltEs9(yvy167, yvy168) new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs7(True, False) -> False new_compare30(EQ, GT) -> LT new_ltEs19(yvy193, yvy196, ty_Integer) -> new_ltEs9(yvy193, yvy196) new_compare19(yvy241, yvy242, False, ece, ecf) -> GT new_ltEs19(yvy193, yvy196, ty_Float) -> new_ltEs11(yvy193, yvy196) new_esEs40(yvy4000, yvy3000, app(ty_[], fee)) -> new_esEs21(yvy4000, yvy3000, fee) new_compare12(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) new_esEs6(yvy400, yvy300, app(ty_Maybe, eda)) -> new_esEs23(yvy400, yvy300, eda) new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ege, egf, egg) -> LT new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_esEs4(yvy402, yvy302, ty_Bool) -> new_esEs16(yvy402, yvy302) new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_ltEs19(yvy193, yvy196, ty_Char) -> new_ltEs15(yvy193, yvy196) new_ltEs7(False, False) -> True new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_lt23(yvy204, yvy206, ty_Ordering) -> new_lt15(yvy204, yvy206) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs11(yvy400, yvy300, app(app(ty_Either, daf), dag)) -> new_esEs27(yvy400, yvy300, daf, dag) new_esEs5(yvy401, yvy301, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs22(yvy401, yvy301, ffh, fga, fgb) new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_lt20(yvy191, yvy194, app(ty_[], ce)) -> new_lt12(yvy191, yvy194, ce) new_esEs29(yvy192, yvy195, ty_@0) -> new_esEs15(yvy192, yvy195) new_ltEs21(yvy1531, yvy1541, app(ty_Ratio, eca)) -> new_ltEs10(yvy1531, yvy1541, eca) new_esEs30(yvy191, yvy194, app(app(app(ty_@3, da), db), dc)) -> new_esEs22(yvy191, yvy194, da, db, dc) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Maybe, bec), bdg) -> new_ltEs13(yvy1530, yvy1540, bec) new_esEs37(yvy204, yvy206, app(app(ty_@2, cfh), cga)) -> new_esEs28(yvy204, yvy206, cfh, cga) new_ltEs5(yvy1532, yvy1542, ty_Integer) -> new_ltEs9(yvy1532, yvy1542) new_compare32(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) new_ltEs4(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, bac) -> new_pePe(new_lt6(yvy1530, yvy1540, gg), new_asAs(new_esEs14(yvy1530, yvy1540, gg), new_pePe(new_lt5(yvy1531, yvy1541, gh), new_asAs(new_esEs13(yvy1531, yvy1541, gh), new_ltEs5(yvy1532, yvy1542, bac))))) new_esEs30(yvy191, yvy194, ty_@0) -> new_esEs15(yvy191, yvy194) new_lt20(yvy191, yvy194, ty_Integer) -> new_lt10(yvy191, yvy194) new_lt23(yvy204, yvy206, app(ty_Maybe, cfe)) -> new_lt14(yvy204, yvy206, cfe) new_esEs27(Right(yvy4000), Right(yvy3000), egc, app(app(ty_Either, fbd), fbe)) -> new_esEs27(yvy4000, yvy3000, fbd, fbe) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_esEs37(yvy204, yvy206, ty_Int) -> new_esEs17(yvy204, yvy206) new_lt5(yvy1531, yvy1541, ty_Integer) -> new_lt10(yvy1531, yvy1541) new_ltEs10(yvy153, yvy154, ecg) -> new_fsEs(new_compare5(yvy153, yvy154, ecg)) new_esEs14(yvy1530, yvy1540, app(app(ty_@2, bcc), bcd)) -> new_esEs28(yvy1530, yvy1540, bcc, bcd) new_esEs29(yvy192, yvy195, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs22(yvy192, yvy195, fd, ff, fg) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, app(app(ty_@2, bfh), bga)) -> new_ltEs18(yvy1530, yvy1540, bfh, bga) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_[], bab)) -> new_lt12(yvy1531, yvy1541, bab) new_compare29(True, False) -> GT new_esEs40(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_esEs14(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, app(ty_Ratio, eee)) -> new_esEs19(yvy204, yvy206, eee) new_ltEs24(yvy153, yvy154, app(app(ty_@2, bgb), bhe)) -> new_ltEs18(yvy153, yvy154, bgb, bhe) new_lt22(yvy1530, yvy1540, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_lt13(yvy1530, yvy1540, bhf, bhg, bhh) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_[], ehd), egd) -> new_esEs21(yvy4000, yvy3000, ehd) new_esEs6(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs14(GT, LT) -> False new_esEs7(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_compare30(GT, LT) -> GT new_ltEs9(yvy153, yvy154) -> new_fsEs(new_compare14(yvy153, yvy154)) new_esEs31(yvy4001, yvy3001, app(ty_Maybe, dfe)) -> new_esEs23(yvy4001, yvy3001, dfe) new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_esEs4(yvy402, yvy302, app(ty_Maybe, eff)) -> new_esEs23(yvy402, yvy302, eff) new_compare7(Left(yvy400), Right(yvy300), caf, cag) -> LT new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs14(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs12(GT) -> False new_compare30(EQ, LT) -> GT new_esEs13(yvy1531, yvy1541, app(app(ty_Either, bah), bba)) -> new_esEs27(yvy1531, yvy1541, bah, bba) new_compare7(Right(yvy400), Right(yvy300), caf, cag) -> new_compare26(yvy400, yvy300, new_esEs9(yvy400, yvy300, cag), caf, cag) new_esEs12(EQ) -> False new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, yvy270, ege, egf, egg) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, yvy270, ege, egf, egg) new_lt19(yvy40, yvy30, cdd, cde) -> new_esEs12(new_compare8(yvy40, yvy30, cdd, cde)) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Ratio, ehc)) -> new_ltEs10(yvy1530, yvy1540, ehc) new_esEs7(yvy400, yvy300, app(ty_Ratio, ebh)) -> new_esEs19(yvy400, yvy300, ebh) new_lt23(yvy204, yvy206, app(app(ty_Either, cff), cfg)) -> new_lt18(yvy204, yvy206, cff, cfg) new_esEs39(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs21(yvy1531, yvy1541, app(ty_Maybe, bgg)) -> new_ltEs13(yvy1531, yvy1541, bgg) new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs40(yvy4000, yvy3000, app(ty_Ratio, fff)) -> new_esEs19(yvy4000, yvy3000, fff) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, app(ty_Ratio, eha)) -> new_ltEs10(yvy1530, yvy1540, eha) new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Ordering) -> new_lt15(yvy192, yvy195) new_lt20(yvy191, yvy194, ty_Float) -> new_lt11(yvy191, yvy194) new_esEs38(yvy4002, yvy3002, app(app(ty_Either, fcg), fch)) -> new_esEs27(yvy4002, yvy3002, fcg, fch) new_esEs30(yvy191, yvy194, ty_Char) -> new_esEs25(yvy191, yvy194) new_ltEs24(yvy153, yvy154, ty_Int) -> new_ltEs8(yvy153, yvy154) new_sr0(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Int, egd) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_esEs10(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_ltEs21(yvy1531, yvy1541, ty_Float) -> new_ltEs11(yvy1531, yvy1541) new_esEs37(yvy204, yvy206, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs22(yvy204, yvy206, cfb, cfc, cfd) new_esEs5(yvy401, yvy301, app(app(ty_@2, fgc), fgd)) -> new_esEs28(yvy401, yvy301, fgc, fgd) new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, app(app(ty_@2, chb), chc)) -> new_esEs28(yvy400, yvy300, chb, chc) new_esEs32(yvy4000, yvy3000, app(app(ty_@2, dgc), dgd)) -> new_esEs28(yvy4000, yvy3000, dgc, dgd) new_ltEs22(yvy160, yvy161, app(app(ty_@2, cbh), cca)) -> new_ltEs18(yvy160, yvy161, cbh, cca) new_ltEs20(yvy167, yvy168, ty_Char) -> new_ltEs15(yvy167, yvy168) new_esEs5(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_lt21(yvy192, yvy195, ty_Integer) -> new_lt10(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(app(ty_@2, cad), cae)) -> new_esEs28(yvy1530, yvy1540, cad, cae) new_lt5(yvy1531, yvy1541, app(app(app(ty_@3, bad), bae), baf)) -> new_lt13(yvy1531, yvy1541, bad, bae, baf) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Float, egd) -> new_esEs20(yvy4000, yvy3000) new_esEs10(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare0([], :(yvy300, yvy301), h) -> LT new_asAs(True, yvy229) -> yvy229 new_esEs37(yvy204, yvy206, app(ty_[], ceh)) -> new_esEs21(yvy204, yvy206, ceh) new_compare32(yvy400, yvy300, ty_Bool) -> new_compare29(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Bool) -> new_esEs16(yvy1531, yvy1541) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_@2, bef), beg), bdg) -> new_ltEs18(yvy1530, yvy1540, bef, beg) new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_lt20(yvy191, yvy194, app(ty_Ratio, dcd)) -> new_lt4(yvy191, yvy194, dcd) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Ratio, fae), egd) -> new_esEs19(yvy4000, yvy3000, fae) new_esEs30(yvy191, yvy194, app(ty_Ratio, dcd)) -> new_esEs19(yvy191, yvy194, dcd) new_ltEs21(yvy1531, yvy1541, ty_Integer) -> new_ltEs9(yvy1531, yvy1541) new_ltEs16(yvy153, yvy154) -> new_fsEs(new_compare18(yvy153, yvy154)) new_ltEs22(yvy160, yvy161, ty_Ordering) -> new_ltEs14(yvy160, yvy161) new_esEs5(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_ltEs23(yvy205, yvy207, ty_Bool) -> new_ltEs7(yvy205, yvy207) new_esEs13(yvy1531, yvy1541, app(ty_Ratio, cgd)) -> new_esEs19(yvy1531, yvy1541, cgd) new_lt20(yvy191, yvy194, ty_Bool) -> new_lt8(yvy191, yvy194) new_esEs36(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_ltEs23(yvy205, yvy207, app(ty_[], cdg)) -> new_ltEs12(yvy205, yvy207, cdg) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Integer, bdg) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_esEs14(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, app(ty_[], dfg)) -> new_esEs21(yvy4000, yvy3000, dfg) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_Either, edh), eea)) -> new_esEs27(yvy4000, yvy3000, edh, eea) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_esEs40(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs38(yvy4002, yvy3002, ty_Bool) -> new_esEs16(yvy4002, yvy3002) new_esEs27(Right(yvy4000), Right(yvy3000), egc, app(ty_Ratio, fbg)) -> new_esEs19(yvy4000, yvy3000, fbg) new_esEs30(yvy191, yvy194, ty_Bool) -> new_esEs16(yvy191, yvy194) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_Either, bdb), bdc)) -> new_ltEs17(yvy1530, yvy1540, bdb, bdc) new_compare0([], [], h) -> EQ new_compare8(@2(yvy400, yvy401), @2(yvy300, yvy301), cdd, cde) -> new_compare28(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cdd), new_esEs10(yvy401, yvy301, cde)), cdd, cde) new_esEs5(yvy401, yvy301, app(ty_[], ffg)) -> new_esEs21(yvy401, yvy301, ffg) new_sr(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) new_lt21(yvy192, yvy195, ty_@0) -> new_lt7(yvy192, yvy195) new_esEs33(yvy4000, yvy3000, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs22(yvy4000, yvy3000, dhe, dhf, dhg) new_esEs7(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs21([], [], dhc) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Double, bdg) -> new_ltEs16(yvy1530, yvy1540) new_esEs10(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_primMulNat0(Zero, Zero) -> Zero new_esEs39(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, app(app(ty_Either, egc), egd)) -> new_esEs27(yvy400, yvy300, egc, egd) new_ltEs13(Nothing, Nothing, ehb) -> True new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Nothing, ehb) -> False new_esEs29(yvy192, yvy195, ty_Int) -> new_esEs17(yvy192, yvy195) new_lt22(yvy1530, yvy1540, app(ty_[], bhd)) -> new_lt12(yvy1530, yvy1540, bhd) new_esEs8(yvy400, yvy300, app(ty_Maybe, dcb)) -> new_esEs23(yvy400, yvy300, dcb) new_ltEs22(yvy160, yvy161, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs4(yvy160, yvy161, cbb, cbc, cbd) new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_ltEs23(yvy205, yvy207, app(ty_Ratio, eed)) -> new_ltEs10(yvy205, yvy207, eed) new_esEs10(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs4(yvy402, yvy302, ty_Float) -> new_esEs20(yvy402, yvy302) new_esEs27(Left(yvy4000), Right(yvy3000), egc, egd) -> False new_esEs27(Right(yvy4000), Left(yvy3000), egc, egd) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Char, egd) -> new_esEs25(yvy4000, yvy3000) new_lt12(yvy40, yvy30, h) -> new_esEs12(new_compare0(yvy40, yvy30, h)) new_esEs39(yvy4001, yvy3001, app(ty_Ratio, fed)) -> new_esEs19(yvy4001, yvy3001, fed) new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs22(yvy4000, yvy3000, dfh, dga, dgb) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, yvy270, ege, egf, egg) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ege, egf, egg) new_ltEs21(yvy1531, yvy1541, ty_Ordering) -> new_ltEs14(yvy1531, yvy1541) new_ltEs19(yvy193, yvy196, app(ty_Maybe, ef)) -> new_ltEs13(yvy193, yvy196, ef) new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare25(yvy160, yvy161, False, ecc, cba) -> new_compare19(yvy160, yvy161, new_ltEs22(yvy160, yvy161, ecc), ecc, cba) new_compare30(GT, EQ) -> GT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_@2, ehh), faa), egd) -> new_esEs28(yvy4000, yvy3000, ehh, faa) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Float, bdg) -> new_ltEs11(yvy1530, yvy1540) new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_esEs29(yvy192, yvy195, app(ty_Ratio, dcf)) -> new_esEs19(yvy192, yvy195, dcf) new_esEs4(yvy402, yvy302, ty_Ordering) -> new_esEs24(yvy402, yvy302) new_lt21(yvy192, yvy195, app(ty_Maybe, fh)) -> new_lt14(yvy192, yvy195, fh) new_ltEs24(yvy153, yvy154, app(ty_Ratio, ecg)) -> new_ltEs10(yvy153, yvy154, ecg) new_esEs40(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy192, yvy195, ty_Int) -> new_lt9(yvy192, yvy195) new_compare29(False, True) -> LT new_lt21(yvy192, yvy195, app(ty_Ratio, dcf)) -> new_lt4(yvy192, yvy195, dcf) new_esEs11(yvy400, yvy300, app(ty_Maybe, dah)) -> new_esEs23(yvy400, yvy300, dah) new_esEs30(yvy191, yvy194, ty_Float) -> new_esEs20(yvy191, yvy194) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_primCompAux0(yvy132, EQ) -> yvy132 new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare6(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Ordering, egd) -> new_esEs24(yvy4000, yvy3000) new_compare210(yvy153, yvy154, False, fbh) -> new_compare110(yvy153, yvy154, new_ltEs24(yvy153, yvy154, fbh), fbh) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, ege, egf, egg) -> GT new_compare7(Right(yvy400), Left(yvy300), caf, cag) -> GT new_esEs15(@0, @0) -> True new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt20(yvy191, yvy194, app(ty_Maybe, dd)) -> new_lt14(yvy191, yvy194, dd) new_esEs10(yvy401, yvy301, app(ty_Maybe, ddg)) -> new_esEs23(yvy401, yvy301, ddg) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt6(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, app(ty_[], ha)) -> new_ltEs12(yvy1532, yvy1542, ha) new_esEs4(yvy402, yvy302, app(app(ty_@2, efb), efc)) -> new_esEs28(yvy402, yvy302, efb, efc) new_ltEs7(True, True) -> True new_esEs29(yvy192, yvy195, ty_Float) -> new_esEs20(yvy192, yvy195) new_lt16(yvy40, yvy30) -> new_esEs12(new_compare12(yvy40, yvy30)) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs24(yvy153, yvy154, app(app(ty_Either, beh), bdg)) -> new_ltEs17(yvy153, yvy154, beh, bdg) new_ltEs21(yvy1531, yvy1541, app(app(ty_@2, bhb), bhc)) -> new_ltEs18(yvy1531, yvy1541, bhb, bhc) new_esEs6(yvy400, yvy300, app(ty_[], dhc)) -> new_esEs21(yvy400, yvy300, dhc) new_esEs29(yvy192, yvy195, ty_Char) -> new_esEs25(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(ty_[], bhd)) -> new_esEs21(yvy1530, yvy1540, bhd) new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_lt20(yvy191, yvy194, ty_@0) -> new_lt7(yvy191, yvy194) new_esEs11(yvy400, yvy300, app(app(ty_@2, dad), dae)) -> new_esEs28(yvy400, yvy300, dad, dae) new_lt22(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs16(True, True) -> True new_esEs7(yvy400, yvy300, app(app(ty_Either, ebe), ebf)) -> new_esEs27(yvy400, yvy300, ebe, ebf) new_ltEs5(yvy1532, yvy1542, ty_Bool) -> new_ltEs7(yvy1532, yvy1542) new_esEs10(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_ltEs18(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, bhe) -> new_pePe(new_lt22(yvy1530, yvy1540, bgb), new_asAs(new_esEs36(yvy1530, yvy1540, bgb), new_ltEs21(yvy1531, yvy1541, bhe))) new_esEs14(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Ratio, egh), bdg) -> new_ltEs10(yvy1530, yvy1540, egh) new_compare28(yvy204, yvy205, yvy206, yvy207, False, cdf, cfa) -> new_compare15(yvy204, yvy205, yvy206, yvy207, new_lt23(yvy204, yvy206, cdf), new_asAs(new_esEs37(yvy204, yvy206, cdf), new_ltEs23(yvy205, yvy207, cfa)), cdf, cfa) new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_esEs14(yvy1530, yvy1540, app(app(ty_Either, bca), bcb)) -> new_esEs27(yvy1530, yvy1540, bca, bcb) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, bdh), bea), beb), bdg) -> new_ltEs4(yvy1530, yvy1540, bdh, bea, beb) new_esEs9(yvy400, yvy300, app(ty_Maybe, chf)) -> new_esEs23(yvy400, yvy300, chf) new_esEs38(yvy4002, yvy3002, ty_@0) -> new_esEs15(yvy4002, yvy3002) new_ltEs5(yvy1532, yvy1542, ty_Double) -> new_ltEs16(yvy1532, yvy1542) new_lt21(yvy192, yvy195, app(app(ty_@2, gc), gd)) -> new_lt19(yvy192, yvy195, gc, gd) new_esEs37(yvy204, yvy206, app(app(ty_Either, cff), cfg)) -> new_esEs27(yvy204, yvy206, cff, cfg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt20(yvy191, yvy194, ty_Ordering) -> new_lt15(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), egc, app(app(ty_@2, fbb), fbc)) -> new_esEs28(yvy4000, yvy3000, fbb, fbc) new_lt21(yvy192, yvy195, ty_Float) -> new_lt11(yvy192, yvy195) new_lt21(yvy192, yvy195, ty_Bool) -> new_lt8(yvy192, yvy195) new_ltEs19(yvy193, yvy196, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs4(yvy193, yvy196, ec, ed, ee) new_esEs10(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs10(yvy401, yvy301, app(app(ty_@2, ddc), ddd)) -> new_esEs28(yvy401, yvy301, ddc, ddd) new_esEs38(yvy4002, yvy3002, ty_Char) -> new_esEs25(yvy4002, yvy3002) new_compare13(yvy250, yvy251, True, fhb, fhc) -> LT new_esEs33(yvy4000, yvy3000, app(app(ty_@2, dhh), eaa)) -> new_esEs28(yvy4000, yvy3000, dhh, eaa) new_compare26(yvy167, yvy168, False, ccb, dea) -> new_compare13(yvy167, yvy168, new_ltEs20(yvy167, yvy168, dea), ccb, dea) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs25(yvy4000, yvy3000) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs6(yvy400, yvy300, app(app(ty_@2, dec), ded)) -> new_esEs28(yvy400, yvy300, dec, ded) new_ltEs24(yvy153, yvy154, app(ty_[], gf)) -> new_ltEs12(yvy153, yvy154, gf) new_esEs31(yvy4001, yvy3001, app(ty_[], dee)) -> new_esEs21(yvy4001, yvy3001, dee) new_esEs33(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Integer) -> new_esEs18(yvy402, yvy302) new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_not(False) -> True new_esEs29(yvy192, yvy195, app(app(ty_Either, ga), gb)) -> new_esEs27(yvy192, yvy195, ga, gb) new_esEs13(yvy1531, yvy1541, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs22(yvy1531, yvy1541, bad, bae, baf) new_esEs29(yvy192, yvy195, ty_Double) -> new_esEs26(yvy192, yvy195) new_lt22(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, ty_@0) -> new_esEs15(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, app(ty_Ratio, dcc)) -> new_esEs19(yvy400, yvy300, dcc) new_lt22(yvy1530, yvy1540, app(app(ty_Either, cab), cac)) -> new_lt18(yvy1530, yvy1540, cab, cac) new_ltEs24(yvy153, yvy154, ty_Integer) -> new_ltEs9(yvy153, yvy154) new_compare0(:(yvy400, yvy401), [], h) -> GT new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) new_esEs5(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare32(yvy400, yvy300, app(ty_[], ba)) -> new_compare0(yvy400, yvy300, ba) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_esEs31(yvy4001, yvy3001, app(ty_Ratio, dff)) -> new_esEs19(yvy4001, yvy3001, dff) new_compare32(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_Either, fea), feb)) -> new_esEs27(yvy4001, yvy3001, fea, feb) new_ltEs24(yvy153, yvy154, ty_Bool) -> new_ltEs7(yvy153, yvy154) new_compare32(yvy400, yvy300, ty_Float) -> new_compare9(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, app(app(ty_Either, de), df)) -> new_esEs27(yvy191, yvy194, de, df) new_esEs14(yvy1530, yvy1540, app(ty_Maybe, bbh)) -> new_esEs23(yvy1530, yvy1540, bbh) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, app(ty_[], bfa)) -> new_ltEs12(yvy1530, yvy1540, bfa) new_compare30(EQ, EQ) -> EQ new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), cb, cc, cd) -> new_compare27(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, cb), new_asAs(new_esEs5(yvy401, yvy301, cc), new_esEs4(yvy402, yvy302, cd))), cb, cc, cd) new_esEs14(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Double) -> new_esEs26(yvy191, yvy194) new_esEs37(yvy204, yvy206, ty_Ordering) -> new_esEs24(yvy204, yvy206) new_lt18(yvy40, yvy30, caf, cag) -> new_esEs12(new_compare7(yvy40, yvy30, caf, cag)) new_lt5(yvy1531, yvy1541, ty_Double) -> new_lt17(yvy1531, yvy1541) new_esEs13(yvy1531, yvy1541, ty_Float) -> new_esEs20(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(app(ty_Either, bah), bba)) -> new_lt18(yvy1531, yvy1541, bah, bba) new_lt20(yvy191, yvy194, ty_Int) -> new_lt9(yvy191, yvy194) new_esEs39(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_esEs37(yvy204, yvy206, app(ty_Maybe, cfe)) -> new_esEs23(yvy204, yvy206, cfe) new_compare30(LT, EQ) -> LT new_ltEs21(yvy1531, yvy1541, ty_Int) -> new_ltEs8(yvy1531, yvy1541) new_esEs36(yvy1530, yvy1540, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs22(yvy1530, yvy1540, bhf, bhg, bhh) new_esEs4(yvy402, yvy302, ty_Char) -> new_esEs25(yvy402, yvy302) new_esEs26(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs9(yvy400, yvy300, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs22(yvy400, yvy300, cgg, cgh, cha) new_lt22(yvy1530, yvy1540, app(app(ty_@2, cad), cae)) -> new_lt19(yvy1530, yvy1540, cad, cae) new_esEs29(yvy192, yvy195, app(app(ty_@2, gc), gd)) -> new_esEs28(yvy192, yvy195, gc, gd) new_ltEs19(yvy193, yvy196, app(app(ty_@2, fa), fb)) -> new_ltEs18(yvy193, yvy196, fa, fb) new_esEs27(Left(yvy4000), Left(yvy3000), ty_@0, egd) -> new_esEs15(yvy4000, yvy3000) new_lt20(yvy191, yvy194, app(app(ty_Either, de), df)) -> new_lt18(yvy191, yvy194, de, df) new_ltEs22(yvy160, yvy161, ty_@0) -> new_ltEs6(yvy160, yvy161) new_ltEs5(yvy1532, yvy1542, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs4(yvy1532, yvy1542, hb, hc, hd) new_lt5(yvy1531, yvy1541, ty_Int) -> new_lt9(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(app(ty_@2, dbf), dbg)) -> new_esEs28(yvy400, yvy300, dbf, dbg) new_esEs36(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs30(yvy191, yvy194, ty_Int) -> new_esEs17(yvy191, yvy194) new_lt8(yvy40, yvy30) -> new_esEs12(new_compare29(yvy40, yvy30)) new_compare13(yvy250, yvy251, False, fhb, fhc) -> GT new_esEs11(yvy400, yvy300, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs22(yvy400, yvy300, daa, dab, dac) new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_lt20(yvy191, yvy194, ty_Double) -> new_lt17(yvy191, yvy194) new_esEs13(yvy1531, yvy1541, ty_Char) -> new_esEs25(yvy1531, yvy1541) new_esEs38(yvy4002, yvy3002, ty_Integer) -> new_esEs18(yvy4002, yvy3002) new_ltEs14(LT, EQ) -> True new_esEs10(yvy401, yvy301, app(ty_Ratio, ddh)) -> new_esEs19(yvy401, yvy301, ddh) new_ltEs22(yvy160, yvy161, app(ty_Maybe, cbe)) -> new_ltEs13(yvy160, yvy161, cbe) new_esEs6(yvy400, yvy300, app(ty_Ratio, eaf)) -> new_esEs19(yvy400, yvy300, eaf) new_esEs36(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, app(ty_Ratio, eae)) -> new_esEs19(yvy4000, yvy3000, eae) new_lt10(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) new_lt23(yvy204, yvy206, ty_Bool) -> new_lt8(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Integer) -> new_esEs18(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(ty_[], dbb)) -> new_esEs21(yvy400, yvy300, dbb) new_esEs40(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_primCompAux1(yvy400, yvy300, yvy114, h) -> new_primCompAux0(yvy114, new_compare32(yvy400, yvy300, h)) new_ltEs21(yvy1531, yvy1541, app(app(app(ty_@3, bgd), bge), bgf)) -> new_ltEs4(yvy1531, yvy1541, bgd, bge, bgf) new_esEs11(yvy400, yvy300, app(ty_[], chh)) -> new_esEs21(yvy400, yvy300, chh) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs37(yvy204, yvy206, ty_Integer) -> new_esEs18(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(ty_Either, fge), fgf)) -> new_esEs27(yvy401, yvy301, fge, fgf) new_ltEs6(yvy153, yvy154) -> new_fsEs(new_compare11(yvy153, yvy154)) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Char, bdg) -> new_ltEs15(yvy1530, yvy1540) new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Int) -> new_ltEs8(yvy1532, yvy1542) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_@2, bdd), bde)) -> new_ltEs18(yvy1530, yvy1540, bdd, bde) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_esEs25(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_lt22(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_lt20(yvy191, yvy194, ty_Char) -> new_lt16(yvy191, yvy194) new_ltEs21(yvy1531, yvy1541, ty_Bool) -> new_ltEs7(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, app(app(ty_Either, ffc), ffd)) -> new_esEs27(yvy4000, yvy3000, ffc, ffd) new_esEs16(False, False) -> True new_ltEs21(yvy1531, yvy1541, app(ty_[], bgc)) -> new_ltEs12(yvy1531, yvy1541, bgc) new_esEs38(yvy4002, yvy3002, ty_Float) -> new_esEs20(yvy4002, yvy3002) new_ltEs5(yvy1532, yvy1542, app(app(ty_@2, hh), baa)) -> new_ltEs18(yvy1532, yvy1542, hh, baa) new_esEs4(yvy402, yvy302, app(app(ty_Either, efd), efe)) -> new_esEs27(yvy402, yvy302, efd, efe) new_compare15(yvy278, yvy279, yvy280, yvy281, False, yvy283, dha, dhb) -> new_compare16(yvy278, yvy279, yvy280, yvy281, yvy283, dha, dhb) new_esEs10(yvy401, yvy301, app(ty_[], dcg)) -> new_esEs21(yvy401, yvy301, dcg) new_esEs21(:(yvy4000, yvy4001), :(yvy3000, yvy3001), dhc) -> new_asAs(new_esEs33(yvy4000, yvy3000, dhc), new_esEs21(yvy4001, yvy3001, dhc)) new_esEs14(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_compare32(yvy400, yvy300, app(app(app(ty_@3, bb), bc), bd)) -> new_compare31(yvy400, yvy300, bb, bc, bd) new_compare32(yvy400, yvy300, app(app(ty_@2, bh), ca)) -> new_compare8(yvy400, yvy300, bh, ca) new_ltEs20(yvy167, yvy168, ty_Int) -> new_ltEs8(yvy167, yvy168) new_esEs36(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, True, ea, cf, cg) -> EQ new_esEs4(yvy402, yvy302, ty_Double) -> new_esEs26(yvy402, yvy302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy153, yvy154, ty_Char) -> new_ltEs15(yvy153, yvy154) new_ltEs24(yvy153, yvy154, app(ty_Maybe, ehb)) -> new_ltEs13(yvy153, yvy154, ehb) new_ltEs17(Right(yvy1530), Left(yvy1540), beh, bdg) -> False new_lt23(yvy204, yvy206, app(app(ty_@2, cfh), cga)) -> new_lt19(yvy204, yvy206, cfh, cga) new_ltEs24(yvy153, yvy154, ty_@0) -> new_ltEs6(yvy153, yvy154) new_esEs36(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, ty_Float) -> new_esEs20(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_[], cah)) -> new_ltEs12(yvy160, yvy161, cah) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Ordering, bdg) -> new_ltEs14(yvy1530, yvy1540) new_lt21(yvy192, yvy195, app(app(ty_Either, ga), gb)) -> new_lt18(yvy192, yvy195, ga, gb) new_primEqNat0(Zero, Zero) -> True new_lt21(yvy192, yvy195, ty_Double) -> new_lt17(yvy192, yvy195) new_compare17(Nothing, Just(yvy300), ge) -> LT new_lt6(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_compare110(yvy234, yvy235, True, ech) -> LT new_esEs33(yvy4000, yvy3000, app(ty_[], dhd)) -> new_esEs21(yvy4000, yvy3000, dhd) new_esEs27(Right(yvy4000), Right(yvy3000), egc, app(ty_[], faf)) -> new_esEs21(yvy4000, yvy3000, faf) new_ltEs23(yvy205, yvy207, app(ty_Maybe, cec)) -> new_ltEs13(yvy205, yvy207, cec) new_esEs27(Right(yvy4000), Right(yvy3000), egc, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_esEs31(yvy4001, yvy3001, app(app(ty_@2, dfa), dfb)) -> new_esEs28(yvy4001, yvy3001, dfa, dfb) new_ltEs17(Right(yvy1530), Right(yvy1540), beh, app(ty_Maybe, bfe)) -> new_ltEs13(yvy1530, yvy1540, bfe) new_asAs(False, yvy229) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Bool, egd) -> new_esEs16(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_@0) -> new_ltEs6(yvy205, yvy207) new_ltEs14(LT, LT) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_@0, bdg) -> new_ltEs6(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(ty_Maybe, bag)) -> new_esEs23(yvy1531, yvy1541, bag) new_ltEs19(yvy193, yvy196, ty_Int) -> new_ltEs8(yvy193, yvy196) new_esEs36(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_ltEs13(Nothing, Just(yvy1540), ehb) -> True new_lt6(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs5(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Ordering) -> new_esEs24(yvy1531, yvy1541) new_compare16(yvy278, yvy279, yvy280, yvy281, False, dha, dhb) -> GT new_ltEs20(yvy167, yvy168, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs4(yvy167, yvy168, ccd, cce, ccf) new_lt15(yvy40, yvy30) -> new_esEs12(new_compare30(yvy40, yvy30)) new_esEs36(yvy1530, yvy1540, app(ty_Maybe, caa)) -> new_esEs23(yvy1530, yvy1540, caa) new_ltEs23(yvy205, yvy207, ty_Ordering) -> new_ltEs14(yvy205, yvy207) new_compare32(yvy400, yvy300, app(ty_Ratio, fha)) -> new_compare5(yvy400, yvy300, fha) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs7(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs9(yvy400, yvy300, app(ty_[], cgf)) -> new_esEs21(yvy400, yvy300, cgf) new_esEs7(yvy400, yvy300, app(app(ty_@2, ebc), ebd)) -> new_esEs28(yvy400, yvy300, ebc, ebd) new_lt23(yvy204, yvy206, ty_@0) -> new_lt7(yvy204, yvy206) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) new_lt6(yvy1530, yvy1540, app(app(ty_Either, bca), bcb)) -> new_lt18(yvy1530, yvy1540, bca, bcb) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs22(yvy160, yvy161, ty_Bool) -> new_ltEs7(yvy160, yvy161) The set Q consists of the following terms: new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat0(Succ(x0), Zero) new_esEs9(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(Just(x0), Nothing, x1) new_compare32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_esEs14(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Double) new_compare11(@0, @0) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Char) new_compare17(Just(x0), Just(x1), x2) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, ty_Char) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Left(x0), Left(x1), x2, x3) new_lt21(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Char) new_esEs27(Left(x0), Right(x1), x2, x3) new_esEs27(Right(x0), Left(x1), x2, x3) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Int) new_esEs27(Left(x0), Left(x1), ty_Ordering, x2) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_@0) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21([], :(x0, x1), x2) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs24(x0, x1, ty_Int) new_esEs13(x0, x1, ty_Float) new_esEs40(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs33(x0, x1, ty_Bool) new_ltEs10(x0, x1, x2) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Succ(x0)) new_compare13(x0, x1, False, x2, x3) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare32(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Left(x0), Left(x1), ty_Int, x2) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Succ(x0)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs14(LT, LT) new_esEs14(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs27(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs27(Left(x0), Left(x1), ty_Double, x2) new_esEs37(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_esEs23(Just(x0), Just(x1), ty_Bool) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare16(x0, x1, x2, x3, False, x4, x5) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Zero) new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Int) new_lt5(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs24(EQ, EQ) new_lt11(x0, x1) new_ltEs24(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs5(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Float) new_lt5(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs23(Nothing, Just(x0), x1) new_esEs8(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Nothing, x1) new_esEs9(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(x0, x1, ty_Double) new_esEs13(x0, x1, ty_Integer) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Integer) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs35(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Char) new_compare32(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_compare17(Nothing, Nothing, x0) new_compare29(False, False) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs13(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(@2(x0, x1), @2(x2, x3), x4, x5) new_compare32(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1, x2, x3, True, x4, x5) new_esEs16(True, True) new_esEs23(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, ty_Integer) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs27(Right(x0), Right(x1), x2, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs8(x0, x1, ty_@0) new_compare210(x0, x1, False, x2) new_lt6(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(False, True) new_esEs5(x0, x1, ty_@0) new_ltEs7(True, False) new_esEs23(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, ty_@0) new_ltEs21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_primCmpNat0(Succ(x0), Zero) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_compare0([], [], x0) new_compare30(EQ, EQ) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_esEs27(Left(x0), Left(x1), ty_@0, x2) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Float) new_ltEs9(x0, x1) new_esEs8(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Double) new_esEs27(Right(x0), Right(x1), x2, ty_Int) new_compare0([], :(x0, x1), x2) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs15(@0, @0) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_lt5(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Double) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs23(Just(x0), Just(x1), ty_Double) new_lt6(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_[], x2)) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Integer) new_primCompAux0(x0, GT) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, ty_Float) new_compare19(x0, x1, False, x2, x3) new_ltEs13(Just(x0), Just(x1), ty_Int) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Bool) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, ty_Char) new_lt12(x0, x1, x2) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs12(GT) new_esEs29(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(LT, GT) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs14(GT, LT) new_compare110(x0, x1, True, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primCompAux1(x0, x1, x2, x3) new_compare29(True, False) new_compare29(False, True) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs7(x0, x1, ty_Integer) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs21([], [], x0) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs7(False, False) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Double) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs9(x0, x1, ty_@0) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs31(x0, x1, ty_Int) new_lt6(x0, x1, ty_Int) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1) new_esEs33(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Double) new_esEs27(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs10(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_esEs40(x0, x1, ty_Double) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs40(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Integer) new_lt5(x0, x1, ty_@0) new_compare0(:(x0, x1), [], x2) new_compare30(LT, GT) new_compare30(GT, LT) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs24(x0, x1, ty_Double) new_lt21(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs10(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Float) new_ltEs13(Nothing, Just(x0), x1) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Char) new_esEs16(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Double) new_compare14(Integer(x0), Integer(x1)) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Double) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Int) new_compare25(x0, x1, True, x2, x3) new_esEs14(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Ordering) new_compare15(x0, x1, x2, x3, False, x4, x5, x6) new_compare13(x0, x1, True, x2, x3) new_compare32(x0, x1, ty_Char) new_esEs27(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(x0, x1, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs32(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_Integer) new_lt22(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Double) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs27(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs23(x0, x1, ty_@0) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Int) new_lt21(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, ty_Bool) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare17(Just(x0), Nothing, x1) new_lt18(x0, x1, x2, x3) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Float) new_esEs14(x0, x1, ty_@0) new_esEs24(LT, GT) new_esEs24(GT, LT) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Ordering) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs27(Left(x0), Left(x1), ty_Float, x2) new_esEs11(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Ordering) new_pePe(False, x0) new_primMulNat0(Zero, Zero) new_asAs(False, x0) new_esEs40(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs24(LT, LT) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_compare26(x0, x1, True, x2, x3) new_compare30(LT, LT) new_ltEs14(EQ, EQ) new_compare28(x0, x1, x2, x3, False, x4, x5) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Nothing, Nothing, x0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_lt6(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Int) new_compare32(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Double) new_esEs7(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Double) new_esEs13(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Int) new_esEs27(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt16(x0, x1) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs6(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_compare15(x0, x1, x2, x3, True, x4, x5, x6) new_esEs31(x0, x1, ty_@0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Int) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs23(Nothing, Nothing, x0) new_lt6(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs36(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(Float(x0, x1), Float(x2, x3)) new_compare32(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_lt8(x0, x1) new_esEs27(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs13(x0, x1, ty_Int) new_not(True) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs25(Char(x0), Char(x1)) new_esEs5(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Int) new_compare12(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Bool) new_lt14(x0, x1, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs27(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(Left(x0), Left(x1), ty_Integer, x2) new_ltEs21(x0, x1, ty_Float) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Char) new_compare30(EQ, GT) new_compare30(GT, EQ) new_esEs29(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_esEs18(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, False, x2) new_ltEs20(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Float) new_esEs38(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Float) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_@0) new_lt22(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt13(x0, x1, x2, x3, x4) new_ltEs20(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(x0, x1, ty_Double) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, x2, x3) new_esEs39(x0, x1, ty_Double) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_esEs13(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Char) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs14(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Char) new_ltEs8(x0, x1) new_ltEs5(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt5(x0, x1, ty_Char) new_compare30(GT, GT) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_sr(x0, x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs37(x0, x1, ty_Ordering) new_ltEs14(GT, GT) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Char) new_esEs17(x0, x1) new_esEs23(Just(x0), Just(x1), ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs27(Left(x0), Left(x1), ty_Bool, x2) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs14(x0, x1, ty_Char) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, ty_Double) new_esEs6(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Char) new_compare210(x0, x1, True, x2) new_ltEs22(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Float) new_esEs23(Just(x0), Just(x1), ty_Char) new_compare32(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs21(:(x0, x1), [], x2) new_esEs6(x0, x1, ty_Integer) new_asAs(True, x0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs4(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_compare26(x0, x1, False, x2, x3) new_esEs12(EQ) new_ltEs15(x0, x1) new_esEs13(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(Left(x0), Left(x1), ty_Char, x2) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs21(:(x0, x1), :(x2, x3), x4) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs4(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Bool) new_compare17(Nothing, Just(x0), x1) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Float) new_not(False) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, LT) new_ltEs13(Just(x0), Just(x1), ty_@0) new_ltEs24(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs40(x0, x1, ty_Float) new_ltEs7(True, True) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Double) new_ltEs23(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs12(LT) new_esEs24(GT, GT) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs32(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Double) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, x2) new_esEs40(x0, x1, ty_Bool) new_compare7(Right(x0), Right(x1), x2, x3) new_compare25(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Ordering) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_lt5(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Ordering) new_esEs27(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1) new_esEs29(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1) new_esEs4(x0, x1, ty_Integer) new_esEs16(False, True) new_esEs16(True, False) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_compare6(x0, x1) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_lt5(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_compare29(True, True) new_lt23(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, True, x2, x3) new_esEs40(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs11(x0, x1, ty_Integer) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_esEs11(x0, x1, ty_Ordering) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_lt21(x0, x1, ty_@0) new_primCmpNat0(Zero, Zero) new_primEqNat0(Zero, Succ(x0)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_ltEs23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_primCompAux0(x0, EQ) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(ty_[], x2)) 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_compare3(Left(yvy400), Left(yvy300), caf, cag) -> new_compare22(yvy400, yvy300, new_esEs8(yvy400, yvy300, caf), caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(ty_[], ha)) -> new_ltEs(yvy1532, yvy1542, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare1(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), cb, cc, cd) -> new_compare20(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, cb), new_asAs(new_esEs5(yvy401, yvy301, cc), new_esEs4(yvy402, yvy302, cd))), cb, cc, cd) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs0(yvy1532, yvy1542, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt1(yvy40, yvy30, ge) -> new_compare2(yvy40, yvy30, ge) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_primCompAux(yvy400, yvy300, yvy114, app(ty_Maybe, be)) -> new_compare2(yvy400, yvy300, be) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(Just(yvy400), Just(yvy300), ge) -> new_compare21(yvy400, yvy300, new_esEs7(yvy400, yvy300, ge), ge) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt2(yvy40, yvy30, caf, cag) -> new_compare3(yvy40, yvy30, caf, cag) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare4(@2(yvy400, yvy401), @2(yvy300, yvy301), cdd, cde) -> new_compare24(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cdd), new_esEs10(yvy401, yvy301, cde)), cdd, cde) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs1(Just(yvy1530), Just(yvy1540), app(ty_[], bce)) -> new_ltEs(yvy1530, yvy1540, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs0(yvy1530, yvy1540, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare3(Right(yvy400), Right(yvy300), caf, cag) -> new_compare23(yvy400, yvy300, new_esEs9(yvy400, yvy300, cag), caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt0(yvy40, yvy30, cb, cc, cd) -> new_compare1(yvy40, yvy30, cb, cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_compare23(yvy167, yvy168, False, ccb, app(ty_[], ccc)) -> new_ltEs(yvy167, yvy168, ccc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(yvy167, yvy168, False, ccb, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs0(yvy167, yvy168, ccd, cce, ccf) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_primCompAux(yvy400, yvy300, yvy114, app(app(ty_Either, bf), bg)) -> new_compare3(yvy400, yvy300, bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_primCompAux(yvy400, yvy300, new_compare0(yvy401, yvy301, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(yvy400, yvy401), :(yvy300, yvy301), h) -> new_compare(yvy401, yvy301, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(app(ty_Either, hf), hg)) -> new_ltEs2(yvy1532, yvy1542, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(ty_[], bgc)) -> new_ltEs(yvy1531, yvy1541, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(app(app(ty_@3, bgd), bge), bgf)) -> new_ltEs0(yvy1531, yvy1541, bgd, bge, bgf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Just(yvy1530), Just(yvy1540), app(app(ty_Either, bdb), bdc)) -> new_ltEs2(yvy1530, yvy1540, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(yvy167, yvy168, False, ccb, app(app(ty_Either, cch), cda)) -> new_ltEs2(yvy167, yvy168, cch, cda) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(app(ty_Either, bgh), bha)) -> new_ltEs2(yvy1531, yvy1541, bgh, bha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(yvy153, yvy154, gf) -> new_compare(yvy153, yvy154, gf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(app(ty_@2, hh), baa)) -> new_ltEs3(yvy1532, yvy1542, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(yvy1530), Just(yvy1540), app(app(ty_@2, bdd), bde)) -> new_ltEs3(yvy1530, yvy1540, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(yvy1530), Just(yvy1540), app(ty_Maybe, bda)) -> new_ltEs1(yvy1530, yvy1540, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(yvy167, yvy168, False, ccb, app(app(ty_@2, cdb), cdc)) -> new_ltEs3(yvy167, yvy168, cdb, cdc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(yvy167, yvy168, False, ccb, app(ty_Maybe, ccg)) -> new_ltEs1(yvy167, yvy168, ccg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(app(ty_@2, bhb), bhc)) -> new_ltEs3(yvy1531, yvy1541, bhb, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt3(yvy40, yvy30, cdd, cde) -> new_compare4(yvy40, yvy30, cdd, cde) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt(yvy40, yvy30, h) -> new_compare(yvy40, yvy30, h) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, gh, app(ty_Maybe, he)) -> new_ltEs1(yvy1532, yvy1542, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bgb, app(ty_Maybe, bgg)) -> new_ltEs1(yvy1531, yvy1541, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(ty_Maybe, caa), bhe) -> new_lt1(yvy1530, yvy1540, caa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(app(app(ty_@3, bhf), bhg), bhh), bhe) -> new_lt0(yvy1530, yvy1540, bhf, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(app(ty_Either, cab), cac), bhe) -> new_lt2(yvy1530, yvy1540, cab, cac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(ty_[], bhd), bhe) -> new_lt(yvy1530, yvy1540, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), app(app(ty_@2, cad), cae), bhe) -> new_lt3(yvy1530, yvy1540, cad, cae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare22(yvy160, yvy161, False, app(ty_[], cah), cba) -> new_ltEs(yvy160, yvy161, cah) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(yvy160, yvy161, False, app(app(app(ty_@3, cbb), cbc), cbd), cba) -> new_ltEs0(yvy160, yvy161, cbb, cbc, cbd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(yvy160, yvy161, False, app(app(ty_Either, cbf), cbg), cba) -> new_ltEs2(yvy160, yvy161, cbf, cbg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(yvy160, yvy161, False, app(app(ty_@2, cbh), cca), cba) -> new_ltEs3(yvy160, yvy161, cbh, cca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(yvy160, yvy161, False, app(ty_Maybe, cbe), cba) -> new_ltEs1(yvy160, yvy161, cbe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(yvy153, yvy154, False, app(ty_[], gf)) -> new_compare(yvy153, yvy154, gf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(yvy400, yvy300, yvy114, app(ty_[], ba)) -> new_compare(yvy400, yvy300, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(ty_[], cdg)) -> new_ltEs(yvy205, yvy207, cdg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(ty_[], eb)) -> new_ltEs(yvy193, yvy196, eb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(app(app(ty_@3, cdh), cea), ceb)) -> new_ltEs0(yvy205, yvy207, cdh, cea, ceb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs0(yvy193, yvy196, ec, ed, ee) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(app(ty_Either, ced), cee)) -> new_ltEs2(yvy205, yvy207, ced, cee) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(app(ty_Either, eg), eh)) -> new_ltEs2(yvy193, yvy196, eg, eh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(app(ty_@2, cef), ceg)) -> new_ltEs3(yvy205, yvy207, cef, ceg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(app(ty_@2, fa), fb)) -> new_ltEs3(yvy193, yvy196, fa, fb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, cdf, app(ty_Maybe, cec)) -> new_ltEs1(yvy205, yvy207, cec) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, cf, app(ty_Maybe, ef)) -> new_ltEs1(yvy193, yvy196, ef) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(ty_Maybe, cfe), cfa) -> new_lt1(yvy204, yvy206, cfe) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(app(app(ty_@3, cfb), cfc), cfd), cfa) -> new_lt0(yvy204, yvy206, cfb, cfc, cfd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(app(ty_Either, cff), cfg), cfa) -> new_lt2(yvy204, yvy206, cff, cfg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(ty_[], ceh), cfa) -> new_lt(yvy204, yvy206, ceh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_primCompAux(yvy400, yvy300, yvy114, app(app(ty_@2, bh), ca)) -> new_compare4(yvy400, yvy300, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(yvy400, yvy300, yvy114, app(app(app(ty_@3, bb), bc), bd)) -> new_compare1(yvy400, yvy300, bb, bc, bd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(yvy204, yvy205, yvy206, yvy207, False, app(app(ty_@2, cfh), cga), cfa) -> new_lt3(yvy204, yvy206, cfh, cga) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(ty_[], bfa))) -> new_ltEs(yvy1530, yvy1540, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(ty_[], bgc))) -> new_ltEs(yvy1531, yvy1541, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(ty_[], ha))) -> new_ltEs(yvy1532, yvy1542, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(ty_[], bce))) -> new_ltEs(yvy1530, yvy1540, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(ty_[], bdf)), bdg)) -> new_ltEs(yvy1530, yvy1540, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs0(yvy1530, yvy1540, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(app(app(ty_@3, bgd), bge), bgf))) -> new_ltEs0(yvy1531, yvy1541, bgd, bge, bgf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(app(app(ty_@3, bfb), bfc), bfd))) -> new_ltEs0(yvy1530, yvy1540, bfb, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(app(app(ty_@3, bdh), bea), beb)), bdg)) -> new_ltEs0(yvy1530, yvy1540, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(app(app(ty_@3, hb), hc), hd))) -> new_ltEs0(yvy1532, yvy1542, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(app(ty_Either, hf), hg))) -> new_ltEs2(yvy1532, yvy1542, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(app(ty_Either, bgh), bha))) -> new_ltEs2(yvy1531, yvy1541, bgh, bha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(app(ty_Either, bed), bee)), bdg)) -> new_ltEs2(yvy1530, yvy1540, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(app(ty_Either, bff), bfg))) -> new_ltEs2(yvy1530, yvy1540, bff, bfg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(app(ty_Either, bdb), bdc))) -> new_ltEs2(yvy1530, yvy1540, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(app(ty_@2, bef), beg)), bdg)) -> new_ltEs3(yvy1530, yvy1540, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(app(ty_@2, hh), baa))) -> new_ltEs3(yvy1532, yvy1542, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(app(ty_@2, bhb), bhc))) -> new_ltEs3(yvy1531, yvy1541, bhb, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(app(ty_@2, bfh), bga))) -> new_ltEs3(yvy1530, yvy1540, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(app(ty_@2, bdd), bde))) -> new_ltEs3(yvy1530, yvy1540, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), gh), app(ty_Maybe, he))) -> new_ltEs1(yvy1532, yvy1542, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, bgb), app(ty_Maybe, bgg))) -> new_ltEs1(yvy1531, yvy1541, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(yvy1530), Just(yvy1540), False, app(ty_Maybe, app(ty_Maybe, bda))) -> new_ltEs1(yvy1530, yvy1540, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(yvy1530), Left(yvy1540), False, app(app(ty_Either, app(ty_Maybe, bec)), bdg)) -> new_ltEs1(yvy1530, yvy1540, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(yvy1530), Right(yvy1540), False, app(app(ty_Either, beh), app(ty_Maybe, bfe))) -> new_ltEs1(yvy1530, yvy1540, bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(ty_Maybe, bag)), bac)) -> new_lt1(yvy1531, yvy1541, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(ty_Maybe, caa)), bhe)) -> new_lt1(yvy1530, yvy1540, caa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(ty_Maybe, bbh)), gh), bac)) -> new_lt1(yvy1530, yvy1540, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(app(app(ty_@3, bbe), bbf), bbg)), gh), bac)) -> new_lt0(yvy1530, yvy1540, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(app(app(ty_@3, bad), bae), baf)), bac)) -> new_lt0(yvy1531, yvy1541, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(app(app(ty_@3, bhf), bhg), bhh)), bhe)) -> new_lt0(yvy1530, yvy1540, bhf, bhg, bhh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(app(ty_Either, bah), bba)), bac)) -> new_lt2(yvy1531, yvy1541, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(app(ty_Either, cab), cac)), bhe)) -> new_lt2(yvy1530, yvy1540, cab, cac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(app(ty_Either, bca), bcb)), gh), bac)) -> new_lt2(yvy1530, yvy1540, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(ty_[], bbd)), gh), bac)) -> new_lt(yvy1530, yvy1540, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(ty_[], bab)), bac)) -> new_lt(yvy1531, yvy1541, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(ty_[], bhd)), bhe)) -> new_lt(yvy1530, yvy1540, bhd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), gh), bac)) -> new_lt3(yvy1530, yvy1540, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), False, app(app(ty_@2, app(app(ty_@2, cad), cae)), bhe)) -> new_lt3(yvy1530, yvy1540, cad, cae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), False, app(app(app(ty_@3, gg), app(app(ty_@2, bbb), bbc)), bac)) -> new_lt3(yvy1531, yvy1541, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(ty_Maybe, bag), bac) -> new_lt1(yvy1531, yvy1541, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(ty_Maybe, bbh), gh, bac) -> new_lt1(yvy1530, yvy1540, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(app(app(ty_@3, bbe), bbf), bbg), gh, bac) -> new_lt0(yvy1530, yvy1540, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(app(app(ty_@3, bad), bae), baf), bac) -> new_lt0(yvy1531, yvy1541, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(app(ty_Either, bah), bba), bac) -> new_lt2(yvy1531, yvy1541, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(app(ty_Either, bca), bcb), gh, bac) -> new_lt2(yvy1530, yvy1540, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(ty_[], bbd), gh, bac) -> new_lt(yvy1530, yvy1540, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(ty_[], bab), bac) -> new_lt(yvy1531, yvy1541, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), app(app(ty_@2, bcc), bcd), gh, bac) -> new_lt3(yvy1530, yvy1540, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), gg, app(app(ty_@2, bbb), bbc), bac) -> new_lt3(yvy1531, yvy1541, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy1530), Left(yvy1540), app(ty_[], bdf), bdg) -> new_ltEs(yvy1530, yvy1540, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(ty_[], bfa)) -> new_ltEs(yvy1530, yvy1540, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, bdh), bea), beb), bdg) -> new_ltEs0(yvy1530, yvy1540, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_ltEs0(yvy1530, yvy1540, bfb, bfc, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(app(ty_Either, bff), bfg)) -> new_ltEs2(yvy1530, yvy1540, bff, bfg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy1530), Left(yvy1540), app(app(ty_Either, bed), bee), bdg) -> new_ltEs2(yvy1530, yvy1540, bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(app(ty_@2, bfh), bga)) -> new_ltEs3(yvy1530, yvy1540, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(yvy1530), Left(yvy1540), app(app(ty_@2, bef), beg), bdg) -> new_ltEs3(yvy1530, yvy1540, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(yvy1530), Right(yvy1540), beh, app(ty_Maybe, bfe)) -> new_ltEs1(yvy1530, yvy1540, bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(yvy1530), Left(yvy1540), app(ty_Maybe, bec), bdg) -> new_ltEs1(yvy1530, yvy1540, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(ty_Maybe, fh), cg) -> new_lt1(yvy192, yvy195, fh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(ty_Maybe, dd), cf, cg) -> new_lt1(yvy191, yvy194, dd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(app(app(ty_@3, da), db), dc), cf, cg) -> new_lt0(yvy191, yvy194, da, db, dc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(app(app(ty_@3, fd), ff), fg), cg) -> new_lt0(yvy192, yvy195, fd, ff, fg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(app(ty_Either, ga), gb), cg) -> new_lt2(yvy192, yvy195, ga, gb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(app(ty_Either, de), df), cf, cg) -> new_lt2(yvy191, yvy194, de, df) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(ty_[], fc), cg) -> new_lt(yvy192, yvy195, fc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(ty_[], ce), cf, cg) -> new_lt(yvy191, yvy194, ce) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, app(app(ty_@2, dg), dh), cf, cg) -> new_lt3(yvy191, yvy194, dg, dh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, app(app(ty_@2, gc), gd), cg) -> new_lt3(yvy192, yvy195, gc, gd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) The TRS R consists of the following rules: new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_esEs12(GT) -> False new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs12(EQ) -> False new_sr1(Pos(yvy950)) -> Pos(new_primMulNat1(yvy950)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primMulNat1(Succ(yvy9500)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9500)), yvy9500) new_primMulNat1(Zero) -> Zero new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primPlusNat1(yvy284, yvy9500) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy284, Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_sr1(Neg(yvy950)) -> Neg(new_primMulNat1(yvy950)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_esEs12(LT) -> True new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ The set Q consists of the following terms: new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs12(GT) new_primMulNat0(Succ(x0), Succ(x1)) new_compare6(x0, x1) new_primPlusNat1(x0, x1) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_sr1(Neg(x0)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT) new_primCmpNat0(Zero, Succ(x0)) new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat0(Zero, Succ(x0)) new_esEs12(EQ) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_primCmpNat0(Zero, Zero) new_primMulNat1(Succ(x0)) new_sr1(Pos(x0)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primMulNat1(Zero) new_primPlusNat0(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_primMulNat0(Succ(x0), Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) 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, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) The remaining pairs can at least be oriented weakly. Used ordering: Polynomial interpretation [POLO]: POL(Branch(x_1, x_2, x_3, x_4, x_5)) = x_1 + x_2 + x_3 + x_5 POL(EQ) = 0 POL(False) = 0 POL(GT) = 0 POL(LT) = 1 POL(Neg(x_1)) = 1 POL(Pos(x_1)) = 1 POL(Succ(x_1)) = 0 POL(True) = 1 POL(Zero) = 0 POL(new_compare6(x_1, x_2)) = x_2 POL(new_esEs12(x_1)) = x_1 POL(new_lt9(x_1, x_2)) = x_2 POL(new_mkVBalBranch(x_1, x_2, x_3, x_4, x_5, x_6)) = x_3 + x_5 + x_6 POL(new_mkVBalBranch3MkVBalBranch1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_13 + x_14 + x_15 POL(new_mkVBalBranch3MkVBalBranch2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15)) = x_10 + x_14 + x_15 + x_6 + x_7 + x_8 POL(new_mkVBalBranch3Size_l(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_6 + x_7 + x_8 POL(new_mkVBalBranch3Size_r(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12)) = x_1 + x_10 + x_11 + x_12 + x_2 + x_3 + x_4 + x_5 + x_6 + x_7 + x_8 + x_9 POL(new_primCmpInt(x_1, x_2)) = x_2 POL(new_primCmpNat0(x_1, x_2)) = 1 POL(new_primMulNat0(x_1, x_2)) = x_1 + x_2 POL(new_primMulNat1(x_1)) = 0 POL(new_primPlusNat0(x_1, x_2)) = x_2 POL(new_primPlusNat1(x_1, x_2)) = 1 + x_2 POL(new_sizeFM(x_1, x_2, x_3, x_4, x_5, x_6, x_7)) = x_3 POL(new_sr1(x_1)) = 0 The following usable rules [FROCOS05] with respect to the argument filtering of the ordering [JAR06] were oriented: new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs12(GT) -> False new_esEs12(EQ) -> False new_esEs12(LT) -> True new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch1(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) The TRS R consists of the following rules: new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_esEs12(GT) -> False new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs12(EQ) -> False new_sr1(Pos(yvy950)) -> Pos(new_primMulNat1(yvy950)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primMulNat1(Succ(yvy9500)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9500)), yvy9500) new_primMulNat1(Zero) -> Zero new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primPlusNat1(yvy284, yvy9500) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy284, Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_sr1(Neg(yvy950)) -> Neg(new_primMulNat1(yvy950)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_esEs12(LT) -> True new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ The set Q consists of the following terms: new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs12(GT) new_primMulNat0(Succ(x0), Succ(x1)) new_compare6(x0, x1) new_primPlusNat1(x0, x1) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_sr1(Neg(x0)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT) new_primCmpNat0(Zero, Succ(x0)) new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat0(Zero, Succ(x0)) new_esEs12(EQ) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_primCmpNat0(Zero, Zero) new_primMulNat1(Succ(x0)) new_sr1(Pos(x0)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primMulNat1(Zero) new_primPlusNat0(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_primMulNat0(Succ(x0), Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. ---------------------------------------- (33) Obligation: Q DP problem: The TRS P consists of the following rules: new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) The TRS R consists of the following rules: new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_primMulNat0(Zero, Zero) -> Zero new_primPlusNat0(Zero, Zero) -> Zero new_esEs12(GT) -> False new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs12(EQ) -> False new_sr1(Pos(yvy950)) -> Pos(new_primMulNat1(yvy950)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_primMulNat1(Succ(yvy9500)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9500)), yvy9500) new_primMulNat1(Zero) -> Zero new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primPlusNat1(yvy284, yvy9500) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy284, Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_sr1(Neg(yvy950)) -> Neg(new_primMulNat1(yvy950)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_esEs12(LT) -> True new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ The set Q consists of the following terms: new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs12(GT) new_primMulNat0(Succ(x0), Succ(x1)) new_compare6(x0, x1) new_primPlusNat1(x0, x1) new_primPlusNat0(Succ(x0), Zero) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_lt9(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpNat0(Succ(x0), Succ(x1)) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primPlusNat0(Succ(x0), Succ(x1)) new_sr1(Neg(x0)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs12(LT) new_primCmpNat0(Zero, Succ(x0)) new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primMulNat0(Zero, Zero) new_primPlusNat0(Zero, Succ(x0)) new_esEs12(EQ) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_primCmpNat0(Zero, Zero) new_primMulNat1(Succ(x0)) new_sr1(Pos(x0)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_primMulNat1(Zero) new_primPlusNat0(Zero, Zero) new_primCmpNat0(Succ(x0), Zero) new_primMulNat0(Succ(x0), Zero) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (34) 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, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) The graph contains the following edges 4 > 1, 4 > 2, 4 > 3, 4 > 4, 4 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 3 > 10, 1 >= 11, 2 >= 12, 5 >= 14, 6 >= 15 *new_mkVBalBranch3MkVBalBranch2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkVBalBranch(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba) The graph contains the following edges 11 >= 1, 12 >= 2, 4 >= 4, 14 >= 5, 15 >= 6 ---------------------------------------- (35) YES ---------------------------------------- (36) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, True, bb, bc) -> new_addToFM_C(yvy109, yvy110, yvy111, bb, bc) new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, h, ba) -> new_addToFM_C(yvy79, yvy81, yvy82, h, ba) new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, h, ba) -> new_addToFM_C1(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, h), h, ba) new_addToFM_C(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, bd, be) -> new_addToFM_C2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, bd), bd, be) The TRS R consists of the following rules: new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt23(yvy204, yvy206, ty_Integer) -> new_lt10(yvy204, yvy206) new_esEs14(yvy1530, yvy1540, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs22(yvy1530, yvy1540, eed, eee, eef) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, yvy294) -> True new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_Integer) -> new_ltEs9(yvy205, yvy207) new_gt(yvy81, yvy76, app(ty_Ratio, fhh)) -> new_gt7(yvy81, yvy76, fhh) new_ltEs24(yvy153, yvy154, ty_Ordering) -> new_ltEs14(yvy153, yvy154) new_lt14(yvy40, yvy30, cc) -> new_esEs12(new_compare17(yvy40, yvy30, cc)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(yvy234, yvy235, False, cae) -> GT new_esEs9(yvy400, yvy300, app(app(ty_Either, ehd), ehe)) -> new_esEs27(yvy400, yvy300, ehd, ehe) new_esEs5(yvy401, yvy301, app(ty_Ratio, dhf)) -> new_esEs19(yvy401, yvy301, dhf) new_compare26(yvy167, yvy168, True, hc, hd) -> EQ new_esEs11(yvy400, yvy300, app(ty_Ratio, fcc)) -> new_esEs19(yvy400, yvy300, fcc) new_ltEs19(yvy193, yvy196, app(ty_[], eg)) -> new_ltEs12(yvy193, yvy196, eg) new_esEs38(yvy4002, yvy3002, app(ty_Maybe, dce)) -> new_esEs23(yvy4002, yvy3002, dce) new_esEs30(yvy191, yvy194, app(ty_[], de)) -> new_esEs21(yvy191, yvy194, de) new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs24(yvy153, yvy154, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs4(yvy153, yvy154, ebc, ebd, ebe) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, app(app(app(ty_@3, ffd), ffe), fff)) -> new_ltEs4(yvy1530, yvy1540, ffd, ffe, fff) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_lt24(yvy40, yvy50, app(ty_[], bg)) -> new_lt12(yvy40, yvy50, bg) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Bool, fdf) -> new_ltEs7(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, app(ty_Ratio, bfd)) -> new_esEs19(yvy1530, yvy1540, bfd) new_esEs6(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, app(app(ty_@2, ed), ee)) -> new_esEs28(yvy191, yvy194, ed, ee) new_esEs39(yvy4001, yvy3001, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(yvy4001, yvy3001, dch, dda, ddb) new_esEs37(yvy204, yvy206, ty_@0) -> new_esEs15(yvy204, yvy206) new_lt6(yvy1530, yvy1540, app(ty_Maybe, eeg)) -> new_lt14(yvy1530, yvy1540, eeg) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs26(yvy4000, yvy3000) new_lt23(yvy204, yvy206, ty_Double) -> new_lt17(yvy204, yvy206) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, ty_Integer) -> new_esEs18(yvy191, yvy194) new_lt5(yvy1531, yvy1541, ty_Float) -> new_lt11(yvy1531, yvy1541) new_primCompAux0(yvy132, LT) -> LT new_ltEs20(yvy167, yvy168, app(app(ty_@2, bae), baf)) -> new_ltEs18(yvy167, yvy168, bae, baf) new_esEs38(yvy4002, yvy3002, app(app(ty_@2, dca), dcb)) -> new_esEs28(yvy4002, yvy3002, dca, dcb) new_not(True) -> False new_lt5(yvy1531, yvy1541, ty_Bool) -> new_lt8(yvy1531, yvy1541) new_lt23(yvy204, yvy206, ty_Int) -> new_lt9(yvy204, yvy206) new_ltEs23(yvy205, yvy207, ty_Char) -> new_ltEs15(yvy205, yvy207) new_esEs32(yvy4000, yvy3000, app(app(ty_Either, bda), bdb)) -> new_esEs27(yvy4000, yvy3000, bda, bdb) new_lt6(yvy1530, yvy1540, app(ty_Ratio, eeb)) -> new_lt4(yvy1530, yvy1540, eeb) new_lt22(yvy1530, yvy1540, app(ty_Ratio, bfd)) -> new_lt4(yvy1530, yvy1540, bfd) new_ltEs17(Left(yvy1530), Right(yvy1540), ffa, fdf) -> True new_esEs7(yvy400, yvy300, app(ty_[], cfb)) -> new_esEs21(yvy400, yvy300, cfb) new_compare30(LT, LT) -> EQ new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs22(yvy4000, yvy3000, daa, dab, dac) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Char) -> new_gt9(yvy81, yvy76) new_esEs39(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs24(yvy153, yvy154, ty_Double) -> new_ltEs16(yvy153, yvy154) new_compare16(yvy278, yvy279, yvy280, yvy281, True, bde, bdf) -> LT new_ltEs20(yvy167, yvy168, ty_Bool) -> new_ltEs7(yvy167, yvy168) new_lt20(yvy191, yvy194, app(app(app(ty_@3, df), dg), dh)) -> new_lt13(yvy191, yvy194, df, dg, dh) new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs14(EQ, EQ) -> True new_compare17(Nothing, Nothing, cc) -> EQ new_esEs33(yvy4000, yvy3000, app(ty_Maybe, fdd)) -> new_esEs23(yvy4000, yvy3000, fdd) new_compare30(GT, GT) -> EQ new_lt11(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_esEs13(yvy1531, yvy1541, app(ty_[], eda)) -> new_esEs21(yvy1531, yvy1541, eda) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, app(app(ty_Either, ffh), fga)) -> new_ltEs17(yvy1530, yvy1540, ffh, fga) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(ty_Maybe, dah)) -> new_esEs23(yvy4000, yvy3000, dah) new_lt6(yvy1530, yvy1540, app(app(ty_@2, efb), efc)) -> new_lt19(yvy1530, yvy1540, efb, efc) new_lt22(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs40(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt2(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) new_ltEs23(yvy205, yvy207, ty_Float) -> new_ltEs11(yvy205, yvy207) new_esEs37(yvy204, yvy206, ty_Bool) -> new_esEs16(yvy204, yvy206) new_compare17(Just(yvy400), Nothing, cc) -> GT new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_esEs40(yvy4000, yvy3000, app(app(ty_@2, dee), def)) -> new_esEs28(yvy4000, yvy3000, dee, def) new_esEs5(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, ty_Int) -> new_ltEs8(yvy160, yvy161) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, fgg), fgh), fha)) -> new_ltEs4(yvy1530, yvy1540, fgg, fgh, fha) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs22(yvy400, yvy300, efe, eff, efg) new_lt5(yvy1531, yvy1541, ty_@0) -> new_lt7(yvy1531, yvy1541) new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dbb, dbc, dbd) -> new_asAs(new_esEs40(yvy4000, yvy3000, dbb), new_asAs(new_esEs39(yvy4001, yvy3001, dbc), new_esEs38(yvy4002, yvy3002, dbd))) new_esEs20(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs37(yvy204, yvy206, ty_Double) -> new_esEs26(yvy204, yvy206) new_ltEs20(yvy167, yvy168, app(ty_Maybe, bab)) -> new_ltEs13(yvy167, yvy168, bab) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Int, fdf) -> new_ltEs8(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy167, yvy168, ty_Float) -> new_ltEs11(yvy167, yvy168) new_esEs4(yvy402, yvy302, app(ty_[], dfc)) -> new_esEs21(yvy402, yvy302, dfc) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare32(yvy400, yvy300, ty_@0) -> new_compare11(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, app(app(ty_Either, ecd), ece)) -> new_ltEs17(yvy1532, yvy1542, ecd, ece) new_lt5(yvy1531, yvy1541, ty_Ordering) -> new_lt15(yvy1531, yvy1541) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Integer, cge) -> new_esEs18(yvy4000, yvy3000) new_esEs19(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), dhh) -> new_asAs(new_esEs35(yvy4000, yvy3000, dhh), new_esEs34(yvy4001, yvy3001, dhh)) new_ltEs23(yvy205, yvy207, app(app(ty_@2, cdc), cdd)) -> new_ltEs18(yvy205, yvy207, cdc, cdd) new_esEs6(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs15(yvy4000, yvy3000) new_gt6(yvy40, yvy30, bh, ca, cb) -> new_esEs41(new_compare31(yvy40, yvy30, bh, ca, cb)) new_esEs14(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Ordering) -> new_esEs24(yvy192, yvy195) new_lt23(yvy204, yvy206, app(app(app(ty_@3, cdg), cdh), cea)) -> new_lt13(yvy204, yvy206, cdg, cdh, cea) new_esEs39(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_ltEs19(yvy193, yvy196, ty_Double) -> new_ltEs16(yvy193, yvy196) new_esEs38(yvy4002, yvy3002, app(ty_[], dbe)) -> new_esEs21(yvy4002, yvy3002, dbe) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_[], fdh), fdf) -> new_ltEs12(yvy1530, yvy1540, fdh) new_esEs30(yvy191, yvy194, app(ty_Maybe, ea)) -> new_esEs23(yvy191, yvy194, ea) new_ltEs19(yvy193, yvy196, ty_Ordering) -> new_ltEs14(yvy193, yvy196) new_ltEs20(yvy167, yvy168, ty_@0) -> new_ltEs6(yvy167, yvy168) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs22(yvy4000, yvy3000, cah, cba, cbb) new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_ltEs20(yvy167, yvy168, app(ty_Ratio, he)) -> new_ltEs10(yvy167, yvy168, he) new_ltEs14(EQ, GT) -> True new_esEs40(yvy4000, yvy3000, app(ty_Maybe, dfa)) -> new_esEs23(yvy4000, yvy3000, dfa) new_lt24(yvy40, yvy50, app(ty_Maybe, cc)) -> new_lt14(yvy40, yvy50, cc) new_ltEs20(yvy167, yvy168, app(app(ty_Either, bac), bad)) -> new_ltEs17(yvy167, yvy168, bac, bad) new_ltEs5(yvy1532, yvy1542, ty_Ordering) -> new_ltEs14(yvy1532, yvy1542) new_gt(yvy81, yvy76, app(app(ty_Either, gaf), gag)) -> new_gt0(yvy81, yvy76, gaf, gag) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs10(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs4(yvy402, yvy302, ty_@0) -> new_esEs15(yvy402, yvy302) new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_esEs21(:(yvy4000, yvy4001), [], dhg) -> False new_esEs21([], :(yvy3000, yvy3001), dhg) -> False new_ltEs14(LT, GT) -> True new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_ltEs21(yvy1531, yvy1541, ty_Char) -> new_ltEs15(yvy1531, yvy1541) new_ltEs14(GT, GT) -> True new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs10(yvy401, yvy301, app(app(ty_Either, faf), fag)) -> new_esEs27(yvy401, yvy301, faf, fag) new_esEs33(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_compare11(@0, @0) -> EQ new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_ltEs5(yvy1532, yvy1542, app(ty_Ratio, ebf)) -> new_ltEs10(yvy1532, yvy1542, ebf) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, app(ty_Maybe, dhe)) -> new_esEs23(yvy401, yvy301, dhe) new_ltEs5(yvy1532, yvy1542, ty_@0) -> new_ltEs6(yvy1532, yvy1542) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_[], fgf)) -> new_ltEs12(yvy1530, yvy1540, fgf) new_lt23(yvy204, yvy206, ty_Float) -> new_lt11(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_Ratio, bgh)) -> new_ltEs10(yvy160, yvy161, bgh) new_gt(yvy81, yvy76, app(ty_[], gaa)) -> new_gt1(yvy81, yvy76, gaa) new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs22(yvy4001, yvy3001, bbb, bbc, bbd) new_ltEs22(yvy160, yvy161, app(app(ty_Either, bhf), bhg)) -> new_ltEs17(yvy160, yvy161, bhf, bhg) new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_ltEs22(yvy160, yvy161, ty_Double) -> new_ltEs16(yvy160, yvy161) new_lt22(yvy1530, yvy1540, app(ty_Maybe, bga)) -> new_lt14(yvy1530, yvy1540, bga) new_esEs14(yvy1530, yvy1540, app(ty_Ratio, eeb)) -> new_esEs19(yvy1530, yvy1540, eeb) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare29(False, False) -> EQ new_esEs38(yvy4002, yvy3002, app(ty_Ratio, dcf)) -> new_esEs19(yvy4002, yvy3002, dcf) new_esEs33(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt6(yvy1530, yvy1540, app(ty_[], eec)) -> new_lt12(yvy1530, yvy1540, eec) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, app(ty_Maybe, cgb)) -> new_esEs23(yvy400, yvy300, cgb) new_ltEs21(yvy1531, yvy1541, ty_Double) -> new_ltEs16(yvy1531, yvy1541) new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs12(LT) -> True new_esEs13(yvy1531, yvy1541, app(app(ty_@2, edh), eea)) -> new_esEs28(yvy1531, yvy1541, edh, eea) new_esEs6(yvy400, yvy300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs22(yvy400, yvy300, dbb, dbc, dbd) new_gt0(yvy40, yvy30, cd, ce) -> new_esEs41(new_compare7(yvy40, yvy30, cd, ce)) new_esEs7(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_[], gb)) -> new_lt12(yvy192, yvy195, gb) new_ltEs20(yvy167, yvy168, ty_Integer) -> new_ltEs9(yvy167, yvy168) new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, app(ty_[], dea)) -> new_esEs21(yvy4000, yvy3000, dea) new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) new_esEs4(yvy402, yvy302, ty_Bool) -> new_esEs16(yvy402, yvy302) new_ltEs19(yvy193, yvy196, ty_Char) -> new_ltEs15(yvy193, yvy196) new_lt23(yvy204, yvy206, ty_Ordering) -> new_lt15(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs22(yvy401, yvy301, dgf, dgg, dgh) new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs4(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), ebc, ebd, ebe) -> new_pePe(new_lt6(yvy1530, yvy1540, ebc), new_asAs(new_esEs14(yvy1530, yvy1540, ebc), new_pePe(new_lt5(yvy1531, yvy1541, ebd), new_asAs(new_esEs13(yvy1531, yvy1541, ebd), new_ltEs5(yvy1532, yvy1542, ebe))))) new_lt20(yvy191, yvy194, ty_Integer) -> new_lt10(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(app(ty_Either, daf), dag)) -> new_esEs27(yvy4000, yvy3000, daf, dag) new_esEs37(yvy204, yvy206, ty_Int) -> new_esEs17(yvy204, yvy206) new_lt5(yvy1531, yvy1541, ty_Integer) -> new_lt10(yvy1531, yvy1541) new_ltEs10(yvy153, yvy154, cad) -> new_fsEs(new_compare5(yvy153, yvy154, cad)) new_esEs29(yvy192, yvy195, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs22(yvy192, yvy195, gc, gd, ge) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, app(app(ty_@2, fgb), fgc)) -> new_ltEs18(yvy1530, yvy1540, fgb, fgc) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare29(True, False) -> GT new_esEs40(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_gt12(yvy40, yvy30) -> new_esEs41(new_compare11(yvy40, yvy30)) new_esEs14(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_esEs31(yvy4001, yvy3001, app(ty_Maybe, bca)) -> new_esEs23(yvy4001, yvy3001, bca) new_esEs4(yvy402, yvy302, app(ty_Maybe, dgc)) -> new_esEs23(yvy402, yvy302, dgc) new_gt(yvy81, yvy76, ty_Bool) -> new_gt8(yvy81, yvy76) new_compare7(Left(yvy400), Right(yvy300), cd, ce) -> LT new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs12(GT) -> False new_esEs14(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_lt24(yvy40, yvy50, ty_Char) -> new_lt16(yvy40, yvy50) new_esEs12(EQ) -> False new_esEs13(yvy1531, yvy1541, app(app(ty_Either, edf), edg)) -> new_esEs27(yvy1531, yvy1541, edf, edg) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, yvy270, ceg, ceh, cfa) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, yvy270, ceg, ceh, cfa) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Ratio, fge)) -> new_ltEs10(yvy1530, yvy1540, fge) new_lt23(yvy204, yvy206, app(app(ty_Either, cec), ced)) -> new_lt18(yvy204, yvy206, cec, ced) new_esEs39(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, app(ty_Ratio, ffb)) -> new_ltEs10(yvy1530, yvy1540, ffb) new_lt21(yvy192, yvy195, ty_Ordering) -> new_lt15(yvy192, yvy195) new_lt20(yvy191, yvy194, ty_Float) -> new_lt11(yvy191, yvy194) new_esEs38(yvy4002, yvy3002, app(app(ty_Either, dcc), dcd)) -> new_esEs27(yvy4002, yvy3002, dcc, dcd) new_esEs10(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_esEs37(yvy204, yvy206, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs22(yvy204, yvy206, cdg, cdh, cea) new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs32(yvy4000, yvy3000, app(app(ty_@2, bcg), bch)) -> new_esEs28(yvy4000, yvy3000, bcg, bch) new_esEs5(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_esEs36(yvy1530, yvy1540, app(app(ty_@2, bgd), bge)) -> new_esEs28(yvy1530, yvy1540, bgd, bge) new_lt5(yvy1531, yvy1541, app(app(app(ty_@3, edb), edc), edd)) -> new_lt13(yvy1531, yvy1541, edb, edc, edd) new_esEs10(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare0([], :(yvy300, yvy301), bg) -> LT new_compare32(yvy400, yvy300, ty_Bool) -> new_compare29(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Bool) -> new_esEs16(yvy1531, yvy1541) new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, app(ty_Ratio, dd)) -> new_esEs19(yvy191, yvy194, dd) new_ltEs16(yvy153, yvy154) -> new_fsEs(new_compare18(yvy153, yvy154)) new_esEs5(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs13(yvy1531, yvy1541, app(ty_Ratio, ech)) -> new_esEs19(yvy1531, yvy1541, ech) new_lt20(yvy191, yvy194, ty_Bool) -> new_lt8(yvy191, yvy194) new_ltEs23(yvy205, yvy207, app(ty_[], ccd)) -> new_ltEs12(yvy205, yvy207, ccd) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Integer, fdf) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_esEs14(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cbe), cbf)) -> new_esEs27(yvy4000, yvy3000, cbe, cbf) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_esEs40(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs38(yvy4002, yvy3002, ty_Bool) -> new_esEs16(yvy4002, yvy3002) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(ty_Ratio, dba)) -> new_esEs19(yvy4000, yvy3000, dba) new_esEs30(yvy191, yvy194, ty_Bool) -> new_esEs16(yvy191, yvy194) new_esEs5(yvy401, yvy301, app(ty_[], dge)) -> new_esEs21(yvy401, yvy301, dge) new_compare8(@2(yvy400, yvy401), @2(yvy300, yvy301), cf, cg) -> new_compare28(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cf), new_esEs10(yvy401, yvy301, cg)), cf, cg) new_lt21(yvy192, yvy195, ty_@0) -> new_lt7(yvy192, yvy195) new_esEs33(yvy4000, yvy3000, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs22(yvy4000, yvy3000, fce, fcf, fcg) new_esEs21([], [], dhg) -> True new_esEs10(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs39(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, app(app(ty_Either, chg), cge)) -> new_esEs27(yvy400, yvy300, chg, cge) new_ltEs13(Nothing, Nothing, fgd) -> True new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Nothing, fgd) -> False new_esEs29(yvy192, yvy195, ty_Int) -> new_esEs17(yvy192, yvy195) new_lt22(yvy1530, yvy1540, app(ty_[], bfe)) -> new_lt12(yvy1530, yvy1540, bfe) new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_ltEs23(yvy205, yvy207, app(ty_Ratio, ccc)) -> new_ltEs10(yvy205, yvy207, ccc) new_esEs10(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs4(yvy402, yvy302, ty_Float) -> new_esEs20(yvy402, yvy302) new_lt12(yvy40, yvy30, bg) -> new_esEs12(new_compare0(yvy40, yvy30, bg)) new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs22(yvy4000, yvy3000, bcd, bce, bcf) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare25(yvy160, yvy161, False, bgf, bgg) -> new_compare19(yvy160, yvy161, new_ltEs22(yvy160, yvy161, bgf), bgf, bgg) new_compare30(GT, EQ) -> GT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cha), chb), cge) -> new_esEs28(yvy4000, yvy3000, cha, chb) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Float, fdf) -> new_ltEs11(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, app(ty_Ratio, ga)) -> new_esEs19(yvy192, yvy195, ga) new_esEs4(yvy402, yvy302, ty_Ordering) -> new_esEs24(yvy402, yvy302) new_lt21(yvy192, yvy195, app(ty_Maybe, gf)) -> new_lt14(yvy192, yvy195, gf) new_ltEs24(yvy153, yvy154, app(ty_Ratio, cad)) -> new_ltEs10(yvy153, yvy154, cad) new_esEs40(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy192, yvy195, ty_Int) -> new_lt9(yvy192, yvy195) new_compare29(False, True) -> LT new_esEs11(yvy400, yvy300, app(ty_Maybe, fcb)) -> new_esEs23(yvy400, yvy300, fcb) new_compare210(yvy153, yvy154, False, fhg) -> new_compare110(yvy153, yvy154, new_ltEs24(yvy153, yvy154, fhg), fhg) new_esEs15(@0, @0) -> True new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt24(yvy40, yvy50, ty_Bool) -> new_lt8(yvy40, yvy50) new_lt20(yvy191, yvy194, app(ty_Maybe, ea)) -> new_lt14(yvy191, yvy194, ea) new_esEs10(yvy401, yvy301, app(ty_Maybe, fah)) -> new_esEs23(yvy401, yvy301, fah) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt6(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, app(ty_[], ebg)) -> new_ltEs12(yvy1532, yvy1542, ebg) new_ltEs7(True, True) -> True new_gt9(yvy40, yvy30) -> new_esEs41(new_compare12(yvy40, yvy30)) new_esEs6(yvy400, yvy300, app(ty_[], dhg)) -> new_esEs21(yvy400, yvy300, dhg) new_lt20(yvy191, yvy194, ty_@0) -> new_lt7(yvy191, yvy194) new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs11(yvy400, yvy300, app(app(ty_@2, fbf), fbg)) -> new_esEs28(yvy400, yvy300, fbf, fbg) new_lt22(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs16(True, True) -> True new_esEs7(yvy400, yvy300, app(app(ty_Either, cfh), cga)) -> new_esEs27(yvy400, yvy300, cfh, cga) new_esEs10(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs14(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs41(GT) -> True new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Ratio, fdg), fdf) -> new_ltEs10(yvy1530, yvy1540, fdg) new_compare28(yvy204, yvy205, yvy206, yvy207, False, cca, ccb) -> new_compare15(yvy204, yvy205, yvy206, yvy207, new_lt23(yvy204, yvy206, cca), new_asAs(new_esEs37(yvy204, yvy206, cca), new_ltEs23(yvy205, yvy207, ccb)), cca, ccb) new_esEs14(yvy1530, yvy1540, app(app(ty_Either, eeh), efa)) -> new_esEs27(yvy1530, yvy1540, eeh, efa) new_lt24(yvy40, yvy50, app(app(ty_Either, cd), ce)) -> new_lt18(yvy40, yvy50, cd, ce) new_esEs38(yvy4002, yvy3002, ty_@0) -> new_esEs15(yvy4002, yvy3002) new_esEs37(yvy204, yvy206, app(app(ty_Either, cec), ced)) -> new_esEs27(yvy204, yvy206, cec, ced) new_lt20(yvy191, yvy194, ty_Ordering) -> new_lt15(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(app(ty_@2, dad), dae)) -> new_esEs28(yvy4000, yvy3000, dad, dae) new_lt21(yvy192, yvy195, ty_Float) -> new_lt11(yvy192, yvy195) new_lt21(yvy192, yvy195, ty_Bool) -> new_lt8(yvy192, yvy195) new_esEs10(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs38(yvy4002, yvy3002, ty_Char) -> new_esEs25(yvy4002, yvy3002) new_esEs10(yvy401, yvy301, app(app(ty_@2, fad), fae)) -> new_esEs28(yvy401, yvy301, fad, fae) new_compare13(yvy250, yvy251, True, gbb, gbc) -> LT new_esEs33(yvy4000, yvy3000, app(app(ty_@2, fch), fda)) -> new_esEs28(yvy4000, yvy3000, fch, fda) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs25(yvy4000, yvy3000) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs24(yvy153, yvy154, app(ty_[], bdg)) -> new_ltEs12(yvy153, yvy154, bdg) new_esEs33(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs4(yvy402, yvy302, ty_Integer) -> new_esEs18(yvy402, yvy302) new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs13(yvy1531, yvy1541, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs22(yvy1531, yvy1541, edb, edc, edd) new_esEs29(yvy192, yvy195, ty_Double) -> new_esEs26(yvy192, yvy195) new_esEs13(yvy1531, yvy1541, ty_@0) -> new_esEs15(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_lt22(yvy1530, yvy1540, app(app(ty_Either, bgb), bgc)) -> new_lt18(yvy1530, yvy1540, bgb, bgc) new_compare0(:(yvy400, yvy401), [], bg) -> GT new_compare32(yvy400, yvy300, app(ty_[], eab)) -> new_compare0(yvy400, yvy300, eab) new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_esEs31(yvy4001, yvy3001, app(ty_Ratio, bcb)) -> new_esEs19(yvy4001, yvy3001, bcb) new_esEs39(yvy4001, yvy3001, app(app(ty_Either, dde), ddf)) -> new_esEs27(yvy4001, yvy3001, dde, ddf) new_compare32(yvy400, yvy300, ty_Float) -> new_compare9(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy1530, yvy1540, app(ty_Maybe, eeg)) -> new_esEs23(yvy1530, yvy1540, eeg) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, app(ty_[], ffc)) -> new_ltEs12(yvy1530, yvy1540, ffc) new_esEs14(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Double) -> new_esEs26(yvy191, yvy194) new_esEs37(yvy204, yvy206, ty_Ordering) -> new_esEs24(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Float) -> new_esEs20(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(app(ty_Either, edf), edg)) -> new_lt18(yvy1531, yvy1541, edf, edg) new_lt20(yvy191, yvy194, ty_Int) -> new_lt9(yvy191, yvy194) new_esEs37(yvy204, yvy206, app(ty_Maybe, ceb)) -> new_esEs23(yvy204, yvy206, ceb) new_esEs36(yvy1530, yvy1540, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs22(yvy1530, yvy1540, bff, bfg, bfh) new_esEs4(yvy402, yvy302, ty_Char) -> new_esEs25(yvy402, yvy302) new_esEs26(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs29(yvy192, yvy195, app(app(ty_@2, ha), hb)) -> new_esEs28(yvy192, yvy195, ha, hb) new_lt24(yvy40, yvy50, ty_@0) -> new_lt7(yvy40, yvy50) new_lt20(yvy191, yvy194, app(app(ty_Either, eb), ec)) -> new_lt18(yvy191, yvy194, eb, ec) new_lt5(yvy1531, yvy1541, ty_Int) -> new_lt9(yvy1531, yvy1541) new_esEs36(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Int) -> new_esEs17(yvy191, yvy194) new_lt8(yvy40, yvy30) -> new_esEs12(new_compare29(yvy40, yvy30)) new_compare13(yvy250, yvy251, False, gbb, gbc) -> GT new_esEs11(yvy400, yvy300, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs22(yvy400, yvy300, fbc, fbd, fbe) new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs38(yvy4002, yvy3002, ty_Integer) -> new_esEs18(yvy4002, yvy3002) new_esEs13(yvy1531, yvy1541, ty_Char) -> new_esEs25(yvy1531, yvy1541) new_esEs10(yvy401, yvy301, app(ty_Ratio, fba)) -> new_esEs19(yvy401, yvy301, fba) new_esEs36(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, app(ty_Ratio, fde)) -> new_esEs19(yvy4000, yvy3000, fde) new_lt10(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) new_lt23(yvy204, yvy206, ty_Bool) -> new_lt8(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Integer) -> new_esEs18(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(ty_[], efd)) -> new_esEs21(yvy400, yvy300, efd) new_primCompAux1(yvy400, yvy300, yvy114, bg) -> new_primCompAux0(yvy114, new_compare32(yvy400, yvy300, bg)) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs37(yvy204, yvy206, ty_Integer) -> new_esEs18(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(ty_Either, dhc), dhd)) -> new_esEs27(yvy401, yvy301, dhc, dhd) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Char, fdf) -> new_ltEs15(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_@2, fhe), fhf)) -> new_ltEs18(yvy1530, yvy1540, fhe, fhf) new_lt22(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_lt20(yvy191, yvy194, ty_Char) -> new_lt16(yvy191, yvy194) new_esEs40(yvy4000, yvy3000, app(app(ty_Either, deg), deh)) -> new_esEs27(yvy4000, yvy3000, deg, deh) new_esEs16(False, False) -> True new_gt(yvy81, yvy76, app(ty_Maybe, gae)) -> new_gt4(yvy81, yvy76, gae) new_ltEs21(yvy1531, yvy1541, app(ty_[], bec)) -> new_ltEs12(yvy1531, yvy1541, bec) new_esEs38(yvy4002, yvy3002, ty_Float) -> new_esEs20(yvy4002, yvy3002) new_esEs4(yvy402, yvy302, app(app(ty_Either, dga), dgb)) -> new_esEs27(yvy402, yvy302, dga, dgb) new_esEs21(:(yvy4000, yvy4001), :(yvy3000, yvy3001), dhg) -> new_asAs(new_esEs33(yvy4000, yvy3000, dhg), new_esEs21(yvy4001, yvy3001, dhg)) new_gt(yvy81, yvy76, app(app(app(ty_@3, gab), gac), gad)) -> new_gt6(yvy81, yvy76, gab, gac, gad) new_compare32(yvy400, yvy300, app(app(app(ty_@3, eac), ead), eae)) -> new_compare31(yvy400, yvy300, eac, ead, eae) new_esEs14(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, True, da, db, dc) -> EQ new_ltEs17(Right(yvy1530), Left(yvy1540), ffa, fdf) -> False new_esEs36(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, ty_Float) -> new_esEs20(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_[], bha)) -> new_ltEs12(yvy160, yvy161, bha) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Ordering, fdf) -> new_ltEs14(yvy1530, yvy1540) new_lt21(yvy192, yvy195, app(app(ty_Either, gg), gh)) -> new_lt18(yvy192, yvy195, gg, gh) new_lt6(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_compare110(yvy234, yvy235, True, cae) -> LT new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Ordering) -> new_gt11(yvy81, yvy76) new_esEs31(yvy4001, yvy3001, app(app(ty_@2, bbe), bbf)) -> new_esEs28(yvy4001, yvy3001, bbe, bbf) new_ltEs14(LT, LT) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_@0, fdf) -> new_ltEs6(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(ty_Maybe, ede)) -> new_esEs23(yvy1531, yvy1541, ede) new_esEs36(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_ltEs13(Nothing, Just(yvy1540), fgd) -> True new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Ordering) -> new_esEs24(yvy1531, yvy1541) new_lt15(yvy40, yvy30) -> new_esEs12(new_compare30(yvy40, yvy30)) new_esEs36(yvy1530, yvy1540, app(ty_Maybe, bga)) -> new_esEs23(yvy1530, yvy1540, bga) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs9(yvy400, yvy300, app(ty_[], egf)) -> new_esEs21(yvy400, yvy300, egf) new_lt23(yvy204, yvy206, ty_@0) -> new_lt7(yvy204, yvy206) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) new_lt6(yvy1530, yvy1540, app(app(ty_Either, eeh), efa)) -> new_lt18(yvy1530, yvy1540, eeh, efa) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs21(yvy1531, yvy1541, ty_@0) -> new_ltEs6(yvy1531, yvy1541) new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt4(yvy40, yvy30, bf) -> new_esEs12(new_compare5(yvy40, yvy30, bf)) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, app(ty_[], dcg)) -> new_esEs21(yvy4001, yvy3001, dcg) new_ltEs5(yvy1532, yvy1542, ty_Char) -> new_ltEs15(yvy1532, yvy1542) new_lt22(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Maybe, fhb)) -> new_ltEs13(yvy1530, yvy1540, fhb) new_ltEs11(yvy153, yvy154) -> new_fsEs(new_compare9(yvy153, yvy154)) new_ltEs19(yvy193, yvy196, ty_Bool) -> new_ltEs7(yvy193, yvy196) new_lt22(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs37(yvy204, yvy206, ty_Char) -> new_esEs25(yvy204, yvy206) new_esEs36(yvy1530, yvy1540, app(app(ty_Either, bgb), bgc)) -> new_esEs27(yvy1530, yvy1540, bgb, bgc) new_esEs32(yvy4000, yvy3000, app(ty_Ratio, bdd)) -> new_esEs19(yvy4000, yvy3000, bdd) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_gt(yvy81, yvy76, ty_Integer) -> new_gt10(yvy81, yvy76) new_compare29(True, True) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bg) -> new_primCompAux1(yvy400, yvy300, new_compare0(yvy401, yvy301, bg), bg) new_esEs38(yvy4002, yvy3002, ty_Double) -> new_esEs26(yvy4002, yvy3002) new_esEs5(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_lt24(yvy40, yvy50, app(app(app(ty_@3, bh), ca), cb)) -> new_lt13(yvy40, yvy50, bh, ca, cb) new_ltEs8(yvy153, yvy154) -> new_fsEs(new_compare6(yvy153, yvy154)) new_esEs36(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs38(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) new_esEs14(yvy1530, yvy1540, app(ty_[], eec)) -> new_esEs21(yvy1530, yvy1540, eec) new_esEs40(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs33(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_compare28(yvy204, yvy205, yvy206, yvy207, True, cca, ccb) -> EQ new_primCompAux0(yvy132, GT) -> GT new_lt6(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_esEs9(yvy400, yvy300, app(ty_Ratio, ehg)) -> new_esEs19(yvy400, yvy300, ehg) new_esEs29(yvy192, yvy195, app(ty_[], gb)) -> new_esEs21(yvy192, yvy195, gb) new_lt23(yvy204, yvy206, app(ty_Ratio, cde)) -> new_lt4(yvy204, yvy206, cde) new_lt6(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_compare19(yvy241, yvy242, True, cab, cac) -> LT new_esEs23(Nothing, Just(yvy3000), caf) -> False new_esEs23(Just(yvy4000), Nothing, caf) -> False new_lt7(yvy40, yvy30) -> new_esEs12(new_compare11(yvy40, yvy30)) new_lt6(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_gt(yvy81, yvy76, ty_Float) -> new_gt13(yvy81, yvy76) new_gt10(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) new_esEs13(yvy1531, yvy1541, ty_Double) -> new_esEs26(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, ty_Char) -> new_lt16(yvy1531, yvy1541) new_esEs24(GT, GT) -> True new_lt5(yvy1531, yvy1541, app(ty_Ratio, ech)) -> new_lt4(yvy1531, yvy1541, ech) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_Maybe, ede)) -> new_lt14(yvy1531, yvy1541, ede) new_ltEs20(yvy167, yvy168, ty_Ordering) -> new_ltEs14(yvy167, yvy168) new_compare17(Just(yvy400), Just(yvy300), cc) -> new_compare210(yvy400, yvy300, new_esEs7(yvy400, yvy300, cc), cc) new_gt3(yvy40, yvy30) -> new_esEs41(new_compare6(yvy40, yvy30)) new_ltEs24(yvy153, yvy154, ty_Float) -> new_ltEs11(yvy153, yvy154) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(yvy167, yvy168, app(ty_[], hf)) -> new_ltEs12(yvy167, yvy168, hf) new_esEs10(yvy401, yvy301, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs22(yvy401, yvy301, faa, fab, fac) new_lt6(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt8(yvy40, yvy30) -> new_esEs41(new_compare29(yvy40, yvy30)) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs19(yvy193, yvy196, ty_@0) -> new_ltEs6(yvy193, yvy196) new_esEs23(Nothing, Nothing, caf) -> True new_compare32(yvy400, yvy300, ty_Ordering) -> new_compare30(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_@2, ddc), ddd)) -> new_esEs28(yvy4001, yvy3001, ddc, ddd) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Integer) -> new_esEs18(yvy192, yvy195) new_compare7(Left(yvy400), Left(yvy300), cd, ce) -> new_compare25(yvy400, yvy300, new_esEs8(yvy400, yvy300, cd), cd, ce) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cbc), cbd)) -> new_esEs28(yvy4000, yvy3000, cbc, cbd) new_esEs7(yvy400, yvy300, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs22(yvy400, yvy300, cfc, cfd, cfe) new_esEs33(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Char) -> new_lt16(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cgf), cgg), cgh), cge) -> new_esEs22(yvy4000, yvy3000, cgf, cgg, cgh) new_compare32(yvy400, yvy300, ty_Char) -> new_compare12(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, app(app(ty_Either, bbg), bbh)) -> new_esEs27(yvy4001, yvy3001, bbg, bbh) new_esEs4(yvy402, yvy302, app(ty_Ratio, dgd)) -> new_esEs19(yvy402, yvy302, dgd) new_gt5(yvy40, yvy30, cf, cg) -> new_esEs41(new_compare8(yvy40, yvy30, cf, cg)) new_fsEs(yvy295) -> new_not(new_esEs24(yvy295, GT)) new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy4002, yvy3002, ty_Ordering) -> new_esEs24(yvy4002, yvy3002) new_lt6(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs14(EQ, LT) -> False new_compare32(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare32(yvy400, yvy300, app(ty_Maybe, eaf)) -> new_compare17(yvy400, yvy300, eaf) new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs22(yvy160, yvy161, ty_Char) -> new_ltEs15(yvy160, yvy161) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbg)) -> new_esEs23(yvy4000, yvy3000, cbg) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Maybe, che), cge) -> new_esEs23(yvy4000, yvy3000, che) new_ltEs22(yvy160, yvy161, ty_Integer) -> new_ltEs9(yvy160, yvy161) new_ltEs23(yvy205, yvy207, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs4(yvy205, yvy207, cce, ccf, ccg) new_lt23(yvy204, yvy206, app(ty_[], cdf)) -> new_lt12(yvy204, yvy206, cdf) new_esEs24(LT, LT) -> True new_esEs33(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_lt20(yvy191, yvy194, app(app(ty_@2, ed), ee)) -> new_lt19(yvy191, yvy194, ed, ee) new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_esEs38(yvy4002, yvy3002, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs22(yvy4002, yvy3002, dbf, dbg, dbh) new_ltEs15(yvy153, yvy154) -> new_fsEs(new_compare12(yvy153, yvy154)) new_pePe(False, yvy294) -> yvy294 new_ltEs23(yvy205, yvy207, ty_Int) -> new_ltEs8(yvy205, yvy207) new_gt(yvy81, yvy76, ty_@0) -> new_gt12(yvy81, yvy76) new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_compare25(yvy160, yvy161, True, bgf, bgg) -> EQ new_compare210(yvy153, yvy154, True, fhg) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_compare32(yvy400, yvy300, app(app(ty_Either, eag), eah)) -> new_compare7(yvy400, yvy300, eag, eah) new_esEs39(yvy4001, yvy3001, app(ty_Maybe, ddg)) -> new_esEs23(yvy4001, yvy3001, ddg) new_lt22(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt13(yvy40, yvy30, bh, ca, cb) -> new_esEs12(new_compare31(yvy40, yvy30, bh, ca, cb)) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_[], cag)) -> new_esEs21(yvy4000, yvy3000, cag) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, da, db, dc) -> new_compare10(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, new_lt20(yvy191, yvy194, da), new_asAs(new_esEs30(yvy191, yvy194, da), new_pePe(new_lt21(yvy192, yvy195, db), new_asAs(new_esEs29(yvy192, yvy195, db), new_ltEs19(yvy193, yvy196, dc)))), da, db, dc) new_lt5(yvy1531, yvy1541, app(app(ty_@2, edh), eea)) -> new_lt19(yvy1531, yvy1541, edh, eea) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt22(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_ltEs19(yvy193, yvy196, app(app(ty_Either, fd), ff)) -> new_ltEs17(yvy193, yvy196, fd, ff) new_lt6(yvy1530, yvy1540, app(app(app(ty_@3, eed), eee), eef)) -> new_lt13(yvy1530, yvy1540, eed, eee, eef) new_gt7(yvy40, yvy30, bf) -> new_esEs41(new_compare5(yvy40, yvy30, bf)) new_esEs7(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs4(yvy402, yvy302, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs22(yvy402, yvy302, dfd, dfe, dff) new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs8(yvy400, yvy300, app(app(ty_Either, egb), egc)) -> new_esEs27(yvy400, yvy300, egb, egc) new_ltEs5(yvy1532, yvy1542, app(ty_Maybe, ecc)) -> new_ltEs13(yvy1532, yvy1542, ecc) new_ltEs14(GT, EQ) -> False new_ltEs22(yvy160, yvy161, ty_Float) -> new_ltEs11(yvy160, yvy161) new_gt4(yvy40, yvy30, cc) -> new_esEs41(new_compare17(yvy40, yvy30, cc)) new_ltEs20(yvy167, yvy168, ty_Double) -> new_ltEs16(yvy167, yvy168) new_compare30(LT, GT) -> LT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_Either, chc), chd), cge) -> new_esEs27(yvy4000, yvy3000, chc, chd) new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(app(app(ty_@3, gc), gd), ge)) -> new_lt13(yvy192, yvy195, gc, gd, ge) new_esEs28(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bag, bah) -> new_asAs(new_esEs32(yvy4000, yvy3000, bag), new_esEs31(yvy4001, yvy3001, bah)) new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, ty_Float) -> new_ltEs11(yvy1532, yvy1542) new_ltEs19(yvy193, yvy196, app(ty_Ratio, ef)) -> new_ltEs10(yvy193, yvy196, ef) new_compare15(yvy278, yvy279, yvy280, yvy281, True, yvy283, bde, bdf) -> new_compare16(yvy278, yvy279, yvy280, yvy281, True, bde, bdf) new_esEs29(yvy192, yvy195, ty_Bool) -> new_esEs16(yvy192, yvy195) new_esEs32(yvy4000, yvy3000, app(ty_Maybe, bdc)) -> new_esEs23(yvy4000, yvy3000, bdc) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_Either, fee), fef), fdf) -> new_ltEs17(yvy1530, yvy1540, fee, fef) new_ltEs12(yvy153, yvy154, bdg) -> new_fsEs(new_compare0(yvy153, yvy154, bdg)) new_esEs33(yvy4000, yvy3000, app(app(ty_Either, fdb), fdc)) -> new_esEs27(yvy4000, yvy3000, fdb, fdc) new_esEs18(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt15(yvy40, yvy50) new_ltEs23(yvy205, yvy207, app(app(ty_Either, cda), cdb)) -> new_ltEs17(yvy205, yvy207, cda, cdb) new_lt23(yvy204, yvy206, ty_Char) -> new_lt16(yvy204, yvy206) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cbh)) -> new_esEs19(yvy4000, yvy3000, cbh) new_esEs10(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_esEs40(yvy4000, yvy3000, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs22(yvy4000, yvy3000, deb, dec, ded) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Double, cge) -> new_esEs26(yvy4000, yvy3000) new_esEs36(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs23(yvy205, yvy207, ty_Double) -> new_ltEs16(yvy205, yvy207) new_esEs29(yvy192, yvy195, app(ty_Maybe, gf)) -> new_esEs23(yvy192, yvy195, gf) new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_ltEs7(False, True) -> True new_esEs30(yvy191, yvy194, ty_Ordering) -> new_esEs24(yvy191, yvy194) new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) new_ltEs21(yvy1531, yvy1541, app(app(ty_Either, beh), bfa)) -> new_ltEs17(yvy1531, yvy1541, beh, bfa) new_esEs13(yvy1531, yvy1541, ty_Int) -> new_esEs17(yvy1531, yvy1541) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_esEs5(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs7(True, False) -> False new_compare30(EQ, GT) -> LT new_ltEs19(yvy193, yvy196, ty_Integer) -> new_ltEs9(yvy193, yvy196) new_compare19(yvy241, yvy242, False, cab, cac) -> GT new_ltEs19(yvy193, yvy196, ty_Float) -> new_ltEs11(yvy193, yvy196) new_esEs6(yvy400, yvy300, app(ty_Maybe, caf)) -> new_esEs23(yvy400, yvy300, caf) new_compare12(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ceg, ceh, cfa) -> LT new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_lt24(yvy40, yvy50, ty_Float) -> new_lt11(yvy40, yvy50) new_ltEs7(False, False) -> True new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs11(yvy400, yvy300, app(app(ty_Either, fbh), fca)) -> new_esEs27(yvy400, yvy300, fbh, fca) new_lt20(yvy191, yvy194, app(ty_[], de)) -> new_lt12(yvy191, yvy194, de) new_esEs29(yvy192, yvy195, ty_@0) -> new_esEs15(yvy192, yvy195) new_ltEs21(yvy1531, yvy1541, app(ty_Ratio, beb)) -> new_ltEs10(yvy1531, yvy1541, beb) new_esEs30(yvy191, yvy194, app(app(app(ty_@3, df), dg), dh)) -> new_esEs22(yvy191, yvy194, df, dg, dh) new_gt(yvy81, yvy76, ty_Int) -> new_gt3(yvy81, yvy76) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Maybe, fed), fdf) -> new_ltEs13(yvy1530, yvy1540, fed) new_esEs37(yvy204, yvy206, app(app(ty_@2, cee), cef)) -> new_esEs28(yvy204, yvy206, cee, cef) new_compare32(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Integer) -> new_ltEs9(yvy1532, yvy1542) new_esEs30(yvy191, yvy194, ty_@0) -> new_esEs15(yvy191, yvy194) new_lt23(yvy204, yvy206, app(ty_Maybe, ceb)) -> new_lt14(yvy204, yvy206, ceb) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_esEs14(yvy1530, yvy1540, app(app(ty_@2, efb), efc)) -> new_esEs28(yvy1530, yvy1540, efb, efc) new_lt5(yvy1531, yvy1541, app(ty_[], eda)) -> new_lt12(yvy1531, yvy1541, eda) new_esEs37(yvy204, yvy206, app(ty_Ratio, cde)) -> new_esEs19(yvy204, yvy206, cde) new_ltEs24(yvy153, yvy154, app(app(ty_@2, bdh), bea)) -> new_ltEs18(yvy153, yvy154, bdh, bea) new_lt22(yvy1530, yvy1540, app(app(app(ty_@3, bff), bfg), bfh)) -> new_lt13(yvy1530, yvy1540, bff, bfg, bfh) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_[], cgd), cge) -> new_esEs21(yvy4000, yvy3000, cgd) new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs14(GT, LT) -> False new_esEs7(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) new_compare30(GT, LT) -> GT new_ltEs9(yvy153, yvy154) -> new_fsEs(new_compare14(yvy153, yvy154)) new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_compare30(EQ, LT) -> GT new_compare7(Right(yvy400), Right(yvy300), cd, ce) -> new_compare26(yvy400, yvy300, new_esEs9(yvy400, yvy300, ce), cd, ce) new_lt19(yvy40, yvy30, cf, cg) -> new_esEs12(new_compare8(yvy40, yvy30, cf, cg)) new_esEs7(yvy400, yvy300, app(ty_Ratio, cgc)) -> new_esEs19(yvy400, yvy300, cgc) new_ltEs21(yvy1531, yvy1541, app(ty_Maybe, beg)) -> new_ltEs13(yvy1531, yvy1541, beg) new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs40(yvy4000, yvy3000, app(ty_Ratio, dfb)) -> new_esEs19(yvy4000, yvy3000, dfb) new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, ty_Char) -> new_esEs25(yvy191, yvy194) new_ltEs24(yvy153, yvy154, ty_Int) -> new_ltEs8(yvy153, yvy154) new_sr0(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Int, cge) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs21(yvy1531, yvy1541, ty_Float) -> new_ltEs11(yvy1531, yvy1541) new_esEs5(yvy401, yvy301, app(app(ty_@2, dha), dhb)) -> new_esEs28(yvy401, yvy301, dha, dhb) new_esEs9(yvy400, yvy300, app(app(ty_@2, ehb), ehc)) -> new_esEs28(yvy400, yvy300, ehb, ehc) new_ltEs22(yvy160, yvy161, app(app(ty_@2, bhh), caa)) -> new_ltEs18(yvy160, yvy161, bhh, caa) new_ltEs20(yvy167, yvy168, ty_Char) -> new_ltEs15(yvy167, yvy168) new_lt21(yvy192, yvy195, ty_Integer) -> new_lt10(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Float, cge) -> new_esEs20(yvy4000, yvy3000) new_gt1(yvy40, yvy30, bg) -> new_esEs41(new_compare0(yvy40, yvy30, bg)) new_asAs(True, yvy229) -> yvy229 new_esEs37(yvy204, yvy206, app(ty_[], cdf)) -> new_esEs21(yvy204, yvy206, cdf) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_@2, feg), feh), fdf) -> new_ltEs18(yvy1530, yvy1540, feg, feh) new_lt20(yvy191, yvy194, app(ty_Ratio, dd)) -> new_lt4(yvy191, yvy194, dd) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Ratio, chf), cge) -> new_esEs19(yvy4000, yvy3000, chf) new_ltEs21(yvy1531, yvy1541, ty_Integer) -> new_ltEs9(yvy1531, yvy1541) new_ltEs22(yvy160, yvy161, ty_Ordering) -> new_ltEs14(yvy160, yvy161) new_ltEs23(yvy205, yvy207, ty_Bool) -> new_ltEs7(yvy205, yvy207) new_esEs36(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, app(ty_[], bcc)) -> new_esEs21(yvy4000, yvy3000, bcc) new_gt11(yvy40, yvy30) -> new_esEs41(new_compare30(yvy40, yvy30)) new_compare0([], [], bg) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_Either, fhc), fhd)) -> new_ltEs17(yvy1530, yvy1540, fhc, fhd) new_sr(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) new_esEs7(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Double, fdf) -> new_ltEs16(yvy1530, yvy1540) new_primMulNat0(Zero, Zero) -> Zero new_ltEs22(yvy160, yvy161, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs4(yvy160, yvy161, bhb, bhc, bhd) new_esEs8(yvy400, yvy300, app(ty_Maybe, egd)) -> new_esEs23(yvy400, yvy300, egd) new_esEs27(Left(yvy4000), Right(yvy3000), chg, cge) -> False new_esEs27(Right(yvy4000), Left(yvy3000), chg, cge) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Char, cge) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, app(ty_Ratio, ddh)) -> new_esEs19(yvy4001, yvy3001, ddh) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, yvy270, ceg, ceh, cfa) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ceg, ceh, cfa) new_ltEs21(yvy1531, yvy1541, ty_Ordering) -> new_ltEs14(yvy1531, yvy1541) new_ltEs19(yvy193, yvy196, app(ty_Maybe, fc)) -> new_ltEs13(yvy193, yvy196, fc) new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_Ratio, ga)) -> new_lt4(yvy192, yvy195, ga) new_esEs30(yvy191, yvy194, ty_Float) -> new_esEs20(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare6(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) new_primCompAux0(yvy132, EQ) -> yvy132 new_esEs27(Left(yvy4000), Left(yvy3000), ty_Ordering, cge) -> new_esEs24(yvy4000, yvy3000) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, ceg, ceh, cfa) -> GT new_compare7(Right(yvy400), Left(yvy300), cd, ce) -> GT new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_gt(yvy81, yvy76, app(app(ty_@2, gah), gba)) -> new_gt5(yvy81, yvy76, gah, gba) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs4(yvy402, yvy302, app(app(ty_@2, dfg), dfh)) -> new_esEs28(yvy402, yvy302, dfg, dfh) new_esEs29(yvy192, yvy195, ty_Float) -> new_esEs20(yvy192, yvy195) new_lt16(yvy40, yvy30) -> new_esEs12(new_compare12(yvy40, yvy30)) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_ltEs24(yvy153, yvy154, app(app(ty_Either, ffa), fdf)) -> new_ltEs17(yvy153, yvy154, ffa, fdf) new_ltEs21(yvy1531, yvy1541, app(app(ty_@2, bfb), bfc)) -> new_ltEs18(yvy1531, yvy1541, bfb, bfc) new_esEs29(yvy192, yvy195, ty_Char) -> new_esEs25(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(ty_[], bfe)) -> new_esEs21(yvy1530, yvy1540, bfe) new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Bool) -> new_ltEs7(yvy1532, yvy1542) new_ltEs18(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bdh, bea) -> new_pePe(new_lt22(yvy1530, yvy1540, bdh), new_asAs(new_esEs36(yvy1530, yvy1540, bdh), new_ltEs21(yvy1531, yvy1541, bea))) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, fea), feb), fec), fdf) -> new_ltEs4(yvy1530, yvy1540, fea, feb, fec) new_esEs9(yvy400, yvy300, app(ty_Maybe, ehf)) -> new_esEs23(yvy400, yvy300, ehf) new_ltEs5(yvy1532, yvy1542, ty_Double) -> new_ltEs16(yvy1532, yvy1542) new_lt21(yvy192, yvy195, app(app(ty_@2, ha), hb)) -> new_lt19(yvy192, yvy195, ha, hb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(yvy193, yvy196, app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs4(yvy193, yvy196, eh, fa, fb) new_lt24(yvy40, yvy50, ty_Double) -> new_lt17(yvy40, yvy50) new_compare26(yvy167, yvy168, False, hc, hd) -> new_compare13(yvy167, yvy168, new_ltEs20(yvy167, yvy168, hd), hc, hd) new_esEs6(yvy400, yvy300, app(app(ty_@2, bag), bah)) -> new_esEs28(yvy400, yvy300, bag, bah) new_esEs31(yvy4001, yvy3001, app(ty_[], bba)) -> new_esEs21(yvy4001, yvy3001, bba) new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_not(False) -> True new_esEs29(yvy192, yvy195, app(app(ty_Either, gg), gh)) -> new_esEs27(yvy192, yvy195, gg, gh) new_lt22(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs8(yvy400, yvy300, app(ty_Ratio, ege)) -> new_esEs19(yvy400, yvy300, ege) new_ltEs24(yvy153, yvy154, ty_Integer) -> new_ltEs9(yvy153, yvy154) new_esEs5(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare32(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy153, yvy154, ty_Bool) -> new_ltEs7(yvy153, yvy154) new_esEs30(yvy191, yvy194, app(app(ty_Either, eb), ec)) -> new_esEs27(yvy191, yvy194, eb, ec) new_compare30(EQ, EQ) -> EQ new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), bh, ca, cb) -> new_compare27(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, bh), new_asAs(new_esEs5(yvy401, yvy301, ca), new_esEs4(yvy402, yvy302, cb))), bh, ca, cb) new_esEs41(LT) -> False new_lt18(yvy40, yvy30, cd, ce) -> new_esEs12(new_compare7(yvy40, yvy30, cd, ce)) new_lt5(yvy1531, yvy1541, ty_Double) -> new_lt17(yvy1531, yvy1541) new_esEs39(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare30(LT, EQ) -> LT new_ltEs21(yvy1531, yvy1541, ty_Int) -> new_ltEs8(yvy1531, yvy1541) new_lt22(yvy1530, yvy1540, app(app(ty_@2, bgd), bge)) -> new_lt19(yvy1530, yvy1540, bgd, bge) new_esEs9(yvy400, yvy300, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs22(yvy400, yvy300, egg, egh, eha) new_ltEs19(yvy193, yvy196, app(app(ty_@2, fg), fh)) -> new_ltEs18(yvy193, yvy196, fg, fh) new_esEs27(Left(yvy4000), Left(yvy3000), ty_@0, cge) -> new_esEs15(yvy4000, yvy3000) new_ltEs22(yvy160, yvy161, ty_@0) -> new_ltEs6(yvy160, yvy161) new_ltEs5(yvy1532, yvy1542, app(app(app(ty_@3, ebh), eca), ecb)) -> new_ltEs4(yvy1532, yvy1542, ebh, eca, ecb) new_esEs8(yvy400, yvy300, app(app(ty_@2, efh), ega)) -> new_esEs28(yvy400, yvy300, efh, ega) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(yvy191, yvy194, ty_Double) -> new_lt17(yvy191, yvy194) new_ltEs14(LT, EQ) -> True new_lt24(yvy40, yvy50, ty_Integer) -> new_lt10(yvy40, yvy50) new_ltEs22(yvy160, yvy161, app(ty_Maybe, bhe)) -> new_ltEs13(yvy160, yvy161, bhe) new_esEs6(yvy400, yvy300, app(ty_Ratio, dhh)) -> new_esEs19(yvy400, yvy300, dhh) new_esEs40(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs21(yvy1531, yvy1541, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs4(yvy1531, yvy1541, bed, bee, bef) new_esEs11(yvy400, yvy300, app(ty_[], fbb)) -> new_esEs21(yvy400, yvy300, fbb) new_ltEs6(yvy153, yvy154) -> new_fsEs(new_compare11(yvy153, yvy154)) new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Int) -> new_ltEs8(yvy1532, yvy1542) new_esEs25(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_ltEs21(yvy1531, yvy1541, ty_Bool) -> new_ltEs7(yvy1531, yvy1541) new_lt24(yvy40, yvy50, app(app(ty_@2, cf), cg)) -> new_lt19(yvy40, yvy50, cf, cg) new_ltEs5(yvy1532, yvy1542, app(app(ty_@2, ecf), ecg)) -> new_ltEs18(yvy1532, yvy1542, ecf, ecg) new_compare15(yvy278, yvy279, yvy280, yvy281, False, yvy283, bde, bdf) -> new_compare16(yvy278, yvy279, yvy280, yvy281, yvy283, bde, bdf) new_esEs10(yvy401, yvy301, app(ty_[], ehh)) -> new_esEs21(yvy401, yvy301, ehh) new_gt(yvy81, yvy76, ty_Double) -> new_gt2(yvy81, yvy76) new_compare32(yvy400, yvy300, app(app(ty_@2, eba), ebb)) -> new_compare8(yvy400, yvy300, eba, ebb) new_ltEs20(yvy167, yvy168, ty_Int) -> new_ltEs8(yvy167, yvy168) new_esEs4(yvy402, yvy302, ty_Double) -> new_esEs26(yvy402, yvy302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy153, yvy154, ty_Char) -> new_ltEs15(yvy153, yvy154) new_ltEs24(yvy153, yvy154, app(ty_Maybe, fgd)) -> new_ltEs13(yvy153, yvy154, fgd) new_lt23(yvy204, yvy206, app(app(ty_@2, cee), cef)) -> new_lt19(yvy204, yvy206, cee, cef) new_ltEs24(yvy153, yvy154, ty_@0) -> new_ltEs6(yvy153, yvy154) new_primEqNat0(Zero, Zero) -> True new_lt21(yvy192, yvy195, ty_Double) -> new_lt17(yvy192, yvy195) new_compare17(Nothing, Just(yvy300), cc) -> LT new_esEs33(yvy4000, yvy3000, app(ty_[], fcd)) -> new_esEs21(yvy4000, yvy3000, fcd) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(ty_[], chh)) -> new_esEs21(yvy4000, yvy3000, chh) new_ltEs23(yvy205, yvy207, app(ty_Maybe, cch)) -> new_ltEs13(yvy205, yvy207, cch) new_ltEs17(Right(yvy1530), Right(yvy1540), ffa, app(ty_Maybe, ffg)) -> new_ltEs13(yvy1530, yvy1540, ffg) new_asAs(False, yvy229) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Bool, cge) -> new_esEs16(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_@0) -> new_ltEs6(yvy205, yvy207) new_lt24(yvy40, yvy50, app(ty_Ratio, bf)) -> new_lt4(yvy40, yvy50, bf) new_ltEs19(yvy193, yvy196, ty_Int) -> new_ltEs8(yvy193, yvy196) new_gt13(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) new_esEs5(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_lt6(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_compare16(yvy278, yvy279, yvy280, yvy281, False, bde, bdf) -> GT new_ltEs20(yvy167, yvy168, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs4(yvy167, yvy168, hg, hh, baa) new_ltEs23(yvy205, yvy207, ty_Ordering) -> new_ltEs14(yvy205, yvy207) new_compare32(yvy400, yvy300, app(ty_Ratio, eaa)) -> new_compare5(yvy400, yvy300, eaa) new_esEs7(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs7(yvy400, yvy300, app(app(ty_@2, cff), cfg)) -> new_esEs28(yvy400, yvy300, cff, cfg) new_ltEs22(yvy160, yvy161, ty_Bool) -> new_ltEs7(yvy160, yvy161) The set Q consists of the following terms: new_esEs8(x0, x1, ty_Ordering) new_gt(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(x0, x1, ty_Integer) new_fsEs(x0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare32(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Double) new_compare11(@0, @0) new_esEs36(x0, x1, app(ty_[], x2)) new_compare17(Nothing, Nothing, x0) new_compare15(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt21(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), ty_Integer, x2) new_gt8(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs27(Left(x0), Left(x1), ty_Bool, x2) new_compare7(Left(x0), Left(x1), x2, x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, x2, x3, True, x4, x5) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs14(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs33(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs37(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt11(x0, x1) new_esEs10(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_esEs5(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Char) new_esEs40(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Nothing, x1) new_esEs13(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Float) new_compare17(Just(x0), Nothing, x1) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Double) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(False, False) new_esEs27(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs13(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_compare28(x0, x1, x2, x3, False, x4, x5) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs27(Left(x0), Left(x1), ty_@0, x2) new_esEs23(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Float) new_ltEs7(False, True) new_esEs5(x0, x1, ty_@0) new_ltEs7(True, False) new_gt(x0, x1, ty_Char) new_gt10(x0, x1) new_gt(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat0(Succ(x0), Zero) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs23(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Float) new_ltEs9(x0, x1) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt4(x0, x1, x2) new_esEs32(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux0(x0, GT) new_esEs31(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_lt24(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs12(GT) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Integer) new_compare19(x0, x1, False, x2, x3) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_@0) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Bool) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_compare32(x0, x1, ty_Integer) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Int) new_lt7(x0, x1) new_esEs33(x0, x1, ty_Double) new_compare210(x0, x1, False, x2) new_esEs38(x0, x1, ty_Double) new_gt(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Integer) new_lt5(x0, x1, ty_@0) new_compare30(LT, GT) new_compare30(GT, LT) new_gt(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_lt24(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(Integer(x0), Integer(x1)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Ordering) new_compare13(x0, x1, True, x2, x3) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_lt6(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs32(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_compare32(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_@0) new_esEs24(LT, GT) new_esEs24(GT, LT) new_compare26(x0, x1, False, x2, x3) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(:(x0, x1), :(x2, x3), x4) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, True, x2) new_esEs9(x0, x1, ty_Ordering) new_esEs27(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs27(Right(x0), Right(x1), x2, ty_Int) new_esEs40(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Int) new_gt7(x0, x1, x2) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_compare30(LT, LT) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Int) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_lt4(x0, x1, x2) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs27(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(Left(x0), Right(x1), x2, x3) new_esEs27(Right(x0), Left(x1), x2, x3) new_esEs20(Float(x0, x1), Float(x2, x3)) new_primPlusNat0(Zero, Zero) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_esEs13(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_not(True) new_esEs32(x0, x1, ty_Integer) new_esEs27(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs25(Char(x0), Char(x1)) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs30(x0, x1, ty_@0) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Char) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_gt13(x0, x1) new_ltEs13(Nothing, Nothing, x0) new_esEs11(x0, x1, ty_@0) new_lt22(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, False, x4, x5) new_ltEs6(x0, x1) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Ordering) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs8(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Char) new_ltEs8(x0, x1) new_ltEs5(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Int) new_lt5(x0, x1, ty_Char) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_sr(x0, x1) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(@2(x0, x1), @2(x2, x3), x4, x5) new_lt22(x0, x1, ty_Char) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_gt0(x0, x1, x2, x3) new_compare26(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare0([], :(x0, x1), x2) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs13(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs15(x0, x1) new_esEs27(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_lt22(x0, x1, ty_Float) new_not(False) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_ltEs24(x0, x1, ty_Ordering) new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs40(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Char) new_esEs12(LT) new_esEs24(GT, GT) new_esEs32(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_esEs40(x0, x1, ty_Bool) new_esEs27(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_esEs33(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Bool) new_gt3(x0, x1) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1) new_lt15(x0, x1) new_esEs4(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_lt5(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_compare29(True, True) new_lt23(x0, x1, ty_Char) new_lt24(x0, x1, app(ty_[], x2)) new_esEs41(LT) new_lt12(x0, x1, x2) new_lt14(x0, x1, x2) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs11(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_lt21(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_primCompAux0(x0, EQ) new_esEs27(Right(x0), Right(x1), x2, ty_Integer) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), Zero) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Double) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Int) new_ltEs10(x0, x1, x2) new_esEs33(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Int) new_compare17(Just(x0), Just(x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs33(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, False, x2, x3) new_compare32(x0, x1, ty_Ordering) new_gt12(x0, x1) new_primCmpNat0(Zero, Succ(x0)) new_ltEs14(LT, LT) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs24(EQ, EQ) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs24(x0, x1, ty_@0) new_esEs21(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Float) new_lt5(x0, x1, ty_Ordering) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, ty_Double) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Integer) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_gt(x0, x1, ty_Bool) new_gt5(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(True, True) new_gt(x0, x1, ty_@0) new_gt1(x0, x1, x2) new_esEs8(x0, x1, ty_@0) new_esEs27(Left(x0), Left(x1), ty_Char, x2) new_lt17(x0, x1) new_esEs27(Right(x0), Right(x1), x2, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, x2, x3, True, x4, x5, x6) new_gt(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_compare30(EQ, EQ) new_esEs37(x0, x1, ty_Double) new_esEs41(GT) new_esEs8(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_esEs27(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs23(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(@0, @0) new_esEs6(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Float) new_compare17(Nothing, Just(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_gt(x0, x1, ty_Integer) new_compare32(x0, x1, app(ty_Ratio, x2)) new_compare29(True, False) new_compare29(False, True) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs13(x0, x1, ty_Char) new_pePe(True, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(False, False) new_esEs30(x0, x1, ty_Double) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs40(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt21(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, ty_Char) new_esEs16(False, False) new_lt22(x0, x1, ty_Double) new_ltEs13(Nothing, Just(x0), x1) new_esEs36(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2) new_compare32(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs27(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs21([], :(x0, x1), x2) new_esEs7(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Float) new_esEs21([], [], x0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_lt24(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_[], x2)) new_pePe(False, x0) new_primMulNat0(Zero, Zero) new_asAs(False, x0) new_primPlusNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Bool) new_esEs24(LT, LT) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Double) new_esEs13(x0, x1, ty_Ordering) new_gt11(x0, x1) new_lt16(x0, x1) new_esEs13(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs36(x0, x1, ty_Ordering) new_gt9(x0, x1) new_compare25(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs5(x0, x1, ty_Float) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Int) new_compare12(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Bool) new_lt18(x0, x1, x2, x3) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs27(Right(x0), Right(x1), x2, ty_Double) new_ltEs21(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_lt20(x0, x1, ty_Float) new_esEs18(Integer(x0), Integer(x1)) new_lt24(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_compare7(Right(x0), Right(x1), x2, x3) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt24(x0, x1, ty_Double) new_lt24(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_compare19(x0, x1, True, x2, x3) new_lt24(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_compare30(GT, GT) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs37(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs16(x0, x1) new_ltEs11(x0, x1) new_esEs17(x0, x1) new_esEs14(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs39(x0, x1, ty_Float) new_compare32(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_asAs(True, x0) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(:(x0, x1), [], x2) new_esEs4(x0, x1, ty_Ordering) new_esEs12(EQ) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs12(x0, x1, x2) new_esEs41(EQ) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_gt2(x0, x1) new_ltEs24(x0, x1, ty_Bool) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_lt9(x0, x1) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCompAux0(x0, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0([], [], x0) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(True, True) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Double) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Int) new_esEs16(False, True) new_esEs16(True, False) new_lt13(x0, x1, x2, x3, x4) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs29(x0, x1, ty_Float) new_compare6(x0, x1) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(Right(x0), Right(x1), x2, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_lt19(x0, x1, x2, x3) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Int) new_gt6(x0, x1, x2, x3, x4) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_esEs23(Nothing, Nothing, x0) new_primEqNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_esEs27(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs29(x0, x1, app(ty_Maybe, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (37) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, bd, be) -> new_addToFM_C2(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, bd), bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, h, ba) -> new_addToFM_C1(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 *new_addToFM_C1(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, True, bb, bc) -> new_addToFM_C(yvy109, yvy110, yvy111, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C2(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, h, ba) -> new_addToFM_C(yvy79, yvy81, yvy82, h, ba) The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (38) YES ---------------------------------------- (39) Obligation: Q DP problem: The TRS P consists of the following rules: new_splitGT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, h, ba) -> new_splitGT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, h), h, ba) new_splitGT1(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bd, be) -> new_splitGT(yvy48, yvy50, bd, be) new_splitGT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitGT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, bb), bb, bc) new_splitGT2(yvy15, yvy16, yvy17, yvy18, Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, True, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) new_splitGT(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) The TRS R consists of the following rules: new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt23(yvy204, yvy206, ty_Integer) -> new_lt10(yvy204, yvy206) new_esEs14(yvy1530, yvy1540, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs22(yvy1530, yvy1540, eed, eee, eef) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, yvy294) -> True new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_Integer) -> new_ltEs9(yvy205, yvy207) new_ltEs24(yvy153, yvy154, ty_Ordering) -> new_ltEs14(yvy153, yvy154) new_lt14(yvy40, yvy30, ce) -> new_esEs12(new_compare17(yvy40, yvy30, ce)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare110(yvy234, yvy235, False, cae) -> GT new_esEs9(yvy400, yvy300, app(app(ty_Either, ehd), ehe)) -> new_esEs27(yvy400, yvy300, ehd, ehe) new_esEs5(yvy401, yvy301, app(ty_Ratio, dhf)) -> new_esEs19(yvy401, yvy301, dhf) new_compare26(yvy167, yvy168, True, hc, hd) -> EQ new_esEs11(yvy400, yvy300, app(ty_Ratio, fcc)) -> new_esEs19(yvy400, yvy300, fcc) new_ltEs19(yvy193, yvy196, app(ty_[], eg)) -> new_ltEs12(yvy193, yvy196, eg) new_gt15(yvy40, yvy30, ty_@0) -> new_gt12(yvy40, yvy30) new_esEs38(yvy4002, yvy3002, app(ty_Maybe, dce)) -> new_esEs23(yvy4002, yvy3002, dce) new_esEs30(yvy191, yvy194, app(ty_[], de)) -> new_esEs21(yvy191, yvy194, de) new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs24(yvy153, yvy154, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_ltEs4(yvy153, yvy154, ebc, ebd, ebe) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_ltEs4(yvy1530, yvy1540, fgf, fgg, fgh) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Bool, feh) -> new_ltEs7(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, app(ty_Ratio, bfd)) -> new_esEs19(yvy1530, yvy1540, bfd) new_esEs6(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, app(app(ty_@2, ed), ee)) -> new_esEs28(yvy191, yvy194, ed, ee) new_esEs39(yvy4001, yvy3001, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(yvy4001, yvy3001, dch, dda, ddb) new_esEs37(yvy204, yvy206, ty_@0) -> new_esEs15(yvy204, yvy206) new_lt6(yvy1530, yvy1540, app(ty_Maybe, eeg)) -> new_lt14(yvy1530, yvy1540, eeg) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs26(yvy4000, yvy3000) new_lt23(yvy204, yvy206, ty_Double) -> new_lt17(yvy204, yvy206) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, ty_Integer) -> new_esEs18(yvy191, yvy194) new_lt5(yvy1531, yvy1541, ty_Float) -> new_lt11(yvy1531, yvy1541) new_primCompAux0(yvy132, LT) -> LT new_ltEs20(yvy167, yvy168, app(app(ty_@2, bae), baf)) -> new_ltEs18(yvy167, yvy168, bae, baf) new_esEs38(yvy4002, yvy3002, app(app(ty_@2, dca), dcb)) -> new_esEs28(yvy4002, yvy3002, dca, dcb) new_gt15(yvy40, yvy30, ty_Float) -> new_gt13(yvy40, yvy30) new_not(True) -> False new_lt5(yvy1531, yvy1541, ty_Bool) -> new_lt8(yvy1531, yvy1541) new_lt23(yvy204, yvy206, ty_Int) -> new_lt9(yvy204, yvy206) new_ltEs23(yvy205, yvy207, ty_Char) -> new_ltEs15(yvy205, yvy207) new_lt26(yvy20, yvy15, ty_Float) -> new_lt11(yvy20, yvy15) new_esEs32(yvy4000, yvy3000, app(app(ty_Either, bda), bdb)) -> new_esEs27(yvy4000, yvy3000, bda, bdb) new_lt6(yvy1530, yvy1540, app(ty_Ratio, eeb)) -> new_lt4(yvy1530, yvy1540, eeb) new_lt22(yvy1530, yvy1540, app(ty_Ratio, bfd)) -> new_lt4(yvy1530, yvy1540, bfd) new_ltEs17(Left(yvy1530), Right(yvy1540), fgc, feh) -> True new_esEs7(yvy400, yvy300, app(ty_[], cfb)) -> new_esEs21(yvy400, yvy300, cfb) new_compare30(LT, LT) -> EQ new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs22(yvy4000, yvy3000, daa, dab, dac) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs24(yvy153, yvy154, ty_Double) -> new_ltEs16(yvy153, yvy154) new_compare16(yvy278, yvy279, yvy280, yvy281, True, bde, bdf) -> LT new_ltEs20(yvy167, yvy168, ty_Bool) -> new_ltEs7(yvy167, yvy168) new_lt20(yvy191, yvy194, app(app(app(ty_@3, df), dg), dh)) -> new_lt13(yvy191, yvy194, df, dg, dh) new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs14(EQ, EQ) -> True new_compare17(Nothing, Nothing, ce) -> EQ new_esEs33(yvy4000, yvy3000, app(ty_Maybe, fef)) -> new_esEs23(yvy4000, yvy3000, fef) new_compare30(GT, GT) -> EQ new_lt11(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_esEs13(yvy1531, yvy1541, app(ty_[], eda)) -> new_esEs21(yvy1531, yvy1541, eda) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(app(ty_Either, fhb), fhc)) -> new_ltEs17(yvy1530, yvy1540, fhb, fhc) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(ty_Maybe, dah)) -> new_esEs23(yvy4000, yvy3000, dah) new_lt6(yvy1530, yvy1540, app(app(ty_@2, efb), efc)) -> new_lt19(yvy1530, yvy1540, efb, efc) new_lt22(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs40(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt2(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) new_ltEs23(yvy205, yvy207, ty_Float) -> new_ltEs11(yvy205, yvy207) new_esEs37(yvy204, yvy206, ty_Bool) -> new_esEs16(yvy204, yvy206) new_compare17(Just(yvy400), Nothing, ce) -> GT new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_esEs40(yvy4000, yvy3000, app(app(ty_@2, dee), def)) -> new_esEs28(yvy4000, yvy3000, dee, def) new_esEs5(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, ty_Int) -> new_ltEs8(yvy160, yvy161) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, gaa), gab), gac)) -> new_ltEs4(yvy1530, yvy1540, gaa, gab, gac) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs22(yvy400, yvy300, efe, eff, efg) new_lt5(yvy1531, yvy1541, ty_@0) -> new_lt7(yvy1531, yvy1541) new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dbb, dbc, dbd) -> new_asAs(new_esEs40(yvy4000, yvy3000, dbb), new_asAs(new_esEs39(yvy4001, yvy3001, dbc), new_esEs38(yvy4002, yvy3002, dbd))) new_esEs20(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs37(yvy204, yvy206, ty_Double) -> new_esEs26(yvy204, yvy206) new_ltEs20(yvy167, yvy168, app(ty_Maybe, bab)) -> new_ltEs13(yvy167, yvy168, bab) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Int, feh) -> new_ltEs8(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy167, yvy168, ty_Float) -> new_ltEs11(yvy167, yvy168) new_esEs4(yvy402, yvy302, app(ty_[], dfc)) -> new_esEs21(yvy402, yvy302, dfc) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare32(yvy400, yvy300, ty_@0) -> new_compare11(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, app(app(ty_Either, ecd), ece)) -> new_ltEs17(yvy1532, yvy1542, ecd, ece) new_lt5(yvy1531, yvy1541, ty_Ordering) -> new_lt15(yvy1531, yvy1541) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Integer, cge) -> new_esEs18(yvy4000, yvy3000) new_lt26(yvy20, yvy15, ty_@0) -> new_lt7(yvy20, yvy15) new_esEs19(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), dhh) -> new_asAs(new_esEs35(yvy4000, yvy3000, dhh), new_esEs34(yvy4001, yvy3001, dhh)) new_ltEs23(yvy205, yvy207, app(app(ty_@2, cdc), cdd)) -> new_ltEs18(yvy205, yvy207, cdc, cdd) new_esEs6(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs15(yvy4000, yvy3000) new_gt6(yvy40, yvy30, cb, cc, cd) -> new_esEs41(new_compare31(yvy40, yvy30, cb, cc, cd)) new_esEs14(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Ordering) -> new_esEs24(yvy192, yvy195) new_lt23(yvy204, yvy206, app(app(app(ty_@3, cdg), cdh), cea)) -> new_lt13(yvy204, yvy206, cdg, cdh, cea) new_esEs39(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_ltEs19(yvy193, yvy196, ty_Double) -> new_ltEs16(yvy193, yvy196) new_esEs38(yvy4002, yvy3002, app(ty_[], dbe)) -> new_esEs21(yvy4002, yvy3002, dbe) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_[], ffb), feh) -> new_ltEs12(yvy1530, yvy1540, ffb) new_esEs30(yvy191, yvy194, app(ty_Maybe, ea)) -> new_esEs23(yvy191, yvy194, ea) new_ltEs19(yvy193, yvy196, ty_Ordering) -> new_ltEs14(yvy193, yvy196) new_ltEs20(yvy167, yvy168, ty_@0) -> new_ltEs6(yvy167, yvy168) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs22(yvy4000, yvy3000, cah, cba, cbb) new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_ltEs20(yvy167, yvy168, app(ty_Ratio, he)) -> new_ltEs10(yvy167, yvy168, he) new_ltEs14(EQ, GT) -> True new_esEs40(yvy4000, yvy3000, app(ty_Maybe, dfa)) -> new_esEs23(yvy4000, yvy3000, dfa) new_lt26(yvy20, yvy15, ty_Double) -> new_lt17(yvy20, yvy15) new_ltEs20(yvy167, yvy168, app(app(ty_Either, bac), bad)) -> new_ltEs17(yvy167, yvy168, bac, bad) new_ltEs5(yvy1532, yvy1542, ty_Ordering) -> new_ltEs14(yvy1532, yvy1542) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs10(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs4(yvy402, yvy302, ty_@0) -> new_esEs15(yvy402, yvy302) new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_esEs21(:(yvy4000, yvy4001), [], dhg) -> False new_esEs21([], :(yvy3000, yvy3001), dhg) -> False new_ltEs14(LT, GT) -> True new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_ltEs21(yvy1531, yvy1541, ty_Char) -> new_ltEs15(yvy1531, yvy1541) new_ltEs14(GT, GT) -> True new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs10(yvy401, yvy301, app(app(ty_Either, faf), fag)) -> new_esEs27(yvy401, yvy301, faf, fag) new_esEs33(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_compare11(@0, @0) -> EQ new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_ltEs5(yvy1532, yvy1542, app(ty_Ratio, ebf)) -> new_ltEs10(yvy1532, yvy1542, ebf) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, app(ty_Maybe, dhe)) -> new_esEs23(yvy401, yvy301, dhe) new_ltEs5(yvy1532, yvy1542, ty_@0) -> new_ltEs6(yvy1532, yvy1542) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_[], fhh)) -> new_ltEs12(yvy1530, yvy1540, fhh) new_lt23(yvy204, yvy206, ty_Float) -> new_lt11(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_Ratio, bgh)) -> new_ltEs10(yvy160, yvy161, bgh) new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs22(yvy4001, yvy3001, bbb, bbc, bbd) new_ltEs22(yvy160, yvy161, app(app(ty_Either, bhf), bhg)) -> new_ltEs17(yvy160, yvy161, bhf, bhg) new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_ltEs22(yvy160, yvy161, ty_Double) -> new_ltEs16(yvy160, yvy161) new_lt22(yvy1530, yvy1540, app(ty_Maybe, bga)) -> new_lt14(yvy1530, yvy1540, bga) new_esEs14(yvy1530, yvy1540, app(ty_Ratio, eeb)) -> new_esEs19(yvy1530, yvy1540, eeb) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare29(False, False) -> EQ new_esEs38(yvy4002, yvy3002, app(ty_Ratio, dcf)) -> new_esEs19(yvy4002, yvy3002, dcf) new_lt26(yvy20, yvy15, ty_Bool) -> new_lt8(yvy20, yvy15) new_esEs33(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt6(yvy1530, yvy1540, app(ty_[], eec)) -> new_lt12(yvy1530, yvy1540, eec) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, app(ty_Maybe, cgb)) -> new_esEs23(yvy400, yvy300, cgb) new_ltEs21(yvy1531, yvy1541, ty_Double) -> new_ltEs16(yvy1531, yvy1541) new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs12(LT) -> True new_esEs13(yvy1531, yvy1541, app(app(ty_@2, edh), eea)) -> new_esEs28(yvy1531, yvy1541, edh, eea) new_esEs6(yvy400, yvy300, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs22(yvy400, yvy300, dbb, dbc, dbd) new_gt0(yvy40, yvy30, bg, bh) -> new_esEs41(new_compare7(yvy40, yvy30, bg, bh)) new_esEs7(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_[], gb)) -> new_lt12(yvy192, yvy195, gb) new_lt26(yvy20, yvy15, app(app(ty_Either, fdb), fdc)) -> new_lt18(yvy20, yvy15, fdb, fdc) new_ltEs20(yvy167, yvy168, ty_Integer) -> new_ltEs9(yvy167, yvy168) new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, app(ty_[], dea)) -> new_esEs21(yvy4000, yvy3000, dea) new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) new_esEs4(yvy402, yvy302, ty_Bool) -> new_esEs16(yvy402, yvy302) new_ltEs19(yvy193, yvy196, ty_Char) -> new_ltEs15(yvy193, yvy196) new_lt23(yvy204, yvy206, ty_Ordering) -> new_lt15(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs22(yvy401, yvy301, dgf, dgg, dgh) new_gt15(yvy40, yvy30, ty_Int) -> new_gt3(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs4(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), ebc, ebd, ebe) -> new_pePe(new_lt6(yvy1530, yvy1540, ebc), new_asAs(new_esEs14(yvy1530, yvy1540, ebc), new_pePe(new_lt5(yvy1531, yvy1541, ebd), new_asAs(new_esEs13(yvy1531, yvy1541, ebd), new_ltEs5(yvy1532, yvy1542, ebe))))) new_lt20(yvy191, yvy194, ty_Integer) -> new_lt10(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(app(ty_Either, daf), dag)) -> new_esEs27(yvy4000, yvy3000, daf, dag) new_esEs37(yvy204, yvy206, ty_Int) -> new_esEs17(yvy204, yvy206) new_lt5(yvy1531, yvy1541, ty_Integer) -> new_lt10(yvy1531, yvy1541) new_ltEs10(yvy153, yvy154, cad) -> new_fsEs(new_compare5(yvy153, yvy154, cad)) new_esEs29(yvy192, yvy195, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs22(yvy192, yvy195, gc, gd, ge) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(app(ty_@2, fhd), fhe)) -> new_ltEs18(yvy1530, yvy1540, fhd, fhe) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare29(True, False) -> GT new_esEs40(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_gt12(yvy40, yvy30) -> new_esEs41(new_compare11(yvy40, yvy30)) new_esEs14(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_lt26(yvy20, yvy15, app(ty_[], fce)) -> new_lt12(yvy20, yvy15, fce) new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_esEs31(yvy4001, yvy3001, app(ty_Maybe, bca)) -> new_esEs23(yvy4001, yvy3001, bca) new_esEs4(yvy402, yvy302, app(ty_Maybe, dgc)) -> new_esEs23(yvy402, yvy302, dgc) new_compare7(Left(yvy400), Right(yvy300), bg, bh) -> LT new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs12(GT) -> False new_esEs14(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs12(EQ) -> False new_esEs13(yvy1531, yvy1541, app(app(ty_Either, edf), edg)) -> new_esEs27(yvy1531, yvy1541, edf, edg) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, yvy270, ceg, ceh, cfa) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, yvy270, ceg, ceh, cfa) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Ratio, fhg)) -> new_ltEs10(yvy1530, yvy1540, fhg) new_lt23(yvy204, yvy206, app(app(ty_Either, cec), ced)) -> new_lt18(yvy204, yvy206, cec, ced) new_esEs39(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(ty_Ratio, fgd)) -> new_ltEs10(yvy1530, yvy1540, fgd) new_lt21(yvy192, yvy195, ty_Ordering) -> new_lt15(yvy192, yvy195) new_lt20(yvy191, yvy194, ty_Float) -> new_lt11(yvy191, yvy194) new_esEs38(yvy4002, yvy3002, app(app(ty_Either, dcc), dcd)) -> new_esEs27(yvy4002, yvy3002, dcc, dcd) new_esEs10(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_esEs37(yvy204, yvy206, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs22(yvy204, yvy206, cdg, cdh, cea) new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs32(yvy4000, yvy3000, app(app(ty_@2, bcg), bch)) -> new_esEs28(yvy4000, yvy3000, bcg, bch) new_esEs5(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_esEs36(yvy1530, yvy1540, app(app(ty_@2, bgd), bge)) -> new_esEs28(yvy1530, yvy1540, bgd, bge) new_lt5(yvy1531, yvy1541, app(app(app(ty_@3, edb), edc), edd)) -> new_lt13(yvy1531, yvy1541, edb, edc, edd) new_esEs10(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare0([], :(yvy300, yvy301), bf) -> LT new_gt15(yvy40, yvy30, app(ty_Maybe, ce)) -> new_gt4(yvy40, yvy30, ce) new_compare32(yvy400, yvy300, ty_Bool) -> new_compare29(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Bool) -> new_esEs16(yvy1531, yvy1541) new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, app(ty_Ratio, dd)) -> new_esEs19(yvy191, yvy194, dd) new_ltEs16(yvy153, yvy154) -> new_fsEs(new_compare18(yvy153, yvy154)) new_esEs5(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs13(yvy1531, yvy1541, app(ty_Ratio, ech)) -> new_esEs19(yvy1531, yvy1541, ech) new_lt20(yvy191, yvy194, ty_Bool) -> new_lt8(yvy191, yvy194) new_ltEs23(yvy205, yvy207, app(ty_[], ccd)) -> new_ltEs12(yvy205, yvy207, ccd) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Integer, feh) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_esEs14(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_Either, cbe), cbf)) -> new_esEs27(yvy4000, yvy3000, cbe, cbf) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_esEs40(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs38(yvy4002, yvy3002, ty_Bool) -> new_esEs16(yvy4002, yvy3002) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(ty_Ratio, dba)) -> new_esEs19(yvy4000, yvy3000, dba) new_esEs30(yvy191, yvy194, ty_Bool) -> new_esEs16(yvy191, yvy194) new_esEs5(yvy401, yvy301, app(ty_[], dge)) -> new_esEs21(yvy401, yvy301, dge) new_compare8(@2(yvy400, yvy401), @2(yvy300, yvy301), cf, cg) -> new_compare28(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cf), new_esEs10(yvy401, yvy301, cg)), cf, cg) new_gt15(yvy40, yvy30, ty_Char) -> new_gt9(yvy40, yvy30) new_lt21(yvy192, yvy195, ty_@0) -> new_lt7(yvy192, yvy195) new_esEs33(yvy4000, yvy3000, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs22(yvy4000, yvy3000, fdg, fdh, fea) new_esEs21([], [], dhg) -> True new_esEs10(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs39(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, app(app(ty_Either, chg), cge)) -> new_esEs27(yvy400, yvy300, chg, cge) new_ltEs13(Nothing, Nothing, fhf) -> True new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Nothing, fhf) -> False new_esEs29(yvy192, yvy195, ty_Int) -> new_esEs17(yvy192, yvy195) new_lt22(yvy1530, yvy1540, app(ty_[], bfe)) -> new_lt12(yvy1530, yvy1540, bfe) new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_ltEs23(yvy205, yvy207, app(ty_Ratio, ccc)) -> new_ltEs10(yvy205, yvy207, ccc) new_esEs10(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs4(yvy402, yvy302, ty_Float) -> new_esEs20(yvy402, yvy302) new_lt12(yvy40, yvy30, bf) -> new_esEs12(new_compare0(yvy40, yvy30, bf)) new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs22(yvy4000, yvy3000, bcd, bce, bcf) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare25(yvy160, yvy161, False, bgf, bgg) -> new_compare19(yvy160, yvy161, new_ltEs22(yvy160, yvy161, bgf), bgf, bgg) new_compare30(GT, EQ) -> GT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_@2, cha), chb), cge) -> new_esEs28(yvy4000, yvy3000, cha, chb) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Float, feh) -> new_ltEs11(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, app(ty_Ratio, ga)) -> new_esEs19(yvy192, yvy195, ga) new_esEs4(yvy402, yvy302, ty_Ordering) -> new_esEs24(yvy402, yvy302) new_lt21(yvy192, yvy195, app(ty_Maybe, gf)) -> new_lt14(yvy192, yvy195, gf) new_ltEs24(yvy153, yvy154, app(ty_Ratio, cad)) -> new_ltEs10(yvy153, yvy154, cad) new_esEs40(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy192, yvy195, ty_Int) -> new_lt9(yvy192, yvy195) new_compare29(False, True) -> LT new_esEs11(yvy400, yvy300, app(ty_Maybe, fcb)) -> new_esEs23(yvy400, yvy300, fcb) new_compare210(yvy153, yvy154, False, gba) -> new_compare110(yvy153, yvy154, new_ltEs24(yvy153, yvy154, gba), gba) new_esEs15(@0, @0) -> True new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt20(yvy191, yvy194, app(ty_Maybe, ea)) -> new_lt14(yvy191, yvy194, ea) new_esEs10(yvy401, yvy301, app(ty_Maybe, fah)) -> new_esEs23(yvy401, yvy301, fah) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt6(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, app(ty_[], ebg)) -> new_ltEs12(yvy1532, yvy1542, ebg) new_ltEs7(True, True) -> True new_gt9(yvy40, yvy30) -> new_esEs41(new_compare12(yvy40, yvy30)) new_esEs6(yvy400, yvy300, app(ty_[], dhg)) -> new_esEs21(yvy400, yvy300, dhg) new_lt20(yvy191, yvy194, ty_@0) -> new_lt7(yvy191, yvy194) new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs11(yvy400, yvy300, app(app(ty_@2, fbf), fbg)) -> new_esEs28(yvy400, yvy300, fbf, fbg) new_lt22(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs16(True, True) -> True new_esEs7(yvy400, yvy300, app(app(ty_Either, cfh), cga)) -> new_esEs27(yvy400, yvy300, cfh, cga) new_esEs10(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs14(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs41(GT) -> True new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Ratio, ffa), feh) -> new_ltEs10(yvy1530, yvy1540, ffa) new_compare28(yvy204, yvy205, yvy206, yvy207, False, cca, ccb) -> new_compare15(yvy204, yvy205, yvy206, yvy207, new_lt23(yvy204, yvy206, cca), new_asAs(new_esEs37(yvy204, yvy206, cca), new_ltEs23(yvy205, yvy207, ccb)), cca, ccb) new_esEs14(yvy1530, yvy1540, app(app(ty_Either, eeh), efa)) -> new_esEs27(yvy1530, yvy1540, eeh, efa) new_esEs38(yvy4002, yvy3002, ty_@0) -> new_esEs15(yvy4002, yvy3002) new_esEs37(yvy204, yvy206, app(app(ty_Either, cec), ced)) -> new_esEs27(yvy204, yvy206, cec, ced) new_lt20(yvy191, yvy194, ty_Ordering) -> new_lt15(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(app(ty_@2, dad), dae)) -> new_esEs28(yvy4000, yvy3000, dad, dae) new_lt21(yvy192, yvy195, ty_Float) -> new_lt11(yvy192, yvy195) new_lt21(yvy192, yvy195, ty_Bool) -> new_lt8(yvy192, yvy195) new_esEs10(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs38(yvy4002, yvy3002, ty_Char) -> new_esEs25(yvy4002, yvy3002) new_esEs10(yvy401, yvy301, app(app(ty_@2, fad), fae)) -> new_esEs28(yvy401, yvy301, fad, fae) new_compare13(yvy250, yvy251, True, gbb, gbc) -> LT new_esEs33(yvy4000, yvy3000, app(app(ty_@2, feb), fec)) -> new_esEs28(yvy4000, yvy3000, feb, fec) new_gt15(yvy40, yvy30, ty_Bool) -> new_gt8(yvy40, yvy30) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs25(yvy4000, yvy3000) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs24(yvy153, yvy154, app(ty_[], bdg)) -> new_ltEs12(yvy153, yvy154, bdg) new_esEs33(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs4(yvy402, yvy302, ty_Integer) -> new_esEs18(yvy402, yvy302) new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs13(yvy1531, yvy1541, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs22(yvy1531, yvy1541, edb, edc, edd) new_esEs29(yvy192, yvy195, ty_Double) -> new_esEs26(yvy192, yvy195) new_esEs13(yvy1531, yvy1541, ty_@0) -> new_esEs15(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_lt22(yvy1530, yvy1540, app(app(ty_Either, bgb), bgc)) -> new_lt18(yvy1530, yvy1540, bgb, bgc) new_compare0(:(yvy400, yvy401), [], bf) -> GT new_compare32(yvy400, yvy300, app(ty_[], eab)) -> new_compare0(yvy400, yvy300, eab) new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_esEs31(yvy4001, yvy3001, app(ty_Ratio, bcb)) -> new_esEs19(yvy4001, yvy3001, bcb) new_esEs39(yvy4001, yvy3001, app(app(ty_Either, dde), ddf)) -> new_esEs27(yvy4001, yvy3001, dde, ddf) new_compare32(yvy400, yvy300, ty_Float) -> new_compare9(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy1530, yvy1540, app(ty_Maybe, eeg)) -> new_esEs23(yvy1530, yvy1540, eeg) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(ty_[], fge)) -> new_ltEs12(yvy1530, yvy1540, fge) new_esEs14(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Double) -> new_esEs26(yvy191, yvy194) new_esEs37(yvy204, yvy206, ty_Ordering) -> new_esEs24(yvy204, yvy206) new_gt15(yvy40, yvy30, ty_Integer) -> new_gt10(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Float) -> new_esEs20(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(app(ty_Either, edf), edg)) -> new_lt18(yvy1531, yvy1541, edf, edg) new_lt20(yvy191, yvy194, ty_Int) -> new_lt9(yvy191, yvy194) new_esEs37(yvy204, yvy206, app(ty_Maybe, ceb)) -> new_esEs23(yvy204, yvy206, ceb) new_esEs36(yvy1530, yvy1540, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs22(yvy1530, yvy1540, bff, bfg, bfh) new_esEs4(yvy402, yvy302, ty_Char) -> new_esEs25(yvy402, yvy302) new_esEs26(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs29(yvy192, yvy195, app(app(ty_@2, ha), hb)) -> new_esEs28(yvy192, yvy195, ha, hb) new_lt20(yvy191, yvy194, app(app(ty_Either, eb), ec)) -> new_lt18(yvy191, yvy194, eb, ec) new_lt5(yvy1531, yvy1541, ty_Int) -> new_lt9(yvy1531, yvy1541) new_esEs36(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Int) -> new_esEs17(yvy191, yvy194) new_lt8(yvy40, yvy30) -> new_esEs12(new_compare29(yvy40, yvy30)) new_compare13(yvy250, yvy251, False, gbb, gbc) -> GT new_esEs11(yvy400, yvy300, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs22(yvy400, yvy300, fbc, fbd, fbe) new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs38(yvy4002, yvy3002, ty_Integer) -> new_esEs18(yvy4002, yvy3002) new_esEs13(yvy1531, yvy1541, ty_Char) -> new_esEs25(yvy1531, yvy1541) new_esEs10(yvy401, yvy301, app(ty_Ratio, fba)) -> new_esEs19(yvy401, yvy301, fba) new_esEs36(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, app(ty_Ratio, feg)) -> new_esEs19(yvy4000, yvy3000, feg) new_lt10(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) new_lt23(yvy204, yvy206, ty_Bool) -> new_lt8(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Integer) -> new_esEs18(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(ty_[], efd)) -> new_esEs21(yvy400, yvy300, efd) new_primCompAux1(yvy400, yvy300, yvy114, bf) -> new_primCompAux0(yvy114, new_compare32(yvy400, yvy300, bf)) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs37(yvy204, yvy206, ty_Integer) -> new_esEs18(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(ty_Either, dhc), dhd)) -> new_esEs27(yvy401, yvy301, dhc, dhd) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Char, feh) -> new_ltEs15(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_@2, gag), gah)) -> new_ltEs18(yvy1530, yvy1540, gag, gah) new_lt22(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_lt20(yvy191, yvy194, ty_Char) -> new_lt16(yvy191, yvy194) new_esEs40(yvy4000, yvy3000, app(app(ty_Either, deg), deh)) -> new_esEs27(yvy4000, yvy3000, deg, deh) new_esEs16(False, False) -> True new_ltEs21(yvy1531, yvy1541, app(ty_[], bec)) -> new_ltEs12(yvy1531, yvy1541, bec) new_esEs38(yvy4002, yvy3002, ty_Float) -> new_esEs20(yvy4002, yvy3002) new_esEs4(yvy402, yvy302, app(app(ty_Either, dga), dgb)) -> new_esEs27(yvy402, yvy302, dga, dgb) new_esEs21(:(yvy4000, yvy4001), :(yvy3000, yvy3001), dhg) -> new_asAs(new_esEs33(yvy4000, yvy3000, dhg), new_esEs21(yvy4001, yvy3001, dhg)) new_compare32(yvy400, yvy300, app(app(app(ty_@3, eac), ead), eae)) -> new_compare31(yvy400, yvy300, eac, ead, eae) new_esEs14(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, True, da, db, dc) -> EQ new_gt15(yvy40, yvy30, app(app(app(ty_@3, cb), cc), cd)) -> new_gt6(yvy40, yvy30, cb, cc, cd) new_ltEs17(Right(yvy1530), Left(yvy1540), fgc, feh) -> False new_esEs36(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, ty_Float) -> new_esEs20(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_[], bha)) -> new_ltEs12(yvy160, yvy161, bha) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Ordering, feh) -> new_ltEs14(yvy1530, yvy1540) new_lt21(yvy192, yvy195, app(app(ty_Either, gg), gh)) -> new_lt18(yvy192, yvy195, gg, gh) new_lt6(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_compare110(yvy234, yvy235, True, cae) -> LT new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_esEs31(yvy4001, yvy3001, app(app(ty_@2, bbe), bbf)) -> new_esEs28(yvy4001, yvy3001, bbe, bbf) new_ltEs14(LT, LT) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_@0, feh) -> new_ltEs6(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(ty_Maybe, ede)) -> new_esEs23(yvy1531, yvy1541, ede) new_esEs36(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_ltEs13(Nothing, Just(yvy1540), fhf) -> True new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt11(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Ordering) -> new_esEs24(yvy1531, yvy1541) new_lt15(yvy40, yvy30) -> new_esEs12(new_compare30(yvy40, yvy30)) new_esEs36(yvy1530, yvy1540, app(ty_Maybe, bga)) -> new_esEs23(yvy1530, yvy1540, bga) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs9(yvy400, yvy300, app(ty_[], egf)) -> new_esEs21(yvy400, yvy300, egf) new_lt23(yvy204, yvy206, ty_@0) -> new_lt7(yvy204, yvy206) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) new_lt6(yvy1530, yvy1540, app(app(ty_Either, eeh), efa)) -> new_lt18(yvy1530, yvy1540, eeh, efa) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs21(yvy1531, yvy1541, ty_@0) -> new_ltEs6(yvy1531, yvy1541) new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt4(yvy40, yvy30, ca) -> new_esEs12(new_compare5(yvy40, yvy30, ca)) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, app(ty_[], dcg)) -> new_esEs21(yvy4001, yvy3001, dcg) new_ltEs5(yvy1532, yvy1542, ty_Char) -> new_ltEs15(yvy1532, yvy1542) new_lt22(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Maybe, gad)) -> new_ltEs13(yvy1530, yvy1540, gad) new_ltEs11(yvy153, yvy154) -> new_fsEs(new_compare9(yvy153, yvy154)) new_ltEs19(yvy193, yvy196, ty_Bool) -> new_ltEs7(yvy193, yvy196) new_lt22(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_esEs7(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs37(yvy204, yvy206, ty_Char) -> new_esEs25(yvy204, yvy206) new_esEs36(yvy1530, yvy1540, app(app(ty_Either, bgb), bgc)) -> new_esEs27(yvy1530, yvy1540, bgb, bgc) new_esEs32(yvy4000, yvy3000, app(ty_Ratio, bdd)) -> new_esEs19(yvy4000, yvy3000, bdd) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_gt15(yvy40, yvy30, app(app(ty_Either, bg), bh)) -> new_gt0(yvy40, yvy30, bg, bh) new_compare29(True, True) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bf) -> new_primCompAux1(yvy400, yvy300, new_compare0(yvy401, yvy301, bf), bf) new_esEs38(yvy4002, yvy3002, ty_Double) -> new_esEs26(yvy4002, yvy3002) new_esEs5(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_ltEs8(yvy153, yvy154) -> new_fsEs(new_compare6(yvy153, yvy154)) new_esEs36(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs38(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) new_esEs14(yvy1530, yvy1540, app(ty_[], eec)) -> new_esEs21(yvy1530, yvy1540, eec) new_esEs40(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs33(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_compare28(yvy204, yvy205, yvy206, yvy207, True, cca, ccb) -> EQ new_primCompAux0(yvy132, GT) -> GT new_lt6(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt26(yvy20, yvy15, ty_Char) -> new_lt16(yvy20, yvy15) new_esEs9(yvy400, yvy300, app(ty_Ratio, ehg)) -> new_esEs19(yvy400, yvy300, ehg) new_esEs29(yvy192, yvy195, app(ty_[], gb)) -> new_esEs21(yvy192, yvy195, gb) new_lt23(yvy204, yvy206, app(ty_Ratio, cde)) -> new_lt4(yvy204, yvy206, cde) new_lt6(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_compare19(yvy241, yvy242, True, cab, cac) -> LT new_esEs23(Nothing, Just(yvy3000), caf) -> False new_esEs23(Just(yvy4000), Nothing, caf) -> False new_lt7(yvy40, yvy30) -> new_esEs12(new_compare11(yvy40, yvy30)) new_lt6(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_gt10(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) new_esEs13(yvy1531, yvy1541, ty_Double) -> new_esEs26(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, ty_Char) -> new_lt16(yvy1531, yvy1541) new_esEs24(GT, GT) -> True new_lt5(yvy1531, yvy1541, app(ty_Ratio, ech)) -> new_lt4(yvy1531, yvy1541, ech) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_Maybe, ede)) -> new_lt14(yvy1531, yvy1541, ede) new_ltEs20(yvy167, yvy168, ty_Ordering) -> new_ltEs14(yvy167, yvy168) new_compare17(Just(yvy400), Just(yvy300), ce) -> new_compare210(yvy400, yvy300, new_esEs7(yvy400, yvy300, ce), ce) new_gt3(yvy40, yvy30) -> new_esEs41(new_compare6(yvy40, yvy30)) new_ltEs24(yvy153, yvy154, ty_Float) -> new_ltEs11(yvy153, yvy154) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(yvy167, yvy168, app(ty_[], hf)) -> new_ltEs12(yvy167, yvy168, hf) new_esEs10(yvy401, yvy301, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs22(yvy401, yvy301, faa, fab, fac) new_lt6(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt8(yvy40, yvy30) -> new_esEs41(new_compare29(yvy40, yvy30)) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs19(yvy193, yvy196, ty_@0) -> new_ltEs6(yvy193, yvy196) new_esEs23(Nothing, Nothing, caf) -> True new_compare32(yvy400, yvy300, ty_Ordering) -> new_compare30(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_@2, ddc), ddd)) -> new_esEs28(yvy4001, yvy3001, ddc, ddd) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Integer) -> new_esEs18(yvy192, yvy195) new_compare7(Left(yvy400), Left(yvy300), bg, bh) -> new_compare25(yvy400, yvy300, new_esEs8(yvy400, yvy300, bg), bg, bh) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cbc), cbd)) -> new_esEs28(yvy4000, yvy3000, cbc, cbd) new_esEs7(yvy400, yvy300, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_esEs22(yvy400, yvy300, cfc, cfd, cfe) new_esEs33(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Char) -> new_lt16(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, cgf), cgg), cgh), cge) -> new_esEs22(yvy4000, yvy3000, cgf, cgg, cgh) new_compare32(yvy400, yvy300, ty_Char) -> new_compare12(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, app(app(ty_Either, bbg), bbh)) -> new_esEs27(yvy4001, yvy3001, bbg, bbh) new_gt15(yvy40, yvy30, app(app(ty_@2, cf), cg)) -> new_gt5(yvy40, yvy30, cf, cg) new_esEs4(yvy402, yvy302, app(ty_Ratio, dgd)) -> new_esEs19(yvy402, yvy302, dgd) new_gt5(yvy40, yvy30, cf, cg) -> new_esEs41(new_compare8(yvy40, yvy30, cf, cg)) new_fsEs(yvy295) -> new_not(new_esEs24(yvy295, GT)) new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy4002, yvy3002, ty_Ordering) -> new_esEs24(yvy4002, yvy3002) new_lt6(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs14(EQ, LT) -> False new_compare32(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare32(yvy400, yvy300, app(ty_Maybe, eaf)) -> new_compare17(yvy400, yvy300, eaf) new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs22(yvy160, yvy161, ty_Char) -> new_ltEs15(yvy160, yvy161) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cbg)) -> new_esEs23(yvy4000, yvy3000, cbg) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Maybe, che), cge) -> new_esEs23(yvy4000, yvy3000, che) new_ltEs22(yvy160, yvy161, ty_Integer) -> new_ltEs9(yvy160, yvy161) new_ltEs23(yvy205, yvy207, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs4(yvy205, yvy207, cce, ccf, ccg) new_lt23(yvy204, yvy206, app(ty_[], cdf)) -> new_lt12(yvy204, yvy206, cdf) new_esEs24(LT, LT) -> True new_esEs33(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_lt20(yvy191, yvy194, app(app(ty_@2, ed), ee)) -> new_lt19(yvy191, yvy194, ed, ee) new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_esEs38(yvy4002, yvy3002, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs22(yvy4002, yvy3002, dbf, dbg, dbh) new_ltEs15(yvy153, yvy154) -> new_fsEs(new_compare12(yvy153, yvy154)) new_pePe(False, yvy294) -> yvy294 new_ltEs23(yvy205, yvy207, ty_Int) -> new_ltEs8(yvy205, yvy207) new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_compare25(yvy160, yvy161, True, bgf, bgg) -> EQ new_compare210(yvy153, yvy154, True, gba) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_compare32(yvy400, yvy300, app(app(ty_Either, eag), eah)) -> new_compare7(yvy400, yvy300, eag, eah) new_esEs39(yvy4001, yvy3001, app(ty_Maybe, ddg)) -> new_esEs23(yvy4001, yvy3001, ddg) new_lt22(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt13(yvy40, yvy30, cb, cc, cd) -> new_esEs12(new_compare31(yvy40, yvy30, cb, cc, cd)) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_[], cag)) -> new_esEs21(yvy4000, yvy3000, cag) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, da, db, dc) -> new_compare10(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, new_lt20(yvy191, yvy194, da), new_asAs(new_esEs30(yvy191, yvy194, da), new_pePe(new_lt21(yvy192, yvy195, db), new_asAs(new_esEs29(yvy192, yvy195, db), new_ltEs19(yvy193, yvy196, dc)))), da, db, dc) new_lt5(yvy1531, yvy1541, app(app(ty_@2, edh), eea)) -> new_lt19(yvy1531, yvy1541, edh, eea) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt22(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_ltEs19(yvy193, yvy196, app(app(ty_Either, fd), ff)) -> new_ltEs17(yvy193, yvy196, fd, ff) new_lt6(yvy1530, yvy1540, app(app(app(ty_@3, eed), eee), eef)) -> new_lt13(yvy1530, yvy1540, eed, eee, eef) new_gt7(yvy40, yvy30, ca) -> new_esEs41(new_compare5(yvy40, yvy30, ca)) new_esEs7(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs4(yvy402, yvy302, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs22(yvy402, yvy302, dfd, dfe, dff) new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs8(yvy400, yvy300, app(app(ty_Either, egb), egc)) -> new_esEs27(yvy400, yvy300, egb, egc) new_ltEs5(yvy1532, yvy1542, app(ty_Maybe, ecc)) -> new_ltEs13(yvy1532, yvy1542, ecc) new_ltEs14(GT, EQ) -> False new_ltEs22(yvy160, yvy161, ty_Float) -> new_ltEs11(yvy160, yvy161) new_gt4(yvy40, yvy30, ce) -> new_esEs41(new_compare17(yvy40, yvy30, ce)) new_ltEs20(yvy167, yvy168, ty_Double) -> new_ltEs16(yvy167, yvy168) new_compare30(LT, GT) -> LT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_Either, chc), chd), cge) -> new_esEs27(yvy4000, yvy3000, chc, chd) new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(app(app(ty_@3, gc), gd), ge)) -> new_lt13(yvy192, yvy195, gc, gd, ge) new_esEs28(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bag, bah) -> new_asAs(new_esEs32(yvy4000, yvy3000, bag), new_esEs31(yvy4001, yvy3001, bah)) new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, ty_Float) -> new_ltEs11(yvy1532, yvy1542) new_ltEs19(yvy193, yvy196, app(ty_Ratio, ef)) -> new_ltEs10(yvy193, yvy196, ef) new_compare15(yvy278, yvy279, yvy280, yvy281, True, yvy283, bde, bdf) -> new_compare16(yvy278, yvy279, yvy280, yvy281, True, bde, bdf) new_esEs29(yvy192, yvy195, ty_Bool) -> new_esEs16(yvy192, yvy195) new_esEs32(yvy4000, yvy3000, app(ty_Maybe, bdc)) -> new_esEs23(yvy4000, yvy3000, bdc) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_Either, ffg), ffh), feh) -> new_ltEs17(yvy1530, yvy1540, ffg, ffh) new_ltEs12(yvy153, yvy154, bdg) -> new_fsEs(new_compare0(yvy153, yvy154, bdg)) new_esEs33(yvy4000, yvy3000, app(app(ty_Either, fed), fee)) -> new_esEs27(yvy4000, yvy3000, fed, fee) new_esEs18(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_gt15(yvy40, yvy30, app(ty_Ratio, ca)) -> new_gt7(yvy40, yvy30, ca) new_ltEs23(yvy205, yvy207, app(app(ty_Either, cda), cdb)) -> new_ltEs17(yvy205, yvy207, cda, cdb) new_lt23(yvy204, yvy206, ty_Char) -> new_lt16(yvy204, yvy206) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cbh)) -> new_esEs19(yvy4000, yvy3000, cbh) new_esEs10(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_esEs40(yvy4000, yvy3000, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs22(yvy4000, yvy3000, deb, dec, ded) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Double, cge) -> new_esEs26(yvy4000, yvy3000) new_esEs36(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs23(yvy205, yvy207, ty_Double) -> new_ltEs16(yvy205, yvy207) new_esEs29(yvy192, yvy195, app(ty_Maybe, gf)) -> new_esEs23(yvy192, yvy195, gf) new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_ltEs7(False, True) -> True new_esEs30(yvy191, yvy194, ty_Ordering) -> new_esEs24(yvy191, yvy194) new_ltEs21(yvy1531, yvy1541, app(app(ty_Either, beh), bfa)) -> new_ltEs17(yvy1531, yvy1541, beh, bfa) new_esEs13(yvy1531, yvy1541, ty_Int) -> new_esEs17(yvy1531, yvy1541) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_esEs5(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs7(True, False) -> False new_compare30(EQ, GT) -> LT new_ltEs19(yvy193, yvy196, ty_Integer) -> new_ltEs9(yvy193, yvy196) new_compare19(yvy241, yvy242, False, cab, cac) -> GT new_ltEs19(yvy193, yvy196, ty_Float) -> new_ltEs11(yvy193, yvy196) new_esEs6(yvy400, yvy300, app(ty_Maybe, caf)) -> new_esEs23(yvy400, yvy300, caf) new_compare12(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ceg, ceh, cfa) -> LT new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_ltEs7(False, False) -> True new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs11(yvy400, yvy300, app(app(ty_Either, fbh), fca)) -> new_esEs27(yvy400, yvy300, fbh, fca) new_lt20(yvy191, yvy194, app(ty_[], de)) -> new_lt12(yvy191, yvy194, de) new_esEs29(yvy192, yvy195, ty_@0) -> new_esEs15(yvy192, yvy195) new_ltEs21(yvy1531, yvy1541, app(ty_Ratio, beb)) -> new_ltEs10(yvy1531, yvy1541, beb) new_esEs30(yvy191, yvy194, app(app(app(ty_@3, df), dg), dh)) -> new_esEs22(yvy191, yvy194, df, dg, dh) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Maybe, fff), feh) -> new_ltEs13(yvy1530, yvy1540, fff) new_esEs37(yvy204, yvy206, app(app(ty_@2, cee), cef)) -> new_esEs28(yvy204, yvy206, cee, cef) new_compare32(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Integer) -> new_ltEs9(yvy1532, yvy1542) new_esEs30(yvy191, yvy194, ty_@0) -> new_esEs15(yvy191, yvy194) new_lt23(yvy204, yvy206, app(ty_Maybe, ceb)) -> new_lt14(yvy204, yvy206, ceb) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_esEs14(yvy1530, yvy1540, app(app(ty_@2, efb), efc)) -> new_esEs28(yvy1530, yvy1540, efb, efc) new_lt5(yvy1531, yvy1541, app(ty_[], eda)) -> new_lt12(yvy1531, yvy1541, eda) new_esEs37(yvy204, yvy206, app(ty_Ratio, cde)) -> new_esEs19(yvy204, yvy206, cde) new_ltEs24(yvy153, yvy154, app(app(ty_@2, bdh), bea)) -> new_ltEs18(yvy153, yvy154, bdh, bea) new_lt22(yvy1530, yvy1540, app(app(app(ty_@3, bff), bfg), bfh)) -> new_lt13(yvy1530, yvy1540, bff, bfg, bfh) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_[], cgd), cge) -> new_esEs21(yvy4000, yvy3000, cgd) new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs14(GT, LT) -> False new_esEs7(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) new_compare30(GT, LT) -> GT new_ltEs9(yvy153, yvy154) -> new_fsEs(new_compare14(yvy153, yvy154)) new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_compare30(EQ, LT) -> GT new_compare7(Right(yvy400), Right(yvy300), bg, bh) -> new_compare26(yvy400, yvy300, new_esEs9(yvy400, yvy300, bh), bg, bh) new_lt19(yvy40, yvy30, cf, cg) -> new_esEs12(new_compare8(yvy40, yvy30, cf, cg)) new_esEs7(yvy400, yvy300, app(ty_Ratio, cgc)) -> new_esEs19(yvy400, yvy300, cgc) new_ltEs21(yvy1531, yvy1541, app(ty_Maybe, beg)) -> new_ltEs13(yvy1531, yvy1541, beg) new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs40(yvy4000, yvy3000, app(ty_Ratio, dfb)) -> new_esEs19(yvy4000, yvy3000, dfb) new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, ty_Char) -> new_esEs25(yvy191, yvy194) new_ltEs24(yvy153, yvy154, ty_Int) -> new_ltEs8(yvy153, yvy154) new_sr0(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Int, cge) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs21(yvy1531, yvy1541, ty_Float) -> new_ltEs11(yvy1531, yvy1541) new_esEs5(yvy401, yvy301, app(app(ty_@2, dha), dhb)) -> new_esEs28(yvy401, yvy301, dha, dhb) new_esEs9(yvy400, yvy300, app(app(ty_@2, ehb), ehc)) -> new_esEs28(yvy400, yvy300, ehb, ehc) new_ltEs22(yvy160, yvy161, app(app(ty_@2, bhh), caa)) -> new_ltEs18(yvy160, yvy161, bhh, caa) new_ltEs20(yvy167, yvy168, ty_Char) -> new_ltEs15(yvy167, yvy168) new_lt21(yvy192, yvy195, ty_Integer) -> new_lt10(yvy192, yvy195) new_gt15(yvy40, yvy30, app(ty_[], bf)) -> new_gt1(yvy40, yvy30, bf) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Float, cge) -> new_esEs20(yvy4000, yvy3000) new_gt1(yvy40, yvy30, bf) -> new_esEs41(new_compare0(yvy40, yvy30, bf)) new_asAs(True, yvy229) -> yvy229 new_esEs37(yvy204, yvy206, app(ty_[], cdf)) -> new_esEs21(yvy204, yvy206, cdf) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_@2, fga), fgb), feh) -> new_ltEs18(yvy1530, yvy1540, fga, fgb) new_lt20(yvy191, yvy194, app(ty_Ratio, dd)) -> new_lt4(yvy191, yvy194, dd) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Ratio, chf), cge) -> new_esEs19(yvy4000, yvy3000, chf) new_ltEs21(yvy1531, yvy1541, ty_Integer) -> new_ltEs9(yvy1531, yvy1541) new_ltEs22(yvy160, yvy161, ty_Ordering) -> new_ltEs14(yvy160, yvy161) new_ltEs23(yvy205, yvy207, ty_Bool) -> new_ltEs7(yvy205, yvy207) new_esEs36(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, app(ty_[], bcc)) -> new_esEs21(yvy4000, yvy3000, bcc) new_lt26(yvy20, yvy15, app(app(app(ty_@3, fcf), fcg), fch)) -> new_lt13(yvy20, yvy15, fcf, fcg, fch) new_gt11(yvy40, yvy30) -> new_esEs41(new_compare30(yvy40, yvy30)) new_compare0([], [], bf) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_Either, gae), gaf)) -> new_ltEs17(yvy1530, yvy1540, gae, gaf) new_sr(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) new_esEs7(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Double, feh) -> new_ltEs16(yvy1530, yvy1540) new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt15(yvy20, yvy15) new_primMulNat0(Zero, Zero) -> Zero new_ltEs22(yvy160, yvy161, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs4(yvy160, yvy161, bhb, bhc, bhd) new_esEs8(yvy400, yvy300, app(ty_Maybe, egd)) -> new_esEs23(yvy400, yvy300, egd) new_esEs27(Left(yvy4000), Right(yvy3000), chg, cge) -> False new_esEs27(Right(yvy4000), Left(yvy3000), chg, cge) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Char, cge) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, app(ty_Ratio, ddh)) -> new_esEs19(yvy4001, yvy3001, ddh) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, yvy270, ceg, ceh, cfa) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, ceg, ceh, cfa) new_ltEs21(yvy1531, yvy1541, ty_Ordering) -> new_ltEs14(yvy1531, yvy1541) new_ltEs19(yvy193, yvy196, app(ty_Maybe, fc)) -> new_ltEs13(yvy193, yvy196, fc) new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_Ratio, ga)) -> new_lt4(yvy192, yvy195, ga) new_esEs30(yvy191, yvy194, ty_Float) -> new_esEs20(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), chg, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare6(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) new_primCompAux0(yvy132, EQ) -> yvy132 new_esEs27(Left(yvy4000), Left(yvy3000), ty_Ordering, cge) -> new_esEs24(yvy4000, yvy3000) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, ceg, ceh, cfa) -> GT new_compare7(Right(yvy400), Left(yvy300), bg, bh) -> GT new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs4(yvy402, yvy302, app(app(ty_@2, dfg), dfh)) -> new_esEs28(yvy402, yvy302, dfg, dfh) new_esEs29(yvy192, yvy195, ty_Float) -> new_esEs20(yvy192, yvy195) new_lt16(yvy40, yvy30) -> new_esEs12(new_compare12(yvy40, yvy30)) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_lt26(yvy20, yvy15, app(app(ty_@2, fdd), fde)) -> new_lt19(yvy20, yvy15, fdd, fde) new_ltEs24(yvy153, yvy154, app(app(ty_Either, fgc), feh)) -> new_ltEs17(yvy153, yvy154, fgc, feh) new_ltEs21(yvy1531, yvy1541, app(app(ty_@2, bfb), bfc)) -> new_ltEs18(yvy1531, yvy1541, bfb, bfc) new_esEs29(yvy192, yvy195, ty_Char) -> new_esEs25(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(ty_[], bfe)) -> new_esEs21(yvy1530, yvy1540, bfe) new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Bool) -> new_ltEs7(yvy1532, yvy1542) new_ltEs18(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bdh, bea) -> new_pePe(new_lt22(yvy1530, yvy1540, bdh), new_asAs(new_esEs36(yvy1530, yvy1540, bdh), new_ltEs21(yvy1531, yvy1541, bea))) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, ffc), ffd), ffe), feh) -> new_ltEs4(yvy1530, yvy1540, ffc, ffd, ffe) new_esEs9(yvy400, yvy300, app(ty_Maybe, ehf)) -> new_esEs23(yvy400, yvy300, ehf) new_ltEs5(yvy1532, yvy1542, ty_Double) -> new_ltEs16(yvy1532, yvy1542) new_lt21(yvy192, yvy195, app(app(ty_@2, ha), hb)) -> new_lt19(yvy192, yvy195, ha, hb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(yvy193, yvy196, app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs4(yvy193, yvy196, eh, fa, fb) new_lt26(yvy20, yvy15, app(ty_Ratio, fcd)) -> new_lt4(yvy20, yvy15, fcd) new_compare26(yvy167, yvy168, False, hc, hd) -> new_compare13(yvy167, yvy168, new_ltEs20(yvy167, yvy168, hd), hc, hd) new_lt26(yvy20, yvy15, app(ty_Maybe, fda)) -> new_lt14(yvy20, yvy15, fda) new_esEs6(yvy400, yvy300, app(app(ty_@2, bag), bah)) -> new_esEs28(yvy400, yvy300, bag, bah) new_esEs31(yvy4001, yvy3001, app(ty_[], bba)) -> new_esEs21(yvy4001, yvy3001, bba) new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_not(False) -> True new_esEs29(yvy192, yvy195, app(app(ty_Either, gg), gh)) -> new_esEs27(yvy192, yvy195, gg, gh) new_lt22(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs8(yvy400, yvy300, app(ty_Ratio, ege)) -> new_esEs19(yvy400, yvy300, ege) new_ltEs24(yvy153, yvy154, ty_Integer) -> new_ltEs9(yvy153, yvy154) new_esEs5(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare32(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy153, yvy154, ty_Bool) -> new_ltEs7(yvy153, yvy154) new_esEs30(yvy191, yvy194, app(app(ty_Either, eb), ec)) -> new_esEs27(yvy191, yvy194, eb, ec) new_compare30(EQ, EQ) -> EQ new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), cb, cc, cd) -> new_compare27(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, cb), new_asAs(new_esEs5(yvy401, yvy301, cc), new_esEs4(yvy402, yvy302, cd))), cb, cc, cd) new_esEs41(LT) -> False new_lt18(yvy40, yvy30, bg, bh) -> new_esEs12(new_compare7(yvy40, yvy30, bg, bh)) new_lt5(yvy1531, yvy1541, ty_Double) -> new_lt17(yvy1531, yvy1541) new_esEs39(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare30(LT, EQ) -> LT new_ltEs21(yvy1531, yvy1541, ty_Int) -> new_ltEs8(yvy1531, yvy1541) new_lt22(yvy1530, yvy1540, app(app(ty_@2, bgd), bge)) -> new_lt19(yvy1530, yvy1540, bgd, bge) new_esEs9(yvy400, yvy300, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs22(yvy400, yvy300, egg, egh, eha) new_ltEs19(yvy193, yvy196, app(app(ty_@2, fg), fh)) -> new_ltEs18(yvy193, yvy196, fg, fh) new_esEs27(Left(yvy4000), Left(yvy3000), ty_@0, cge) -> new_esEs15(yvy4000, yvy3000) new_ltEs22(yvy160, yvy161, ty_@0) -> new_ltEs6(yvy160, yvy161) new_ltEs5(yvy1532, yvy1542, app(app(app(ty_@3, ebh), eca), ecb)) -> new_ltEs4(yvy1532, yvy1542, ebh, eca, ecb) new_esEs8(yvy400, yvy300, app(app(ty_@2, efh), ega)) -> new_esEs28(yvy400, yvy300, efh, ega) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(yvy191, yvy194, ty_Double) -> new_lt17(yvy191, yvy194) new_ltEs14(LT, EQ) -> True new_ltEs22(yvy160, yvy161, app(ty_Maybe, bhe)) -> new_ltEs13(yvy160, yvy161, bhe) new_esEs6(yvy400, yvy300, app(ty_Ratio, dhh)) -> new_esEs19(yvy400, yvy300, dhh) new_esEs40(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs21(yvy1531, yvy1541, app(app(app(ty_@3, bed), bee), bef)) -> new_ltEs4(yvy1531, yvy1541, bed, bee, bef) new_esEs11(yvy400, yvy300, app(ty_[], fbb)) -> new_esEs21(yvy400, yvy300, fbb) new_ltEs6(yvy153, yvy154) -> new_fsEs(new_compare11(yvy153, yvy154)) new_gt15(yvy40, yvy30, ty_Double) -> new_gt2(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Int) -> new_ltEs8(yvy1532, yvy1542) new_esEs25(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_ltEs21(yvy1531, yvy1541, ty_Bool) -> new_ltEs7(yvy1531, yvy1541) new_ltEs5(yvy1532, yvy1542, app(app(ty_@2, ecf), ecg)) -> new_ltEs18(yvy1532, yvy1542, ecf, ecg) new_compare15(yvy278, yvy279, yvy280, yvy281, False, yvy283, bde, bdf) -> new_compare16(yvy278, yvy279, yvy280, yvy281, yvy283, bde, bdf) new_esEs10(yvy401, yvy301, app(ty_[], ehh)) -> new_esEs21(yvy401, yvy301, ehh) new_compare32(yvy400, yvy300, app(app(ty_@2, eba), ebb)) -> new_compare8(yvy400, yvy300, eba, ebb) new_ltEs20(yvy167, yvy168, ty_Int) -> new_ltEs8(yvy167, yvy168) new_esEs4(yvy402, yvy302, ty_Double) -> new_esEs26(yvy402, yvy302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy153, yvy154, ty_Char) -> new_ltEs15(yvy153, yvy154) new_ltEs24(yvy153, yvy154, app(ty_Maybe, fhf)) -> new_ltEs13(yvy153, yvy154, fhf) new_lt23(yvy204, yvy206, app(app(ty_@2, cee), cef)) -> new_lt19(yvy204, yvy206, cee, cef) new_ltEs24(yvy153, yvy154, ty_@0) -> new_ltEs6(yvy153, yvy154) new_primEqNat0(Zero, Zero) -> True new_lt26(yvy20, yvy15, ty_Integer) -> new_lt10(yvy20, yvy15) new_lt21(yvy192, yvy195, ty_Double) -> new_lt17(yvy192, yvy195) new_compare17(Nothing, Just(yvy300), ce) -> LT new_esEs33(yvy4000, yvy3000, app(ty_[], fdf)) -> new_esEs21(yvy4000, yvy3000, fdf) new_esEs27(Right(yvy4000), Right(yvy3000), chg, app(ty_[], chh)) -> new_esEs21(yvy4000, yvy3000, chh) new_ltEs23(yvy205, yvy207, app(ty_Maybe, cch)) -> new_ltEs13(yvy205, yvy207, cch) new_ltEs17(Right(yvy1530), Right(yvy1540), fgc, app(ty_Maybe, fha)) -> new_ltEs13(yvy1530, yvy1540, fha) new_asAs(False, yvy229) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Bool, cge) -> new_esEs16(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_@0) -> new_ltEs6(yvy205, yvy207) new_ltEs19(yvy193, yvy196, ty_Int) -> new_ltEs8(yvy193, yvy196) new_gt13(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) new_esEs5(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_lt6(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_compare16(yvy278, yvy279, yvy280, yvy281, False, bde, bdf) -> GT new_ltEs20(yvy167, yvy168, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs4(yvy167, yvy168, hg, hh, baa) new_ltEs23(yvy205, yvy207, ty_Ordering) -> new_ltEs14(yvy205, yvy207) new_compare32(yvy400, yvy300, app(ty_Ratio, eaa)) -> new_compare5(yvy400, yvy300, eaa) new_esEs7(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs7(yvy400, yvy300, app(app(ty_@2, cff), cfg)) -> new_esEs28(yvy400, yvy300, cff, cfg) new_ltEs22(yvy160, yvy161, ty_Bool) -> new_ltEs7(yvy160, yvy161) The set Q consists of the following terms: new_esEs8(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_compare0([], :(x0, x1), x2) new_ltEs24(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(x0, x1, ty_Integer) new_fsEs(x0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare32(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Double) new_compare11(@0, @0) new_esEs36(x0, x1, app(ty_[], x2)) new_compare15(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_lt23(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), ty_Integer, x2) new_gt8(x0, x1) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs27(Left(x0), Left(x1), ty_Bool, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare16(x0, x1, x2, x3, True, x4, x5) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs14(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs33(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs37(x0, x1, ty_Bool) new_esEs23(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs29(x0, x1, app(ty_[], x2)) new_lt11(x0, x1) new_esEs10(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Ordering) new_lt26(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Char) new_esEs40(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_gt15(x0, x1, ty_Int) new_gt15(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Double) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(False, False) new_esEs27(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs13(x0, x1, ty_Bool) new_gt15(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_compare28(x0, x1, x2, x3, False, x4, x5) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs27(Left(x0), Left(x1), ty_@0, x2) new_esEs23(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, ty_Integer) new_esEs23(Just(x0), Just(x1), ty_Float) new_ltEs7(False, True) new_esEs5(x0, x1, ty_@0) new_ltEs7(True, False) new_gt10(x0, x1) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(x0, x1, True, x2, x3) new_esEs6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs27(Left(x0), Left(x1), ty_Int, x2) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_lt4(x0, x1, x2) new_primCmpNat0(Succ(x0), Zero) new_esEs23(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Float) new_ltEs9(x0, x1) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_esEs32(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux0(x0, GT) new_esEs31(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs12(GT) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Integer) new_compare19(x0, x1, False, x2, x3) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare32(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_lt26(x0, x1, ty_Integer) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_lt6(x0, x1, ty_Int) new_lt7(x0, x1) new_esEs33(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs39(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_@0) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare30(LT, GT) new_compare30(GT, LT) new_ltEs24(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare14(Integer(x0), Integer(x1)) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Ordering) new_compare13(x0, x1, True, x2, x3) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_lt14(x0, x1, x2) new_lt6(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs32(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Double) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Ordering) new_compare32(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_@0) new_esEs24(LT, GT) new_esEs24(GT, LT) new_compare26(x0, x1, False, x2, x3) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(:(x0, x1), :(x2, x3), x4) new_lt26(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, False, x2) new_esEs9(x0, x1, ty_Ordering) new_esEs27(Right(x0), Right(x1), x2, ty_Char) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs11(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt12(x0, x1, x2) new_esEs27(Right(x0), Right(x1), x2, ty_Int) new_esEs40(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_compare30(LT, LT) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Float) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primCompAux1(x0, x1, x2, x3) new_esEs10(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt26(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Bool) new_compare17(Just(x0), Nothing, x1) new_esEs36(x0, x1, ty_Int) new_lt6(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs27(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(Left(x0), Right(x1), x2, x3) new_esEs27(Right(x0), Left(x1), x2, x3) new_esEs20(Float(x0, x1), Float(x2, x3)) new_primPlusNat0(Zero, Zero) new_lt26(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1) new_esEs13(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_esEs32(x0, x1, ty_Integer) new_esEs27(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_[], x2)) new_lt26(x0, x1, ty_Double) new_esEs25(Char(x0), Char(x1)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs30(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Bool) new_esEs23(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Char) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_gt13(x0, x1) new_esEs11(x0, x1, ty_@0) new_lt22(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Float) new_gt15(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, False, x4, x5) new_lt26(x0, x1, ty_Bool) new_ltEs6(x0, x1) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Ordering) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs8(x0, x1) new_gt15(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Int) new_lt5(x0, x1, ty_Char) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_sr(x0, x1) new_compare210(x0, x1, True, x2) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_ltEs14(GT, GT) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(@2(x0, x1), @2(x2, x3), x4, x5) new_lt22(x0, x1, ty_Char) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs13(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs15(x0, x1) new_esEs27(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_lt23(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_compare17(Nothing, Nothing, x0) new_lt22(x0, x1, ty_Float) new_not(False) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt26(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_ltEs24(x0, x1, ty_Ordering) new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) new_gt15(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Char) new_esEs12(LT) new_esEs24(GT, GT) new_esEs32(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_gt0(x0, x1, x2, x3) new_esEs40(x0, x1, ty_Bool) new_esEs27(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_esEs33(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Bool) new_gt3(x0, x1) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1) new_lt15(x0, x1) new_esEs4(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_lt5(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_compare29(True, True) new_lt23(x0, x1, ty_Char) new_esEs41(LT) new_gt15(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs11(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_lt21(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_primCompAux0(x0, EQ) new_esEs27(Right(x0), Right(x1), x2, ty_Integer) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), Zero) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, ty_Double) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Int) new_ltEs10(x0, x1, x2) new_esEs33(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, False, x2, x3) new_gt7(x0, x1, x2) new_compare32(x0, x1, ty_Ordering) new_gt12(x0, x1) new_primCmpNat0(Zero, Succ(x0)) new_ltEs14(LT, LT) new_gt15(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt15(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs24(EQ, EQ) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_esEs21(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Float) new_lt5(x0, x1, ty_Ordering) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Double) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, ty_Double) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Integer) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_gt5(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(True, True) new_esEs8(x0, x1, ty_@0) new_esEs27(Left(x0), Left(x1), ty_Char, x2) new_lt17(x0, x1) new_esEs27(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_compare30(EQ, EQ) new_esEs37(x0, x1, ty_Double) new_esEs41(GT) new_esEs8(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_esEs27(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs23(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(@0, @0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), ty_Double) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_ltEs14(LT, GT) new_ltEs14(GT, LT) new_compare32(x0, x1, app(ty_Ratio, x2)) new_compare29(True, False) new_compare29(False, True) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs13(x0, x1, ty_Char) new_compare7(Right(x0), Right(x1), x2, x3) new_pePe(True, x0) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(False, False) new_gt15(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_@0) new_compare0(:(x0, x1), [], x2) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt21(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, ty_Char) new_esEs16(False, False) new_lt22(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2) new_compare32(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt26(x0, x1, app(app(ty_Either, x2), x3)) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs27(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs21([], :(x0, x1), x2) new_esEs7(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs13(Just(x0), Nothing, x1) new_esEs21([], [], x0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_[], x2)) new_pePe(False, x0) new_primMulNat0(Zero, Zero) new_asAs(False, x0) new_primPlusNat0(Zero, Succ(x0)) new_esEs31(x0, x1, ty_Bool) new_esEs24(LT, LT) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(EQ, EQ) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs39(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Double) new_esEs13(x0, x1, ty_Ordering) new_gt11(x0, x1) new_lt16(x0, x1) new_esEs13(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_ltEs13(Nothing, Just(x0), x1) new_esEs6(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt26(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Ordering) new_gt9(x0, x1) new_compare25(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs5(x0, x1, ty_Float) new_lt26(x0, x1, ty_@0) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Int) new_compare12(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_gt6(x0, x1, x2, x3, x4) new_esEs27(Right(x0), Right(x1), x2, ty_Double) new_ltEs21(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_gt15(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_compare17(Just(x0), Just(x1), x2) new_compare7(Left(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_esEs18(Integer(x0), Integer(x1)) new_lt26(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, x2, x3, x4) new_esEs39(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_lt26(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(x0, x1, True, x2, x3) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare0([], [], x0) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_compare30(GT, GT) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs37(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs16(x0, x1) new_ltEs11(x0, x1) new_esEs17(x0, x1) new_esEs14(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs38(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt15(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs39(x0, x1, ty_Float) new_compare32(x0, x1, ty_@0) new_compare17(Nothing, Just(x0), x1) new_esEs34(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_asAs(True, x0) new_esEs4(x0, x1, ty_Ordering) new_esEs12(EQ) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_ltEs12(x0, x1, x2) new_esEs41(EQ) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_gt2(x0, x1) new_ltEs24(x0, x1, ty_Bool) new_lt9(x0, x1) new_primCompAux0(x0, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(True, True) new_esEs33(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Ordering) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Double) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Nothing, Nothing, x0) new_ltEs5(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Int) new_esEs16(False, True) new_esEs16(True, False) new_gt15(x0, x1, ty_Ordering) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs29(x0, x1, ty_Float) new_compare6(x0, x1) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(Right(x0), Right(x1), x2, ty_Ordering) new_gt4(x0, x1, x2) new_esEs30(x0, x1, ty_Ordering) new_lt19(x0, x1, x2, x3) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs14(x0, x1, ty_Int) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_esEs23(Nothing, Nothing, x0) new_primEqNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_esEs27(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_gt1(x0, x1, x2) new_esEs29(x0, x1, app(ty_Maybe, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (40) 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, bd, be) -> new_splitGT(yvy48, yvy50, bd, be) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_splitGT3(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, bb, bc) -> new_splitGT2(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, bb), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 8, 8 >= 9 *new_splitGT(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 8 *new_splitGT2(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, h, ba) -> new_splitGT1(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_splitGT2(yvy15, yvy16, yvy17, yvy18, Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, True, h, ba) -> new_splitGT3(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, h, ba) The graph contains the following edges 5 > 1, 5 > 2, 5 > 3, 5 > 4, 5 > 5, 6 >= 6, 8 >= 7, 9 >= 8 ---------------------------------------- (41) YES ---------------------------------------- (42) Obligation: Q DP problem: The TRS P consists of the following rules: new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) The TRS R consists of the following rules: new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt23(yvy204, yvy206, ty_Integer) -> new_lt10(yvy204, yvy206) new_esEs14(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs22(yvy1530, yvy1540, eff, efg, efh) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, yvy294) -> True new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_gt14(yvy35, yvy30, app(ty_Ratio, cf)) -> new_gt7(yvy35, yvy30, cf) new_ltEs23(yvy205, yvy207, ty_Integer) -> new_ltEs9(yvy205, yvy207) new_gt(yvy81, yvy76, app(ty_Ratio, fdh)) -> new_gt7(yvy81, yvy76, fdh) new_ltEs24(yvy153, yvy154, ty_Ordering) -> new_ltEs14(yvy153, yvy154) new_lt14(yvy40, yvy30, bg) -> new_esEs12(new_compare17(yvy40, yvy30, bg)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, fdf, fdg) -> new_mkBalBranch(yvy76, yvy77, new_addToFM_C0(yvy79, yvy81, yvy82, fdf, fdg), yvy80, fdf, fdg) new_compare110(yvy234, yvy235, False, cbg) -> GT new_esEs9(yvy400, yvy300, app(app(ty_Either, faf), fag)) -> new_esEs27(yvy400, yvy300, faf, fag) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) new_esEs5(yvy401, yvy301, app(ty_Ratio, eah)) -> new_esEs19(yvy401, yvy301, eah) new_compare26(yvy167, yvy168, True, bac, bad) -> EQ new_esEs11(yvy400, yvy300, app(ty_Ratio, fde)) -> new_esEs19(yvy400, yvy300, fde) new_emptyFM(h, ba) -> EmptyFM new_ltEs19(yvy193, yvy196, app(ty_[], fh)) -> new_ltEs12(yvy193, yvy196, fh) new_gt15(yvy40, yvy30, ty_@0) -> new_gt12(yvy40, yvy30) new_esEs38(yvy4002, yvy3002, app(ty_Maybe, ddg)) -> new_esEs23(yvy4002, yvy3002, ddg) new_esEs30(yvy191, yvy194, app(ty_[], ee)) -> new_esEs21(yvy191, yvy194, ee) new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs24(yvy153, yvy154, app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs4(yvy153, yvy154, ece, ecf, ecg) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(app(ty_@3, gah), gba), gbb)) -> new_ltEs4(yvy1530, yvy1540, gah, gba, gbb) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_lt24(yvy40, yvy50, app(ty_[], bc)) -> new_lt12(yvy40, yvy50, bc) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Bool, fhb) -> new_ltEs7(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, app(ty_Ratio, bgf)) -> new_esEs19(yvy1530, yvy1540, bgf) new_esEs6(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, app(app(ty_@2, fd), ff)) -> new_esEs28(yvy191, yvy194, fd, ff) new_esEs39(yvy4001, yvy3001, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs22(yvy4001, yvy3001, deb, dec, ded) new_esEs37(yvy204, yvy206, ty_@0) -> new_esEs15(yvy204, yvy206) new_lt6(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_lt14(yvy1530, yvy1540, ega) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs26(yvy4000, yvy3000) new_lt23(yvy204, yvy206, ty_Double) -> new_lt17(yvy204, yvy206) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, ty_Integer) -> new_esEs18(yvy191, yvy194) new_lt5(yvy1531, yvy1541, ty_Float) -> new_lt11(yvy1531, yvy1541) new_primCompAux0(yvy132, LT) -> LT new_ltEs20(yvy167, yvy168, app(app(ty_@2, bbe), bbf)) -> new_ltEs18(yvy167, yvy168, bbe, bbf) new_esEs38(yvy4002, yvy3002, app(app(ty_@2, ddc), ddd)) -> new_esEs28(yvy4002, yvy3002, ddc, ddd) new_gt15(yvy40, yvy30, ty_Float) -> new_gt13(yvy40, yvy30) new_not(True) -> False new_lt5(yvy1531, yvy1541, ty_Bool) -> new_lt8(yvy1531, yvy1541) new_lt23(yvy204, yvy206, ty_Int) -> new_lt9(yvy204, yvy206) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, Branch(yvy9040, yvy9041, yvy9042, yvy9043, yvy9044), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy9040, yvy9041, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy900, yvy901, yvy903, yvy9043, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy9044, yvy54, h, ba) new_ltEs23(yvy205, yvy207, ty_Char) -> new_ltEs15(yvy205, yvy207) new_lt26(yvy20, yvy15, ty_Float) -> new_lt11(yvy20, yvy15) new_esEs32(yvy4000, yvy3000, app(app(ty_Either, bec), bed)) -> new_esEs27(yvy4000, yvy3000, bec, bed) new_lt6(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_lt4(yvy1530, yvy1540, efd) new_primMulNat1(Succ(yvy9500)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9500)), yvy9500) new_lt22(yvy1530, yvy1540, app(ty_Ratio, bgf)) -> new_lt4(yvy1530, yvy1540, bgf) new_ltEs17(Left(yvy1530), Right(yvy1540), gae, fhb) -> True new_esEs7(yvy400, yvy300, app(ty_[], cgd)) -> new_esEs21(yvy400, yvy300, cgd) new_compare30(LT, LT) -> EQ new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs22(yvy4000, yvy3000, dbc, dbd, dbe) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Char) -> new_gt9(yvy81, yvy76) new_esEs39(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs24(yvy153, yvy154, ty_Double) -> new_ltEs16(yvy153, yvy154) new_compare16(yvy278, yvy279, yvy280, yvy281, True, beg, beh) -> LT new_ltEs20(yvy167, yvy168, ty_Bool) -> new_ltEs7(yvy167, yvy168) new_lt20(yvy191, yvy194, app(app(app(ty_@3, ef), eg), eh)) -> new_lt13(yvy191, yvy194, ef, eg, eh) new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs14(EQ, EQ) -> True new_compare17(Nothing, Nothing, bg) -> EQ new_gt14(yvy35, yvy30, app(app(ty_Either, de), df)) -> new_gt0(yvy35, yvy30, de, df) new_esEs33(yvy4000, yvy3000, app(ty_Maybe, fgd)) -> new_esEs23(yvy4000, yvy3000, fgd) new_primPlusInt(Pos(yvy9020), Pos(yvy2170)) -> Pos(new_primPlusNat0(yvy9020, yvy2170)) new_compare30(GT, GT) -> EQ new_lt11(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_esEs13(yvy1531, yvy1541, app(ty_[], eec)) -> new_esEs21(yvy1531, yvy1541, eec) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(ty_Either, gbd), gbe)) -> new_ltEs17(yvy1530, yvy1540, gbd, gbe) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_Maybe, dcb)) -> new_esEs23(yvy4000, yvy3000, dcb) new_lt6(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_lt19(yvy1530, yvy1540, egd, ege) new_lt22(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, True, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs40(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt2(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) new_ltEs23(yvy205, yvy207, ty_Float) -> new_ltEs11(yvy205, yvy207) new_esEs37(yvy204, yvy206, ty_Bool) -> new_esEs16(yvy204, yvy206) new_compare17(Just(yvy400), Nothing, bg) -> GT new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_esEs40(yvy4000, yvy3000, app(app(ty_@2, dfg), dfh)) -> new_esEs28(yvy4000, yvy3000, dfg, dfh) new_esEs5(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, ty_Int) -> new_ltEs8(yvy160, yvy161) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, gdh), gea), geb)) -> new_ltEs4(yvy1530, yvy1540, gdh, gea, geb) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs22(yvy400, yvy300, egg, egh, eha) new_lt5(yvy1531, yvy1541, ty_@0) -> new_lt7(yvy1531, yvy1541) new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dcd, dce, dcf) -> new_asAs(new_esEs40(yvy4000, yvy3000, dcd), new_asAs(new_esEs39(yvy4001, yvy3001, dce), new_esEs38(yvy4002, yvy3002, dcf))) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, new_gt3(new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) new_esEs20(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs37(yvy204, yvy206, ty_Double) -> new_esEs26(yvy204, yvy206) new_ltEs20(yvy167, yvy168, app(ty_Maybe, bbb)) -> new_ltEs13(yvy167, yvy168, bbb) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Int, fhb) -> new_ltEs8(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy167, yvy168, ty_Float) -> new_ltEs11(yvy167, yvy168) new_esEs4(yvy402, yvy302, app(ty_[], dge)) -> new_esEs21(yvy402, yvy302, dge) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare32(yvy400, yvy300, ty_@0) -> new_compare11(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, app(app(ty_Either, edf), edg)) -> new_ltEs17(yvy1532, yvy1542, edf, edg) new_lt5(yvy1531, yvy1541, ty_Ordering) -> new_lt15(yvy1531, yvy1541) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Integer, chg) -> new_esEs18(yvy4000, yvy3000) new_esEs19(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ebb) -> new_asAs(new_esEs35(yvy4000, yvy3000, ebb), new_esEs34(yvy4001, yvy3001, ebb)) new_lt26(yvy20, yvy15, ty_@0) -> new_lt7(yvy20, yvy15) new_ltEs23(yvy205, yvy207, app(app(ty_@2, cee), cef)) -> new_ltEs18(yvy205, yvy207, cee, cef) new_esEs6(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs15(yvy4000, yvy3000) new_gt6(yvy40, yvy30, bd, be, bf) -> new_esEs41(new_compare31(yvy40, yvy30, bd, be, bf)) new_esEs14(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Ordering) -> new_esEs24(yvy192, yvy195) new_lt23(yvy204, yvy206, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_lt13(yvy204, yvy206, cfa, cfb, cfc) new_esEs39(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_ltEs19(yvy193, yvy196, ty_Double) -> new_ltEs16(yvy193, yvy196) new_gt14(yvy35, yvy30, app(ty_[], cg)) -> new_gt1(yvy35, yvy30, cg) new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bbg, bbh) -> new_mkVBalBranch0(yvy45, yvy46, new_splitGT0(yvy48, yvy50, bbg, bbh), yvy49, bbg, bbh) new_esEs38(yvy4002, yvy3002, app(ty_[], dcg)) -> new_esEs21(yvy4002, yvy3002, dcg) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_[], fhd), fhb) -> new_ltEs12(yvy1530, yvy1540, fhd) new_esEs30(yvy191, yvy194, app(ty_Maybe, fa)) -> new_esEs23(yvy191, yvy194, fa) new_ltEs19(yvy193, yvy196, ty_Ordering) -> new_ltEs14(yvy193, yvy196) new_ltEs20(yvy167, yvy168, ty_@0) -> new_ltEs6(yvy167, yvy168) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs22(yvy4000, yvy3000, ccb, ccc, ccd) new_lt25(yvy40, yvy30, ty_Char) -> new_lt16(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_ltEs20(yvy167, yvy168, app(ty_Ratio, bae)) -> new_ltEs10(yvy167, yvy168, bae) new_ltEs14(EQ, GT) -> True new_esEs40(yvy4000, yvy3000, app(ty_Maybe, dgc)) -> new_esEs23(yvy4000, yvy3000, dgc) new_lt26(yvy20, yvy15, ty_Double) -> new_lt17(yvy20, yvy15) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, yvy90, False, h, ba) -> error([]) new_lt24(yvy40, yvy50, app(ty_Maybe, bg)) -> new_lt14(yvy40, yvy50, bg) new_ltEs20(yvy167, yvy168, app(app(ty_Either, bbc), bbd)) -> new_ltEs17(yvy167, yvy168, bbc, bbd) new_ltEs5(yvy1532, yvy1542, ty_Ordering) -> new_ltEs14(yvy1532, yvy1542) new_gt(yvy81, yvy76, app(app(ty_Either, fef), feg)) -> new_gt0(yvy81, yvy76, fef, feg) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs10(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs4(yvy402, yvy302, ty_@0) -> new_esEs15(yvy402, yvy302) new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_esEs21(:(yvy4000, yvy4001), [], eba) -> False new_esEs21([], :(yvy3000, yvy3001), eba) -> False new_ltEs14(LT, GT) -> True new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_ltEs21(yvy1531, yvy1541, ty_Char) -> new_ltEs15(yvy1531, yvy1541) new_ltEs14(GT, GT) -> True new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs10(yvy401, yvy301, app(app(ty_Either, fbh), fca)) -> new_esEs27(yvy401, yvy301, fbh, fca) new_esEs33(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_compare11(@0, @0) -> EQ new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_ltEs5(yvy1532, yvy1542, app(ty_Ratio, ech)) -> new_ltEs10(yvy1532, yvy1542, ech) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, app(ty_Maybe, eag)) -> new_esEs23(yvy401, yvy301, eag) new_ltEs5(yvy1532, yvy1542, ty_@0) -> new_ltEs6(yvy1532, yvy1542) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_[], gdg)) -> new_ltEs12(yvy1530, yvy1540, gdg) new_lt23(yvy204, yvy206, ty_Float) -> new_lt11(yvy204, yvy206) new_gt14(yvy35, yvy30, ty_Char) -> new_gt9(yvy35, yvy30) new_ltEs22(yvy160, yvy161, app(ty_Ratio, cab)) -> new_ltEs10(yvy160, yvy161, cab) new_gt(yvy81, yvy76, app(ty_[], fea)) -> new_gt1(yvy81, yvy76, fea) new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs22(yvy4001, yvy3001, bcd, bce, bcf) new_ltEs22(yvy160, yvy161, app(app(ty_Either, cah), cba)) -> new_ltEs17(yvy160, yvy161, cah, cba) new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_ltEs22(yvy160, yvy161, ty_Double) -> new_ltEs16(yvy160, yvy161) new_lt22(yvy1530, yvy1540, app(ty_Maybe, bhc)) -> new_lt14(yvy1530, yvy1540, bhc) new_esEs14(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_esEs19(yvy1530, yvy1540, efd) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare29(False, False) -> EQ new_esEs38(yvy4002, yvy3002, app(ty_Ratio, ddh)) -> new_esEs19(yvy4002, yvy3002, ddh) new_lt26(yvy20, yvy15, ty_Bool) -> new_lt8(yvy20, yvy15) new_esEs33(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt6(yvy1530, yvy1540, app(ty_[], efe)) -> new_lt12(yvy1530, yvy1540, efe) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bbg, bbh) -> yvy49 new_esEs7(yvy400, yvy300, app(ty_Maybe, chd)) -> new_esEs23(yvy400, yvy300, chd) new_ltEs21(yvy1531, yvy1541, ty_Double) -> new_ltEs16(yvy1531, yvy1541) new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs12(LT) -> True new_esEs13(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_esEs28(yvy1531, yvy1541, efb, efc) new_esEs6(yvy400, yvy300, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs22(yvy400, yvy300, dcd, dce, dcf) new_gt0(yvy40, yvy30, bh, ca) -> new_esEs41(new_compare7(yvy40, yvy30, bh, ca)) new_esEs7(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_[], hb)) -> new_lt12(yvy192, yvy195, hb) new_lt26(yvy20, yvy15, app(app(ty_Either, gda), gdb)) -> new_lt18(yvy20, yvy15, gda, gdb) new_ltEs20(yvy167, yvy168, ty_Integer) -> new_ltEs9(yvy167, yvy168) new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) new_esEs40(yvy4000, yvy3000, app(ty_[], dfc)) -> new_esEs21(yvy4000, yvy3000, dfc) new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) new_esEs4(yvy402, yvy302, ty_Bool) -> new_esEs16(yvy402, yvy302) new_ltEs19(yvy193, yvy196, ty_Char) -> new_ltEs15(yvy193, yvy196) new_lt23(yvy204, yvy206, ty_Ordering) -> new_lt15(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs22(yvy401, yvy301, dhh, eaa, eab) new_gt15(yvy40, yvy30, ty_Int) -> new_gt3(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs4(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), ece, ecf, ecg) -> new_pePe(new_lt6(yvy1530, yvy1540, ece), new_asAs(new_esEs14(yvy1530, yvy1540, ece), new_pePe(new_lt5(yvy1531, yvy1541, ecf), new_asAs(new_esEs13(yvy1531, yvy1541, ecf), new_ltEs5(yvy1532, yvy1542, ecg))))) new_lt20(yvy191, yvy194, ty_Integer) -> new_lt10(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(ty_Either, dbh), dca)) -> new_esEs27(yvy4000, yvy3000, dbh, dca) new_esEs37(yvy204, yvy206, ty_Int) -> new_esEs17(yvy204, yvy206) new_lt5(yvy1531, yvy1541, ty_Integer) -> new_lt10(yvy1531, yvy1541) new_ltEs10(yvy153, yvy154, cbf) -> new_fsEs(new_compare5(yvy153, yvy154, cbf)) new_esEs29(yvy192, yvy195, app(app(app(ty_@3, hc), hd), he)) -> new_esEs22(yvy192, yvy195, hc, hd, he) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(ty_@2, gbf), gbg)) -> new_ltEs18(yvy1530, yvy1540, gbf, gbg) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, EmptyFM, False, h, ba) -> error([]) new_compare29(True, False) -> GT new_esEs40(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_mkBalBranch(yvy50, yvy51, yvy90, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, new_lt9(new_primPlusInt(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_gt12(yvy40, yvy30) -> new_esEs41(new_compare11(yvy40, yvy30)) new_esEs14(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_lt26(yvy20, yvy15, app(ty_[], gcc)) -> new_lt12(yvy20, yvy15, gcc) new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_esEs31(yvy4001, yvy3001, app(ty_Maybe, bdc)) -> new_esEs23(yvy4001, yvy3001, bdc) new_esEs4(yvy402, yvy302, app(ty_Maybe, dhe)) -> new_esEs23(yvy402, yvy302, dhe) new_gt(yvy81, yvy76, ty_Bool) -> new_gt8(yvy81, yvy76) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, cd, ce) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, cd, ce) new_compare7(Left(yvy400), Right(yvy300), bh, ca) -> LT new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs12(GT) -> False new_esEs14(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs12(EQ) -> False new_esEs13(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_esEs27(yvy1531, yvy1541, eeh, efa) new_lt24(yvy40, yvy50, ty_Char) -> new_lt16(yvy40, yvy50) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, yvy270, cga, cgb, cgc) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, yvy270, cga, cgb, cgc) new_addToFM_C10(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, True, gfc, gfd) -> new_mkBalBranch(yvy105, yvy106, yvy108, new_addToFM_C0(yvy109, yvy110, yvy111, gfc, gfd), gfc, gfd) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Ratio, gdf)) -> new_ltEs10(yvy1530, yvy1540, gdf) new_lt23(yvy204, yvy206, app(app(ty_Either, cfe), cff)) -> new_lt18(yvy204, yvy206, cfe, cff) new_esEs39(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_Ratio, gaf)) -> new_ltEs10(yvy1530, yvy1540, gaf) new_lt21(yvy192, yvy195, ty_Ordering) -> new_lt15(yvy192, yvy195) new_lt20(yvy191, yvy194, ty_Float) -> new_lt11(yvy191, yvy194) new_esEs38(yvy4002, yvy3002, app(app(ty_Either, dde), ddf)) -> new_esEs27(yvy4002, yvy3002, dde, ddf) new_primPlusInt(Neg(yvy9020), Neg(yvy2170)) -> Neg(new_primPlusNat0(yvy9020, yvy2170)) new_esEs10(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_esEs37(yvy204, yvy206, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs22(yvy204, yvy206, cfa, cfb, cfc) new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs32(yvy4000, yvy3000, app(app(ty_@2, bea), beb)) -> new_esEs28(yvy4000, yvy3000, bea, beb) new_esEs5(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_lt25(yvy40, yvy30, ty_@0) -> new_lt7(yvy40, yvy30) new_esEs36(yvy1530, yvy1540, app(app(ty_@2, bhf), bhg)) -> new_esEs28(yvy1530, yvy1540, bhf, bhg) new_mkBranch(yvy323, yvy324, yvy325, yvy326, yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg) -> new_mkBranchResult(yvy324, yvy325, yvy326, new_mkBranch0(yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg), fgf, fgg) new_lt5(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_lt13(yvy1531, yvy1541, eed, eee, eef) new_esEs10(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt11(yvy35, yvy30) new_compare0([], :(yvy300, yvy301), bc) -> LT new_gt15(yvy40, yvy30, app(ty_Maybe, bg)) -> new_gt4(yvy40, yvy30, bg) new_compare32(yvy400, yvy300, ty_Bool) -> new_compare29(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Bool) -> new_esEs16(yvy1531, yvy1541) new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, app(ty_Ratio, ed)) -> new_esEs19(yvy191, yvy194, ed) new_ltEs16(yvy153, yvy154) -> new_fsEs(new_compare18(yvy153, yvy154)) new_esEs5(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, yvy60, yvy61, yvy62, yvy63, yvy64, yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs13(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_esEs19(yvy1531, yvy1541, eeb) new_lt20(yvy191, yvy194, ty_Bool) -> new_lt8(yvy191, yvy194) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_ltEs23(yvy205, yvy207, app(ty_[], cdf)) -> new_ltEs12(yvy205, yvy207, cdf) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Integer, fhb) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_esEs14(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ccg), cch)) -> new_esEs27(yvy4000, yvy3000, ccg, cch) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_esEs40(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs38(yvy4002, yvy3002, ty_Bool) -> new_esEs16(yvy4002, yvy3002) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_Ratio, dcc)) -> new_esEs19(yvy4000, yvy3000, dcc) new_esEs30(yvy191, yvy194, ty_Bool) -> new_esEs16(yvy191, yvy194) new_esEs5(yvy401, yvy301, app(ty_[], dhg)) -> new_esEs21(yvy401, yvy301, dhg) new_compare8(@2(yvy400, yvy401), @2(yvy300, yvy301), cb, cc) -> new_compare28(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cb), new_esEs10(yvy401, yvy301, cc)), cb, cc) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, EmptyFM, yvy90, True, h, ba) -> error([]) new_gt15(yvy40, yvy30, ty_Char) -> new_gt9(yvy40, yvy30) new_lt21(yvy192, yvy195, ty_@0) -> new_lt7(yvy192, yvy195) new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) new_esEs33(yvy4000, yvy3000, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs22(yvy4000, yvy3000, ffe, fff, ffg) new_esEs21([], [], eba) -> True new_esEs10(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs39(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, app(app(ty_Either, dba), chg)) -> new_esEs27(yvy400, yvy300, dba, chg) new_ltEs13(Nothing, Nothing, gde) -> True new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Nothing, gde) -> False new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_esEs29(yvy192, yvy195, ty_Int) -> new_esEs17(yvy192, yvy195) new_lt22(yvy1530, yvy1540, app(ty_[], bgg)) -> new_lt12(yvy1530, yvy1540, bgg) new_gt14(yvy35, yvy30, app(app(app(ty_@3, da), db), dc)) -> new_gt6(yvy35, yvy30, da, db, dc) new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_ltEs23(yvy205, yvy207, app(ty_Ratio, cde)) -> new_ltEs10(yvy205, yvy207, cde) new_esEs10(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs4(yvy402, yvy302, ty_Float) -> new_esEs20(yvy402, yvy302) new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, gbh, gca) -> new_splitGT0(yvy19, yvy20, gbh, gca) new_lt12(yvy40, yvy30, bc) -> new_esEs12(new_compare0(yvy40, yvy30, bc)) new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs22(yvy4000, yvy3000, bdf, bdg, bdh) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare25(yvy160, yvy161, False, bhh, caa) -> new_compare19(yvy160, yvy161, new_ltEs22(yvy160, yvy161, bhh), bhh, caa) new_compare30(GT, EQ) -> GT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dac), dad), chg) -> new_esEs28(yvy4000, yvy3000, dac, dad) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Float, fhb) -> new_ltEs11(yvy1530, yvy1540) new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) new_esEs29(yvy192, yvy195, app(ty_Ratio, ha)) -> new_esEs19(yvy192, yvy195, ha) new_esEs4(yvy402, yvy302, ty_Ordering) -> new_esEs24(yvy402, yvy302) new_lt21(yvy192, yvy195, app(ty_Maybe, hf)) -> new_lt14(yvy192, yvy195, hf) new_ltEs24(yvy153, yvy154, app(ty_Ratio, cbf)) -> new_ltEs10(yvy153, yvy154, cbf) new_esEs40(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy192, yvy195, ty_Int) -> new_lt9(yvy192, yvy195) new_compare29(False, True) -> LT new_lt25(yvy40, yvy30, ty_Bool) -> new_lt8(yvy40, yvy30) new_esEs11(yvy400, yvy300, app(ty_Maybe, fdd)) -> new_esEs23(yvy400, yvy300, fdd) new_compare210(yvy153, yvy154, False, geh) -> new_compare110(yvy153, yvy154, new_ltEs24(yvy153, yvy154, geh), geh) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba) new_esEs15(@0, @0) -> True new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt20(yvy191, yvy194, app(ty_Maybe, fa)) -> new_lt14(yvy191, yvy194, fa) new_esEs10(yvy401, yvy301, app(ty_Maybe, fcb)) -> new_esEs23(yvy401, yvy301, fcb) new_lt24(yvy40, yvy50, ty_Bool) -> new_lt8(yvy40, yvy50) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, EmptyFM, True, h, ba) -> error([]) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt6(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, app(ty_[], eda)) -> new_ltEs12(yvy1532, yvy1542, eda) new_ltEs7(True, True) -> True new_gt9(yvy40, yvy30) -> new_esEs41(new_compare12(yvy40, yvy30)) new_esEs6(yvy400, yvy300, app(ty_[], eba)) -> new_esEs21(yvy400, yvy300, eba) new_lt20(yvy191, yvy194, ty_@0) -> new_lt7(yvy191, yvy194) new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs11(yvy400, yvy300, app(app(ty_@2, fch), fda)) -> new_esEs28(yvy400, yvy300, fch, fda) new_lt22(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs16(True, True) -> True new_esEs7(yvy400, yvy300, app(app(ty_Either, chb), chc)) -> new_esEs27(yvy400, yvy300, chb, chc) new_esEs10(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs14(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs41(GT) -> True new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Ratio, fhc), fhb) -> new_ltEs10(yvy1530, yvy1540, fhc) new_compare28(yvy204, yvy205, yvy206, yvy207, False, cdc, cdd) -> new_compare15(yvy204, yvy205, yvy206, yvy207, new_lt23(yvy204, yvy206, cdc), new_asAs(new_esEs37(yvy204, yvy206, cdc), new_ltEs23(yvy205, yvy207, cdd)), cdc, cdd) new_mkBranch0(yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg) -> new_mkBranchResult(yvy328, yvy329, yvy330, yvy331, fgf, fgg) new_esEs14(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_esEs27(yvy1530, yvy1540, egb, egc) new_lt24(yvy40, yvy50, app(app(ty_Either, bh), ca)) -> new_lt18(yvy40, yvy50, bh, ca) new_esEs38(yvy4002, yvy3002, ty_@0) -> new_esEs15(yvy4002, yvy3002) new_gt14(yvy35, yvy30, ty_Bool) -> new_gt8(yvy35, yvy30) new_esEs37(yvy204, yvy206, app(app(ty_Either, cfe), cff)) -> new_esEs27(yvy204, yvy206, cfe, cff) new_lt20(yvy191, yvy194, ty_Ordering) -> new_lt15(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(ty_@2, dbf), dbg)) -> new_esEs28(yvy4000, yvy3000, dbf, dbg) new_lt21(yvy192, yvy195, ty_Float) -> new_lt11(yvy192, yvy195) new_lt21(yvy192, yvy195, ty_Bool) -> new_lt8(yvy192, yvy195) new_esEs10(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs38(yvy4002, yvy3002, ty_Char) -> new_esEs25(yvy4002, yvy3002) new_esEs10(yvy401, yvy301, app(app(ty_@2, fbf), fbg)) -> new_esEs28(yvy401, yvy301, fbf, fbg) new_compare13(yvy250, yvy251, True, gfa, gfb) -> LT new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_esEs33(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs28(yvy4000, yvy3000, ffh, fga) new_gt15(yvy40, yvy30, ty_Bool) -> new_gt8(yvy40, yvy30) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs25(yvy4000, yvy3000) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs24(yvy153, yvy154, app(ty_[], bfa)) -> new_ltEs12(yvy153, yvy154, bfa) new_esEs33(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs4(yvy402, yvy302, ty_Integer) -> new_esEs18(yvy402, yvy302) new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_lt25(yvy40, yvy30, app(ty_[], bc)) -> new_lt12(yvy40, yvy30, bc) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, new_gt3(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) new_esEs13(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs22(yvy1531, yvy1541, eed, eee, eef) new_esEs29(yvy192, yvy195, ty_Double) -> new_esEs26(yvy192, yvy195) new_esEs13(yvy1531, yvy1541, ty_@0) -> new_esEs15(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_lt22(yvy1530, yvy1540, app(app(ty_Either, bhd), bhe)) -> new_lt18(yvy1530, yvy1540, bhd, bhe) new_compare0(:(yvy400, yvy401), [], bc) -> GT new_compare32(yvy400, yvy300, app(ty_[], ebd)) -> new_compare0(yvy400, yvy300, ebd) new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_esEs31(yvy4001, yvy3001, app(ty_Ratio, bdd)) -> new_esEs19(yvy4001, yvy3001, bdd) new_esEs39(yvy4001, yvy3001, app(app(ty_Either, deg), deh)) -> new_esEs27(yvy4001, yvy3001, deg, deh) new_compare32(yvy400, yvy300, ty_Float) -> new_compare9(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_esEs23(yvy1530, yvy1540, ega) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_[], gag)) -> new_ltEs12(yvy1530, yvy1540, gag) new_esEs14(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Double) -> new_esEs26(yvy191, yvy194) new_esEs37(yvy204, yvy206, ty_Ordering) -> new_esEs24(yvy204, yvy206) new_gt15(yvy40, yvy30, ty_Integer) -> new_gt10(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Float) -> new_esEs20(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_lt18(yvy1531, yvy1541, eeh, efa) new_lt20(yvy191, yvy194, ty_Int) -> new_lt9(yvy191, yvy194) new_esEs37(yvy204, yvy206, app(ty_Maybe, cfd)) -> new_esEs23(yvy204, yvy206, cfd) new_esEs36(yvy1530, yvy1540, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs22(yvy1530, yvy1540, bgh, bha, bhb) new_esEs4(yvy402, yvy302, ty_Char) -> new_esEs25(yvy402, yvy302) new_esEs26(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs29(yvy192, yvy195, app(app(ty_@2, baa), bab)) -> new_esEs28(yvy192, yvy195, baa, bab) new_lt24(yvy40, yvy50, ty_@0) -> new_lt7(yvy40, yvy50) new_lt20(yvy191, yvy194, app(app(ty_Either, fb), fc)) -> new_lt18(yvy191, yvy194, fb, fc) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, True, h, ba) -> new_mkBranchResult(yvy540, yvy541, new_mkBranchResult(yvy50, yvy51, yvy90, yvy543, h, ba), yvy544, h, ba) new_lt5(yvy1531, yvy1541, ty_Int) -> new_lt9(yvy1531, yvy1541) new_esEs36(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Int) -> new_esEs17(yvy191, yvy194) new_lt8(yvy40, yvy30) -> new_esEs12(new_compare29(yvy40, yvy30)) new_compare13(yvy250, yvy251, False, gfa, gfb) -> GT new_esEs11(yvy400, yvy300, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs22(yvy400, yvy300, fce, fcf, fcg) new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs38(yvy4002, yvy3002, ty_Integer) -> new_esEs18(yvy4002, yvy3002) new_esEs13(yvy1531, yvy1541, ty_Char) -> new_esEs25(yvy1531, yvy1541) new_esEs10(yvy401, yvy301, app(ty_Ratio, fcc)) -> new_esEs19(yvy401, yvy301, fcc) new_esEs36(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, app(ty_Ratio, fge)) -> new_esEs19(yvy4000, yvy3000, fge) new_lt10(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) new_lt23(yvy204, yvy206, ty_Bool) -> new_lt8(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Integer) -> new_esEs18(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(ty_[], egf)) -> new_esEs21(yvy400, yvy300, egf) new_primCompAux1(yvy400, yvy300, yvy114, bc) -> new_primCompAux0(yvy114, new_compare32(yvy400, yvy300, bc)) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs37(yvy204, yvy206, ty_Integer) -> new_esEs18(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(ty_Either, eae), eaf)) -> new_esEs27(yvy401, yvy301, eae, eaf) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Char, fhb) -> new_ltEs15(yvy1530, yvy1540) new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, gbh, gca) -> new_splitGT10(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, gbh), gbh, gca) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_@2, gef), geg)) -> new_ltEs18(yvy1530, yvy1540, gef, geg) new_lt22(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_lt20(yvy191, yvy194, ty_Char) -> new_lt16(yvy191, yvy194) new_esEs40(yvy4000, yvy3000, app(app(ty_Either, dga), dgb)) -> new_esEs27(yvy4000, yvy3000, dga, dgb) new_esEs16(False, False) -> True new_gt(yvy81, yvy76, app(ty_Maybe, fee)) -> new_gt4(yvy81, yvy76, fee) new_ltEs21(yvy1531, yvy1541, app(ty_[], bfe)) -> new_ltEs12(yvy1531, yvy1541, bfe) new_esEs38(yvy4002, yvy3002, ty_Float) -> new_esEs20(yvy4002, yvy3002) new_splitGT0(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, gbh, gca) -> new_splitGT30(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, gbh, gca) new_primMinusNat0(Zero, Succ(yvy21700)) -> Neg(Succ(yvy21700)) new_esEs4(yvy402, yvy302, app(app(ty_Either, dhc), dhd)) -> new_esEs27(yvy402, yvy302, dhc, dhd) new_gt(yvy81, yvy76, app(app(app(ty_@3, feb), fec), fed)) -> new_gt6(yvy81, yvy76, feb, fec, fed) new_esEs21(:(yvy4000, yvy4001), :(yvy3000, yvy3001), eba) -> new_asAs(new_esEs33(yvy4000, yvy3000, eba), new_esEs21(yvy4001, yvy3001, eba)) new_compare32(yvy400, yvy300, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_compare31(yvy400, yvy300, ebe, ebf, ebg) new_esEs14(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_mkBranch1(yvy116, yvy117, yvy118, yvy119, yvy120, yvy121, yvy122, yvy123, yvy124, yvy125, yvy126, yvy127, yvy128, fgh, fha) -> Branch(yvy117, yvy118, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(Branch(yvy119, yvy120, yvy121, yvy122, yvy123), fgh, fha)), new_sizeFM0(Branch(yvy124, yvy125, yvy126, yvy127, yvy128), fgh, fha)), Branch(yvy119, yvy120, yvy121, yvy122, yvy123), Branch(yvy124, yvy125, yvy126, yvy127, yvy128)) new_esEs36(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, True, ea, eb, ec) -> EQ new_gt15(yvy40, yvy30, app(app(app(ty_@3, bd), be), bf)) -> new_gt6(yvy40, yvy30, bd, be, bf) new_ltEs17(Right(yvy1530), Left(yvy1540), gae, fhb) -> False new_esEs36(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, ty_Float) -> new_esEs20(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_[], cac)) -> new_ltEs12(yvy160, yvy161, cac) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Ordering, fhb) -> new_ltEs14(yvy1530, yvy1540) new_lt21(yvy192, yvy195, app(app(ty_Either, hg), hh)) -> new_lt18(yvy192, yvy195, hg, hh) new_lt6(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_compare110(yvy234, yvy235, True, cbg) -> LT new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Ordering) -> new_gt11(yvy81, yvy76) new_esEs31(yvy4001, yvy3001, app(app(ty_@2, bcg), bch)) -> new_esEs28(yvy4001, yvy3001, bcg, bch) new_ltEs14(LT, LT) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_@0, fhb) -> new_ltEs6(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_esEs23(yvy1531, yvy1541, eeg) new_esEs36(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_ltEs13(Nothing, Just(yvy1540), gde) -> True new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt11(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Ordering) -> new_esEs24(yvy1531, yvy1541) new_gt14(yvy35, yvy30, app(ty_Maybe, dd)) -> new_gt4(yvy35, yvy30, dd) new_lt15(yvy40, yvy30) -> new_esEs12(new_compare30(yvy40, yvy30)) new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) new_esEs36(yvy1530, yvy1540, app(ty_Maybe, bhc)) -> new_esEs23(yvy1530, yvy1540, bhc) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs9(yvy400, yvy300, app(ty_[], ehh)) -> new_esEs21(yvy400, yvy300, ehh) new_lt23(yvy204, yvy206, ty_@0) -> new_lt7(yvy204, yvy206) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) new_lt6(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_lt18(yvy1530, yvy1540, egb, egc) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs21(yvy1531, yvy1541, ty_@0) -> new_ltEs6(yvy1531, yvy1541) new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt4(yvy40, yvy30, bb) -> new_esEs12(new_compare5(yvy40, yvy30, bb)) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, app(ty_[], dea)) -> new_esEs21(yvy4001, yvy3001, dea) new_ltEs5(yvy1532, yvy1542, ty_Char) -> new_ltEs15(yvy1532, yvy1542) new_lt22(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Maybe, gec)) -> new_ltEs13(yvy1530, yvy1540, gec) new_ltEs11(yvy153, yvy154) -> new_fsEs(new_compare9(yvy153, yvy154)) new_ltEs19(yvy193, yvy196, ty_Bool) -> new_ltEs7(yvy193, yvy196) new_lt22(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_splitGT0(EmptyFM, yvy20, gbh, gca) -> new_emptyFM(gbh, gca) new_esEs7(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs37(yvy204, yvy206, ty_Char) -> new_esEs25(yvy204, yvy206) new_gt14(yvy35, yvy30, ty_Int) -> new_gt3(yvy35, yvy30) new_esEs36(yvy1530, yvy1540, app(app(ty_Either, bhd), bhe)) -> new_esEs27(yvy1530, yvy1540, bhd, bhe) new_esEs32(yvy4000, yvy3000, app(ty_Ratio, bef)) -> new_esEs19(yvy4000, yvy3000, bef) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_gt15(yvy40, yvy30, app(app(ty_Either, bh), ca)) -> new_gt0(yvy40, yvy30, bh, ca) new_gt(yvy81, yvy76, ty_Integer) -> new_gt10(yvy81, yvy76) new_gt14(yvy35, yvy30, ty_Integer) -> new_gt10(yvy35, yvy30) new_compare29(True, True) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bc) -> new_primCompAux1(yvy400, yvy300, new_compare0(yvy401, yvy301, bc), bc) new_esEs38(yvy4002, yvy3002, ty_Double) -> new_esEs26(yvy4002, yvy3002) new_esEs5(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_ltEs8(yvy153, yvy154) -> new_fsEs(new_compare6(yvy153, yvy154)) new_lt24(yvy40, yvy50, app(app(app(ty_@3, bd), be), bf)) -> new_lt13(yvy40, yvy50, bd, be, bf) new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy90, h, ba) new_esEs36(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs38(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) new_esEs14(yvy1530, yvy1540, app(ty_[], efe)) -> new_esEs21(yvy1530, yvy1540, efe) new_esEs40(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs33(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_compare28(yvy204, yvy205, yvy206, yvy207, True, cdc, cdd) -> EQ new_primCompAux0(yvy132, GT) -> GT new_lt6(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_splitLT0(EmptyFM, yvy35, cd, ce) -> new_emptyFM(cd, ce) new_esEs33(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy900, yvy901, yvy903, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy904, yvy54, h, ba) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt25(yvy40, yvy30, app(app(ty_Either, bh), ca)) -> new_lt18(yvy40, yvy30, bh, ca) new_lt26(yvy20, yvy15, ty_Char) -> new_lt16(yvy20, yvy15) new_esEs9(yvy400, yvy300, app(ty_Ratio, fba)) -> new_esEs19(yvy400, yvy300, fba) new_esEs29(yvy192, yvy195, app(ty_[], hb)) -> new_esEs21(yvy192, yvy195, hb) new_lt23(yvy204, yvy206, app(ty_Ratio, ceg)) -> new_lt4(yvy204, yvy206, ceg) new_sr1(Neg(yvy950)) -> Neg(new_primMulNat1(yvy950)) new_lt6(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_compare19(yvy241, yvy242, True, cbd, cbe) -> LT new_esEs23(Nothing, Just(yvy3000), cbh) -> False new_esEs23(Just(yvy4000), Nothing, cbh) -> False new_lt7(yvy40, yvy30) -> new_esEs12(new_compare11(yvy40, yvy30)) new_lt6(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_gt(yvy81, yvy76, ty_Float) -> new_gt13(yvy81, yvy76) new_gt10(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, fdf, fdg) -> new_addToFM_C10(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, fdf), fdf, fdg) new_esEs13(yvy1531, yvy1541, ty_Double) -> new_esEs26(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, ty_Char) -> new_lt16(yvy1531, yvy1541) new_esEs24(GT, GT) -> True new_lt5(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_lt4(yvy1531, yvy1541, eeb) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_lt14(yvy1531, yvy1541, eeg) new_ltEs20(yvy167, yvy168, ty_Ordering) -> new_ltEs14(yvy167, yvy168) new_compare17(Just(yvy400), Just(yvy300), bg) -> new_compare210(yvy400, yvy300, new_esEs7(yvy400, yvy300, bg), bg) new_gt3(yvy40, yvy30) -> new_esEs41(new_compare6(yvy40, yvy30)) new_ltEs24(yvy153, yvy154, ty_Float) -> new_ltEs11(yvy153, yvy154) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(yvy167, yvy168, app(ty_[], baf)) -> new_ltEs12(yvy167, yvy168, baf) new_esEs10(yvy401, yvy301, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs22(yvy401, yvy301, fbc, fbd, fbe) new_lt6(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt8(yvy40, yvy30) -> new_esEs41(new_compare29(yvy40, yvy30)) new_gt14(yvy35, yvy30, ty_Float) -> new_gt13(yvy35, yvy30) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs19(yvy193, yvy196, ty_@0) -> new_ltEs6(yvy193, yvy196) new_esEs23(Nothing, Nothing, cbh) -> True new_compare32(yvy400, yvy300, ty_Ordering) -> new_compare30(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_@2, dee), def)) -> new_esEs28(yvy4001, yvy3001, dee, def) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Integer) -> new_esEs18(yvy192, yvy195) new_compare7(Left(yvy400), Left(yvy300), bh, ca) -> new_compare25(yvy400, yvy300, new_esEs8(yvy400, yvy300, bh), bh, ca) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cce), ccf)) -> new_esEs28(yvy4000, yvy3000, cce, ccf) new_esEs7(yvy400, yvy300, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs22(yvy400, yvy300, cge, cgf, cgg) new_esEs33(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Char) -> new_lt16(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, chh), daa), dab), chg) -> new_esEs22(yvy4000, yvy3000, chh, daa, dab) new_compare32(yvy400, yvy300, ty_Char) -> new_compare12(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, app(app(ty_Either, bda), bdb)) -> new_esEs27(yvy4001, yvy3001, bda, bdb) new_addToFM_C0(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, h, ba) -> new_addToFM_C20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, h), h, ba) new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, cd, ce) -> new_splitLT10(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, cd), cd, ce) new_gt15(yvy40, yvy30, app(app(ty_@2, cb), cc)) -> new_gt5(yvy40, yvy30, cb, cc) new_primMinusNat0(Succ(yvy90200), Zero) -> Pos(Succ(yvy90200)) new_esEs4(yvy402, yvy302, app(ty_Ratio, dhf)) -> new_esEs19(yvy402, yvy302, dhf) new_gt5(yvy40, yvy30, cb, cc) -> new_esEs41(new_compare8(yvy40, yvy30, cb, cc)) new_fsEs(yvy295) -> new_not(new_esEs24(yvy295, GT)) new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy4002, yvy3002, ty_Ordering) -> new_esEs24(yvy4002, yvy3002) new_lt6(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs14(EQ, LT) -> False new_compare32(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare32(yvy400, yvy300, app(ty_Maybe, ebh)) -> new_compare17(yvy400, yvy300, ebh) new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs22(yvy160, yvy161, ty_Char) -> new_ltEs15(yvy160, yvy161) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cda)) -> new_esEs23(yvy4000, yvy3000, cda) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dag), chg) -> new_esEs23(yvy4000, yvy3000, dag) new_ltEs22(yvy160, yvy161, ty_Integer) -> new_ltEs9(yvy160, yvy161) new_ltEs23(yvy205, yvy207, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs4(yvy205, yvy207, cdg, cdh, cea) new_lt23(yvy204, yvy206, app(ty_[], ceh)) -> new_lt12(yvy204, yvy206, ceh) new_esEs24(LT, LT) -> True new_esEs33(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_lt20(yvy191, yvy194, app(app(ty_@2, fd), ff)) -> new_lt19(yvy191, yvy194, fd, ff) new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_esEs38(yvy4002, yvy3002, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(yvy4002, yvy3002, dch, dda, ddb) new_addToFM_C10(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, False, gfc, gfd) -> Branch(yvy110, yvy111, yvy107, yvy108, yvy109) new_ltEs15(yvy153, yvy154) -> new_fsEs(new_compare12(yvy153, yvy154)) new_pePe(False, yvy294) -> yvy294 new_ltEs23(yvy205, yvy207, ty_Int) -> new_ltEs8(yvy205, yvy207) new_gt(yvy81, yvy76, ty_@0) -> new_gt12(yvy81, yvy76) new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_compare25(yvy160, yvy161, True, bhh, caa) -> EQ new_gt14(yvy35, yvy30, ty_@0) -> new_gt12(yvy35, yvy30) new_compare210(yvy153, yvy154, True, geh) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba) new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_primMinusNat0(Succ(yvy90200), Succ(yvy21700)) -> new_primMinusNat0(yvy90200, yvy21700) new_compare32(yvy400, yvy300, app(app(ty_Either, eca), ecb)) -> new_compare7(yvy400, yvy300, eca, ecb) new_esEs39(yvy4001, yvy3001, app(ty_Maybe, dfa)) -> new_esEs23(yvy4001, yvy3001, dfa) new_lt22(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt13(yvy40, yvy30, bd, be, bf) -> new_esEs12(new_compare31(yvy40, yvy30, bd, be, bf)) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_[], cca)) -> new_esEs21(yvy4000, yvy3000, cca) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, eb, ec) -> new_compare10(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, new_lt20(yvy191, yvy194, ea), new_asAs(new_esEs30(yvy191, yvy194, ea), new_pePe(new_lt21(yvy192, yvy195, eb), new_asAs(new_esEs29(yvy192, yvy195, eb), new_ltEs19(yvy193, yvy196, ec)))), ea, eb, ec) new_lt5(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_lt19(yvy1531, yvy1541, efb, efc) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt22(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), yvy90, True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, new_lt9(new_sizeFM0(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba))), h, ba) new_ltEs19(yvy193, yvy196, app(app(ty_Either, ge), gf)) -> new_ltEs17(yvy193, yvy196, ge, gf) new_lt6(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_lt13(yvy1530, yvy1540, eff, efg, efh) new_gt7(yvy40, yvy30, bb) -> new_esEs41(new_compare5(yvy40, yvy30, bb)) new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) -> Branch(yvy50, yvy51, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(yvy90, h, ba)), new_sizeFM0(yvy54, h, ba)), yvy90, yvy54) new_esEs7(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs4(yvy402, yvy302, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs22(yvy402, yvy302, dgf, dgg, dgh) new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs8(yvy400, yvy300, app(app(ty_Either, ehd), ehe)) -> new_esEs27(yvy400, yvy300, ehd, ehe) new_ltEs5(yvy1532, yvy1542, app(ty_Maybe, ede)) -> new_ltEs13(yvy1532, yvy1542, ede) new_ltEs14(GT, EQ) -> False new_ltEs22(yvy160, yvy161, ty_Float) -> new_ltEs11(yvy160, yvy161) new_gt4(yvy40, yvy30, bg) -> new_esEs41(new_compare17(yvy40, yvy30, bg)) new_ltEs20(yvy167, yvy168, ty_Double) -> new_ltEs16(yvy167, yvy168) new_compare30(LT, GT) -> LT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dae), daf), chg) -> new_esEs27(yvy4000, yvy3000, dae, daf) new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(app(app(ty_@3, hc), hd), he)) -> new_lt13(yvy192, yvy195, hc, hd, he) new_esEs28(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bca, bcb) -> new_asAs(new_esEs32(yvy4000, yvy3000, bca), new_esEs31(yvy4001, yvy3001, bcb)) new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, ty_Float) -> new_ltEs11(yvy1532, yvy1542) new_ltEs19(yvy193, yvy196, app(ty_Ratio, fg)) -> new_ltEs10(yvy193, yvy196, fg) new_compare15(yvy278, yvy279, yvy280, yvy281, True, yvy283, beg, beh) -> new_compare16(yvy278, yvy279, yvy280, yvy281, True, beg, beh) new_esEs29(yvy192, yvy195, ty_Bool) -> new_esEs16(yvy192, yvy195) new_esEs32(yvy4000, yvy3000, app(ty_Maybe, bee)) -> new_esEs23(yvy4000, yvy3000, bee) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_Either, gaa), gab), fhb) -> new_ltEs17(yvy1530, yvy1540, gaa, gab) new_ltEs12(yvy153, yvy154, bfa) -> new_fsEs(new_compare0(yvy153, yvy154, bfa)) new_esEs33(yvy4000, yvy3000, app(app(ty_Either, fgb), fgc)) -> new_esEs27(yvy4000, yvy3000, fgb, fgc) new_esEs18(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_gt15(yvy40, yvy30, app(ty_Ratio, bb)) -> new_gt7(yvy40, yvy30, bb) new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt15(yvy40, yvy50) new_ltEs23(yvy205, yvy207, app(app(ty_Either, cec), ced)) -> new_ltEs17(yvy205, yvy207, cec, ced) new_lt23(yvy204, yvy206, ty_Char) -> new_lt16(yvy204, yvy206) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdb)) -> new_esEs19(yvy4000, yvy3000, cdb) new_esEs10(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_esEs40(yvy4000, yvy3000, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs22(yvy4000, yvy3000, dfd, dfe, dff) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Double, chg) -> new_esEs26(yvy4000, yvy3000) new_esEs36(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs23(yvy205, yvy207, ty_Double) -> new_ltEs16(yvy205, yvy207) new_esEs29(yvy192, yvy195, app(ty_Maybe, hf)) -> new_esEs23(yvy192, yvy195, hf) new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_ltEs7(False, True) -> True new_esEs30(yvy191, yvy194, ty_Ordering) -> new_esEs24(yvy191, yvy194) new_primMulNat1(Zero) -> Zero new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) new_ltEs21(yvy1531, yvy1541, app(app(ty_Either, bgb), bgc)) -> new_ltEs17(yvy1531, yvy1541, bgb, bgc) new_esEs13(yvy1531, yvy1541, ty_Int) -> new_esEs17(yvy1531, yvy1541) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_lt25(yvy40, yvy30, ty_Float) -> new_lt11(yvy40, yvy30) new_esEs5(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs7(True, False) -> False new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, yvy90, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranchResult(yvy50, yvy51, yvy90, yvy5433, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, h, ba) new_compare30(EQ, GT) -> LT new_ltEs19(yvy193, yvy196, ty_Integer) -> new_ltEs9(yvy193, yvy196) new_compare19(yvy241, yvy242, False, cbd, cbe) -> GT new_ltEs19(yvy193, yvy196, ty_Float) -> new_ltEs11(yvy193, yvy196) new_esEs6(yvy400, yvy300, app(ty_Maybe, cbh)) -> new_esEs23(yvy400, yvy300, cbh) new_compare12(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, cga, cgb, cgc) -> LT new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_sr1(Pos(yvy950)) -> Pos(new_primMulNat1(yvy950)) new_ltEs7(False, False) -> True new_lt24(yvy40, yvy50, ty_Float) -> new_lt11(yvy40, yvy50) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs11(yvy400, yvy300, app(app(ty_Either, fdb), fdc)) -> new_esEs27(yvy400, yvy300, fdb, fdc) new_lt20(yvy191, yvy194, app(ty_[], ee)) -> new_lt12(yvy191, yvy194, ee) new_esEs29(yvy192, yvy195, ty_@0) -> new_esEs15(yvy192, yvy195) new_ltEs21(yvy1531, yvy1541, app(ty_Ratio, bfd)) -> new_ltEs10(yvy1531, yvy1541, bfd) new_esEs30(yvy191, yvy194, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs22(yvy191, yvy194, ef, eg, eh) new_gt(yvy81, yvy76, ty_Int) -> new_gt3(yvy81, yvy76) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Maybe, fhh), fhb) -> new_ltEs13(yvy1530, yvy1540, fhh) new_esEs37(yvy204, yvy206, app(app(ty_@2, cfg), cfh)) -> new_esEs28(yvy204, yvy206, cfg, cfh) new_compare32(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Integer) -> new_ltEs9(yvy1532, yvy1542) new_esEs30(yvy191, yvy194, ty_@0) -> new_esEs15(yvy191, yvy194) new_lt23(yvy204, yvy206, app(ty_Maybe, cfd)) -> new_lt14(yvy204, yvy206, cfd) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_esEs14(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_esEs28(yvy1530, yvy1540, egd, ege) new_lt5(yvy1531, yvy1541, app(ty_[], eec)) -> new_lt12(yvy1531, yvy1541, eec) new_esEs37(yvy204, yvy206, app(ty_Ratio, ceg)) -> new_esEs19(yvy204, yvy206, ceg) new_ltEs24(yvy153, yvy154, app(app(ty_@2, bfb), bfc)) -> new_ltEs18(yvy153, yvy154, bfb, bfc) new_lt22(yvy1530, yvy1540, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt13(yvy1530, yvy1540, bgh, bha, bhb) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_[], chf), chg) -> new_esEs21(yvy4000, yvy3000, chf) new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs14(GT, LT) -> False new_esEs7(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) new_compare30(GT, LT) -> GT new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_ltEs9(yvy153, yvy154) -> new_fsEs(new_compare14(yvy153, yvy154)) new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_compare30(EQ, LT) -> GT new_compare7(Right(yvy400), Right(yvy300), bh, ca) -> new_compare26(yvy400, yvy300, new_esEs9(yvy400, yvy300, ca), bh, ca) new_lt19(yvy40, yvy30, cb, cc) -> new_esEs12(new_compare8(yvy40, yvy30, cb, cc)) new_esEs7(yvy400, yvy300, app(ty_Ratio, che)) -> new_esEs19(yvy400, yvy300, che) new_ltEs21(yvy1531, yvy1541, app(ty_Maybe, bga)) -> new_ltEs13(yvy1531, yvy1541, bga) new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs40(yvy4000, yvy3000, app(ty_Ratio, dgd)) -> new_esEs19(yvy4000, yvy3000, dgd) new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, ty_Char) -> new_esEs25(yvy191, yvy194) new_lt25(yvy40, yvy30, ty_Double) -> new_lt17(yvy40, yvy30) new_ltEs24(yvy153, yvy154, ty_Int) -> new_ltEs8(yvy153, yvy154) new_sr0(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Int, chg) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs21(yvy1531, yvy1541, ty_Float) -> new_ltEs11(yvy1531, yvy1541) new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba) new_esEs5(yvy401, yvy301, app(app(ty_@2, eac), ead)) -> new_esEs28(yvy401, yvy301, eac, ead) new_lt25(yvy40, yvy30, app(ty_Maybe, bg)) -> new_lt14(yvy40, yvy30, bg) new_esEs9(yvy400, yvy300, app(app(ty_@2, fad), fae)) -> new_esEs28(yvy400, yvy300, fad, fae) new_ltEs22(yvy160, yvy161, app(app(ty_@2, cbb), cbc)) -> new_ltEs18(yvy160, yvy161, cbb, cbc) new_lt25(yvy40, yvy30, app(ty_Ratio, bb)) -> new_lt4(yvy40, yvy30, bb) new_ltEs20(yvy167, yvy168, ty_Char) -> new_ltEs15(yvy167, yvy168) new_lt21(yvy192, yvy195, ty_Integer) -> new_lt10(yvy192, yvy195) new_gt15(yvy40, yvy30, app(ty_[], bc)) -> new_gt1(yvy40, yvy30, bc) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Float, chg) -> new_esEs20(yvy4000, yvy3000) new_gt1(yvy40, yvy30, bc) -> new_esEs41(new_compare0(yvy40, yvy30, bc)) new_asAs(True, yvy229) -> yvy229 new_esEs37(yvy204, yvy206, app(ty_[], ceh)) -> new_esEs21(yvy204, yvy206, ceh) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_@2, gac), gad), fhb) -> new_ltEs18(yvy1530, yvy1540, gac, gad) new_lt20(yvy191, yvy194, app(ty_Ratio, ed)) -> new_lt4(yvy191, yvy194, ed) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dah), chg) -> new_esEs19(yvy4000, yvy3000, dah) new_ltEs21(yvy1531, yvy1541, ty_Integer) -> new_ltEs9(yvy1531, yvy1541) new_ltEs22(yvy160, yvy161, ty_Ordering) -> new_ltEs14(yvy160, yvy161) new_ltEs23(yvy205, yvy207, ty_Bool) -> new_ltEs7(yvy205, yvy207) new_esEs36(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_primPlusInt(Pos(yvy9020), Neg(yvy2170)) -> new_primMinusNat0(yvy9020, yvy2170) new_primPlusInt(Neg(yvy9020), Pos(yvy2170)) -> new_primMinusNat0(yvy2170, yvy9020) new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, app(ty_[], bde)) -> new_esEs21(yvy4000, yvy3000, bde) new_lt26(yvy20, yvy15, app(app(app(ty_@3, gce), gcf), gcg)) -> new_lt13(yvy20, yvy15, gce, gcf, gcg) new_gt11(yvy40, yvy30) -> new_esEs41(new_compare30(yvy40, yvy30)) new_compare0([], [], bc) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_Either, ged), gee)) -> new_ltEs17(yvy1530, yvy1540, ged, gee) new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy54, h, ba) new_sr(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) new_esEs7(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Double, fhb) -> new_ltEs16(yvy1530, yvy1540) new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt15(yvy20, yvy15) new_primMulNat0(Zero, Zero) -> Zero new_ltEs22(yvy160, yvy161, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs4(yvy160, yvy161, cad, cae, caf) new_esEs8(yvy400, yvy300, app(ty_Maybe, ehf)) -> new_esEs23(yvy400, yvy300, ehf) new_esEs27(Left(yvy4000), Right(yvy3000), dba, chg) -> False new_esEs27(Right(yvy4000), Left(yvy3000), dba, chg) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Char, chg) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, app(ty_Ratio, dfb)) -> new_esEs19(yvy4001, yvy3001, dfb) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, yvy270, cga, cgb, cgc) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, cga, cgb, cgc) new_ltEs21(yvy1531, yvy1541, ty_Ordering) -> new_ltEs14(yvy1531, yvy1541) new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt15(yvy40, yvy30) new_ltEs19(yvy193, yvy196, app(ty_Maybe, gd)) -> new_ltEs13(yvy193, yvy196, gd) new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_Ratio, ha)) -> new_lt4(yvy192, yvy195, ha) new_esEs30(yvy191, yvy194, ty_Float) -> new_esEs20(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare6(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) new_primCompAux0(yvy132, EQ) -> yvy132 new_esEs27(Left(yvy4000), Left(yvy3000), ty_Ordering, chg) -> new_esEs24(yvy4000, yvy3000) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, cga, cgb, cgc) -> GT new_compare7(Right(yvy400), Left(yvy300), bh, ca) -> GT new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_gt(yvy81, yvy76, app(app(ty_@2, feh), ffa)) -> new_gt5(yvy81, yvy76, feh, ffa) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs4(yvy402, yvy302, app(app(ty_@2, dha), dhb)) -> new_esEs28(yvy402, yvy302, dha, dhb) new_esEs29(yvy192, yvy195, ty_Float) -> new_esEs20(yvy192, yvy195) new_lt16(yvy40, yvy30) -> new_esEs12(new_compare12(yvy40, yvy30)) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_gt14(yvy35, yvy30, app(app(ty_@2, dg), dh)) -> new_gt5(yvy35, yvy30, dg, dh) new_lt26(yvy20, yvy15, app(app(ty_@2, gdc), gdd)) -> new_lt19(yvy20, yvy15, gdc, gdd) new_ltEs24(yvy153, yvy154, app(app(ty_Either, gae), fhb)) -> new_ltEs17(yvy153, yvy154, gae, fhb) new_ltEs21(yvy1531, yvy1541, app(app(ty_@2, bgd), bge)) -> new_ltEs18(yvy1531, yvy1541, bgd, bge) new_esEs29(yvy192, yvy195, ty_Char) -> new_esEs25(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(ty_[], bgg)) -> new_esEs21(yvy1530, yvy1540, bgg) new_primPlusNat1(yvy284, yvy9500) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy284, Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)) new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_ltEs5(yvy1532, yvy1542, ty_Bool) -> new_ltEs7(yvy1532, yvy1542) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_ltEs18(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bfb, bfc) -> new_pePe(new_lt22(yvy1530, yvy1540, bfb), new_asAs(new_esEs36(yvy1530, yvy1540, bfb), new_ltEs21(yvy1531, yvy1541, bfc))) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, fhe), fhf), fhg), fhb) -> new_ltEs4(yvy1530, yvy1540, fhe, fhf, fhg) new_esEs9(yvy400, yvy300, app(ty_Maybe, fah)) -> new_esEs23(yvy400, yvy300, fah) new_ltEs5(yvy1532, yvy1542, ty_Double) -> new_ltEs16(yvy1532, yvy1542) new_lt21(yvy192, yvy195, app(app(ty_@2, baa), bab)) -> new_lt19(yvy192, yvy195, baa, bab) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(yvy193, yvy196, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs4(yvy193, yvy196, ga, gb, gc) new_lt24(yvy40, yvy50, ty_Double) -> new_lt17(yvy40, yvy50) new_lt26(yvy20, yvy15, app(ty_Ratio, gcb)) -> new_lt4(yvy20, yvy15, gcb) new_compare26(yvy167, yvy168, False, bac, bad) -> new_compare13(yvy167, yvy168, new_ltEs20(yvy167, yvy168, bad), bac, bad) new_lt26(yvy20, yvy15, app(ty_Maybe, gch)) -> new_lt14(yvy20, yvy15, gch) new_lt25(yvy40, yvy30, app(app(app(ty_@3, bd), be), bf)) -> new_lt13(yvy40, yvy30, bd, be, bf) new_esEs6(yvy400, yvy300, app(app(ty_@2, bca), bcb)) -> new_esEs28(yvy400, yvy300, bca, bcb) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs31(yvy4001, yvy3001, app(ty_[], bcc)) -> new_esEs21(yvy4001, yvy3001, bcc) new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_not(False) -> True new_esEs29(yvy192, yvy195, app(app(ty_Either, hg), hh)) -> new_esEs27(yvy192, yvy195, hg, hh) new_lt22(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs8(yvy400, yvy300, app(ty_Ratio, ehg)) -> new_esEs19(yvy400, yvy300, ehg) new_ltEs24(yvy153, yvy154, ty_Integer) -> new_ltEs9(yvy153, yvy154) new_esEs5(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare32(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy153, yvy154, ty_Bool) -> new_ltEs7(yvy153, yvy154) new_esEs30(yvy191, yvy194, app(app(ty_Either, fb), fc)) -> new_esEs27(yvy191, yvy194, fb, fc) new_compare30(EQ, EQ) -> EQ new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), bd, be, bf) -> new_compare27(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, bd), new_asAs(new_esEs5(yvy401, yvy301, be), new_esEs4(yvy402, yvy302, bf))), bd, be, bf) new_esEs41(LT) -> False new_lt18(yvy40, yvy30, bh, ca) -> new_esEs12(new_compare7(yvy40, yvy30, bh, ca)) new_lt5(yvy1531, yvy1541, ty_Double) -> new_lt17(yvy1531, yvy1541) new_esEs39(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare30(LT, EQ) -> LT new_ltEs21(yvy1531, yvy1541, ty_Int) -> new_ltEs8(yvy1531, yvy1541) new_lt22(yvy1530, yvy1540, app(app(ty_@2, bhf), bhg)) -> new_lt19(yvy1530, yvy1540, bhf, bhg) new_esEs9(yvy400, yvy300, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs22(yvy400, yvy300, faa, fab, fac) new_ltEs19(yvy193, yvy196, app(app(ty_@2, gg), gh)) -> new_ltEs18(yvy193, yvy196, gg, gh) new_esEs27(Left(yvy4000), Left(yvy3000), ty_@0, chg) -> new_esEs15(yvy4000, yvy3000) new_ltEs22(yvy160, yvy161, ty_@0) -> new_ltEs6(yvy160, yvy161) new_ltEs5(yvy1532, yvy1542, app(app(app(ty_@3, edb), edc), edd)) -> new_ltEs4(yvy1532, yvy1542, edb, edc, edd) new_esEs8(yvy400, yvy300, app(app(ty_@2, ehb), ehc)) -> new_esEs28(yvy400, yvy300, ehb, ehc) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(yvy191, yvy194, ty_Double) -> new_lt17(yvy191, yvy194) new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, ffb, ffc) -> new_mkVBalBranch0(yvy60, yvy61, yvy63, new_splitLT0(yvy64, yvy65, ffb, ffc), ffb, ffc) new_ltEs14(LT, EQ) -> True new_lt24(yvy40, yvy50, ty_Integer) -> new_lt10(yvy40, yvy50) new_ltEs22(yvy160, yvy161, app(ty_Maybe, cag)) -> new_ltEs13(yvy160, yvy161, cag) new_esEs6(yvy400, yvy300, app(ty_Ratio, ebb)) -> new_esEs19(yvy400, yvy300, ebb) new_lt25(yvy40, yvy30, app(app(ty_@2, cb), cc)) -> new_lt19(yvy40, yvy30, cb, cc) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, Branch(yvy900, yvy901, yvy902, yvy903, yvy904), True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, new_lt9(new_sizeFM0(yvy904, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy903, h, ba))), h, ba) new_esEs40(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs21(yvy1531, yvy1541, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs4(yvy1531, yvy1541, bff, bfg, bfh) new_esEs11(yvy400, yvy300, app(ty_[], fcd)) -> new_esEs21(yvy400, yvy300, fcd) new_ltEs6(yvy153, yvy154) -> new_fsEs(new_compare11(yvy153, yvy154)) new_gt15(yvy40, yvy30, ty_Double) -> new_gt2(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Int) -> new_ltEs8(yvy1532, yvy1542) new_esEs25(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_ltEs21(yvy1531, yvy1541, ty_Bool) -> new_ltEs7(yvy1531, yvy1541) new_lt24(yvy40, yvy50, app(app(ty_@2, cb), cc)) -> new_lt19(yvy40, yvy50, cb, cc) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_ltEs5(yvy1532, yvy1542, app(app(ty_@2, edh), eea)) -> new_ltEs18(yvy1532, yvy1542, edh, eea) new_compare15(yvy278, yvy279, yvy280, yvy281, False, yvy283, beg, beh) -> new_compare16(yvy278, yvy279, yvy280, yvy281, yvy283, beg, beh) new_esEs10(yvy401, yvy301, app(ty_[], fbb)) -> new_esEs21(yvy401, yvy301, fbb) new_gt(yvy81, yvy76, ty_Double) -> new_gt2(yvy81, yvy76) new_compare32(yvy400, yvy300, app(app(ty_@2, ecc), ecd)) -> new_compare8(yvy400, yvy300, ecc, ecd) new_ltEs20(yvy167, yvy168, ty_Int) -> new_ltEs8(yvy167, yvy168) new_esEs4(yvy402, yvy302, ty_Double) -> new_esEs26(yvy402, yvy302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy153, yvy154, ty_Char) -> new_ltEs15(yvy153, yvy154) new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, cd, ce) -> new_splitLT0(yvy33, yvy35, cd, ce) new_ltEs24(yvy153, yvy154, app(ty_Maybe, gde)) -> new_ltEs13(yvy153, yvy154, gde) new_lt23(yvy204, yvy206, app(app(ty_@2, cfg), cfh)) -> new_lt19(yvy204, yvy206, cfg, cfh) new_ltEs24(yvy153, yvy154, ty_@0) -> new_ltEs6(yvy153, yvy154) new_primEqNat0(Zero, Zero) -> True new_lt26(yvy20, yvy15, ty_Integer) -> new_lt10(yvy20, yvy15) new_lt21(yvy192, yvy195, ty_Double) -> new_lt17(yvy192, yvy195) new_compare17(Nothing, Just(yvy300), bg) -> LT new_lt25(yvy40, yvy30, ty_Integer) -> new_lt10(yvy40, yvy30) new_esEs33(yvy4000, yvy3000, app(ty_[], ffd)) -> new_esEs21(yvy4000, yvy3000, ffd) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_[], dbb)) -> new_esEs21(yvy4000, yvy3000, dbb) new_ltEs23(yvy205, yvy207, app(ty_Maybe, ceb)) -> new_ltEs13(yvy205, yvy207, ceb) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_Maybe, gbc)) -> new_ltEs13(yvy1530, yvy1540, gbc) new_asAs(False, yvy229) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Bool, chg) -> new_esEs16(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_@0) -> new_ltEs6(yvy205, yvy207) new_lt24(yvy40, yvy50, app(ty_Ratio, bb)) -> new_lt4(yvy40, yvy50, bb) new_ltEs19(yvy193, yvy196, ty_Int) -> new_ltEs8(yvy193, yvy196) new_gt13(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) new_esEs5(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_lt6(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_compare16(yvy278, yvy279, yvy280, yvy281, False, beg, beh) -> GT new_ltEs20(yvy167, yvy168, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs4(yvy167, yvy168, bag, bah, bba) new_ltEs23(yvy205, yvy207, ty_Ordering) -> new_ltEs14(yvy205, yvy207) new_compare32(yvy400, yvy300, app(ty_Ratio, ebc)) -> new_compare5(yvy400, yvy300, ebc) new_gt14(yvy35, yvy30, ty_Double) -> new_gt2(yvy35, yvy30) new_esEs7(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, ffb, ffc) -> yvy63 new_esEs7(yvy400, yvy300, app(app(ty_@2, cgh), cha)) -> new_esEs28(yvy400, yvy300, cgh, cha) new_ltEs22(yvy160, yvy161, ty_Bool) -> new_ltEs7(yvy160, yvy161) The set Q consists of the following terms: new_esEs8(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt25(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(x0, x1, ty_Integer) new_fsEs(x0) new_lt25(x0, x1, ty_Double) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare17(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Double) new_compare11(@0, @0) new_compare210(x0, x1, True, x2) new_esEs4(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) new_esEs7(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_lt13(x0, x1, x2, x3, x4) new_gt8(x0, x1) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulNat0(Zero, Succ(x0)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) new_lt25(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs36(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Nothing, Nothing, x0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_gt14(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Bool) new_splitGT30(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs23(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_gt14(x0, x1, app(ty_[], x2)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1) new_esEs10(x0, x1, ty_Float) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_lt25(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs40(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs8(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt15(x0, x1, ty_Int) new_gt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_gt15(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Double) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(False, False) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs13(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, ty_Integer) new_lt25(x0, x1, app(ty_Maybe, x2)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_esEs23(Just(x0), Just(x1), ty_Float) new_ltEs7(False, True) new_esEs5(x0, x1, ty_@0) new_ltEs7(True, False) new_splitLT20(x0, x1, x2, x3, x4, x5, False, x6, x7) new_gt(x0, x1, ty_Char) new_gt10(x0, x1) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, x2, x3) new_esEs40(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(Left(x0), Left(x1), ty_@0, x2) new_esEs37(x0, x1, ty_Float) new_ltEs9(x0, x1) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_gt14(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs32(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare26(x0, x1, True, x2, x3) new_gt14(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux0(x0, GT) new_esEs31(x0, x1, ty_Float) new_lt14(x0, x1, x2) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs7(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_gt14(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs12(GT) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(x0, x1, ty_Integer) new_lt23(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Integer) new_lt26(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21([], [], x0) new_lt6(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs33(x0, x1, ty_Double) new_splitGT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs38(x0, x1, ty_Double) new_gt(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Integer) new_compare32(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, GT) new_compare30(GT, LT) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8) new_ltEs24(x0, x1, ty_Double) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_lt24(x0, x1, ty_Ordering) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_gt6(x0, x1, x2, x3, x4) new_compare14(Integer(x0), Integer(x1)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primMinusNat0(Zero, Succ(x0)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs32(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_Double) new_lt22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_compare32(x0, x1, ty_Bool) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs14(x0, x1, ty_@0) new_esEs24(LT, GT) new_esEs24(GT, LT) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, ty_Integer) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_lt26(x0, x1, ty_Char) new_sizeFM0(EmptyFM, x0, x1) new_compare25(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs27(Left(x0), Left(x1), ty_Float, x2) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs28(@2(x0, x1), @2(x2, x3), x4, x5) new_lt26(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Integer) new_lt25(x0, x1, ty_Float) new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) new_ltEs5(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_compare15(x0, x1, x2, x3, True, x4, x5, x6) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, LT) new_gt14(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_lt6(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt26(x0, x1, ty_Int) new_compare0([], [], x0) new_esEs32(x0, x1, ty_Bool) new_mkBranchResult(x0, x1, x2, x3, x4, x5) new_splitLT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs36(x0, x1, ty_Int) new_gt(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_splitGT10(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs20(Float(x0, x1), Float(x2, x3)) new_lt5(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1) new_esEs13(x0, x1, ty_Int) new_not(True) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Ordering) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt26(x0, x1, ty_Double) new_esEs25(Char(x0), Char(x1)) new_esEs23(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt25(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_@0) new_compare19(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_gt13(x0, x1) new_esEs11(x0, x1, ty_@0) new_lt22(x0, x1, ty_Integer) new_ltEs13(Nothing, Just(x0), x1) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_compare15(x0, x1, x2, x3, False, x4, x5, x6) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_splitGT10(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_gt15(x0, x1, ty_Float) new_lt26(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs27(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs6(x0, x1) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Char) new_compare0(:(x0, x1), [], x2) new_esEs14(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitGT20(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs8(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Char) new_ltEs8(x0, x1) new_compare13(x0, x1, True, x2, x3) new_ltEs5(x0, x1, ty_Integer) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_lt25(x0, x1, ty_@0) new_lt26(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Char) new_sr(x0, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs14(GT, GT) new_esEs21(:(x0, x1), :(x2, x3), x4) new_esEs27(Right(x0), Right(x1), x2, ty_Int) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), ty_Int) new_splitLT10(x0, x1, x2, x3, x4, x5, False, x6, x7) new_primMulInt(Neg(x0), Neg(x1)) new_esEs30(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_[], x2)) new_splitLT30(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_gt1(x0, x1, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs13(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs15(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM(x0, x1, x2, x3, x4) new_lt23(x0, x1, ty_Integer) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_gt15(x0, x1, app(ty_Ratio, x2)) new_compare17(Nothing, Nothing, x0) new_esEs4(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_lt22(x0, x1, ty_Float) new_compare19(x0, x1, True, x2, x3) new_not(False) new_lt26(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_@0) new_ltEs24(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4) new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) new_gt15(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), ty_Integer, x2) new_ltEs23(x0, x1, ty_Char) new_esEs12(LT) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt25(x0, x1, app(ty_Ratio, x2)) new_esEs24(GT, GT) new_esEs32(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Double) new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs27(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_esEs33(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, ty_Bool) new_gt3(x0, x1) new_esEs27(Left(x0), Left(x1), ty_Char, x2) new_lt10(x0, x1) new_lt15(x0, x1) new_esEs4(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, x2, x3) new_compare32(x0, x1, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_lt5(x0, x1, ty_Int) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_@0) new_compare29(True, True) new_lt23(x0, x1, ty_Char) new_esEs41(LT) new_gt15(x0, x1, ty_Integer) new_esEs40(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs27(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs11(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_compare28(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_primCompAux0(x0, EQ) new_esEs13(x0, x1, app(ty_[], x2)) new_lt26(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Left(x0), Left(x1), x2, x3) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, ty_Float) new_compare13(x0, x1, False, x2, x3) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs27(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Char) new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs23(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Left(x0), Left(x1), ty_Double, x2) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Int) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs33(x0, x1, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Bool) new_primMinusNat0(Zero, Zero) new_esEs27(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(ty_[], x2)) new_emptyFM(x0, x1) new_compare32(x0, x1, ty_Ordering) new_gt14(x0, x1, ty_Double) new_gt12(x0, x1) new_gt14(x0, x1, ty_Char) new_sr1(Neg(x0)) new_lt25(x0, x1, ty_Int) new_gt14(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs14(LT, LT) new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_gt14(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_gt15(x0, x1, ty_Char) new_esEs27(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_sIZE_RATIO new_primPlusNat1(x0, x1) new_lt22(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Char) new_esEs24(EQ, EQ) new_compare0([], :(x0, x1), x2) new_esEs27(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_splitGT0(EmptyFM, x0, x1, x2) new_esEs36(x0, x1, ty_Float) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, ty_Integer) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_gt(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_sr1(Pos(x0)) new_esEs6(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(True, True) new_gt(x0, x1, ty_@0) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_splitLT10(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Int) new_lt26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_compare30(EQ, EQ) new_esEs37(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs41(GT) new_esEs8(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(@0, @0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt25(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs23(Just(x0), Just(x1), ty_Double) new_lt6(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, app(ty_Ratio, x2)) new_compare17(Nothing, Just(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs27(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_esEs29(x0, x1, ty_Double) new_ltEs14(LT, GT) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs14(GT, LT) new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Integer) new_compare29(True, False) new_compare29(False, True) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Char) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(False, False) new_gt15(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_@0) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat1(Succ(x0)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs40(x0, x1, ty_@0) new_compare7(Right(x0), Right(x1), x2, x3) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs27(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt21(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_lt6(x0, x1, ty_Char) new_esEs16(False, False) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, ty_@0) new_lt22(x0, x1, ty_Double) new_gt15(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_gt(x0, x1, app(ty_Maybe, x2)) new_gt15(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Char) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt24(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Float) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_primMulNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_splitGT20(x0, x1, x2, x3, x4, x5, True, x6, x7) new_primMinusNat0(Succ(x0), Zero) new_ltEs22(x0, x1, ty_Ordering) new_pePe(False, x0) new_primMulNat0(Zero, Zero) new_asAs(False, x0) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_esEs31(x0, x1, ty_Bool) new_esEs24(LT, LT) new_compare110(x0, x1, True, x2) new_ltEs14(EQ, EQ) new_gt5(x0, x1, x2, x3) new_gt15(x0, x1, app(ty_[], x2)) new_compare26(x0, x1, False, x2, x3) new_esEs39(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs27(Left(x0), Right(x1), x2, x3) new_esEs27(Right(x0), Left(x1), x2, x3) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs9(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs11(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Double) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Ordering) new_gt11(x0, x1) new_lt16(x0, x1) new_esEs13(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT20(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt26(x0, x1, ty_Ordering) new_esEs27(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs36(x0, x1, ty_Ordering) new_gt9(x0, x1) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt25(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt26(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_compare12(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21([], :(x0, x1), x2) new_lt12(x0, x1, x2) new_ltEs21(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs18(Integer(x0), Integer(x1)) new_lt24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3) new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_esEs39(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt24(x0, x1, ty_Double) new_lt24(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) new_esEs7(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare30(GT, GT) new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs37(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False, x2) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1, x2) new_lt6(x0, x1, ty_Double) new_ltEs16(x0, x1) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13) new_esEs17(x0, x1) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_gt4(x0, x1, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, ty_Char) new_compare110(x0, x1, False, x2) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_lt25(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs6(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_gt14(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Float) new_compare32(x0, x1, ty_@0) new_gt7(x0, x1, x2) new_esEs34(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Integer) new_asAs(True, x0) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs4(x0, x1, ty_Ordering) new_esEs12(EQ) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs41(EQ) new_esEs21(:(x0, x1), [], x2) new_gt2(x0, x1) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Bool) new_gt14(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCompAux0(x0, LT) new_ltEs7(True, True) new_esEs33(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_splitLT0(EmptyFM, x0, x1, x2) new_ltEs20(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_gt0(x0, x1, x2, x3) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt26(x0, x1, app(ty_[], x2)) new_compare17(Just(x0), Just(x1), x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs16(False, True) new_esEs16(True, False) new_gt15(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_gt15(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs29(x0, x1, ty_Float) new_compare6(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, x2, x3, False, x4, x5) new_esEs30(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs27(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs14(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_primEqNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1, x2) new_primMulNat1(Zero) new_lt23(x0, x1, app(ty_[], x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (43) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy44, h, ba) at position [0] we obtained the following new rules [LPAR04]: (new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba),new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba)) ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba) The TRS R consists of the following rules: new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt23(yvy204, yvy206, ty_Integer) -> new_lt10(yvy204, yvy206) new_esEs14(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs22(yvy1530, yvy1540, eff, efg, efh) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, yvy294) -> True new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_gt14(yvy35, yvy30, app(ty_Ratio, cf)) -> new_gt7(yvy35, yvy30, cf) new_ltEs23(yvy205, yvy207, ty_Integer) -> new_ltEs9(yvy205, yvy207) new_gt(yvy81, yvy76, app(ty_Ratio, fdh)) -> new_gt7(yvy81, yvy76, fdh) new_ltEs24(yvy153, yvy154, ty_Ordering) -> new_ltEs14(yvy153, yvy154) new_lt14(yvy40, yvy30, bg) -> new_esEs12(new_compare17(yvy40, yvy30, bg)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, fdf, fdg) -> new_mkBalBranch(yvy76, yvy77, new_addToFM_C0(yvy79, yvy81, yvy82, fdf, fdg), yvy80, fdf, fdg) new_compare110(yvy234, yvy235, False, cbg) -> GT new_esEs9(yvy400, yvy300, app(app(ty_Either, faf), fag)) -> new_esEs27(yvy400, yvy300, faf, fag) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) new_esEs5(yvy401, yvy301, app(ty_Ratio, eah)) -> new_esEs19(yvy401, yvy301, eah) new_compare26(yvy167, yvy168, True, bac, bad) -> EQ new_esEs11(yvy400, yvy300, app(ty_Ratio, fde)) -> new_esEs19(yvy400, yvy300, fde) new_emptyFM(h, ba) -> EmptyFM new_ltEs19(yvy193, yvy196, app(ty_[], fh)) -> new_ltEs12(yvy193, yvy196, fh) new_gt15(yvy40, yvy30, ty_@0) -> new_gt12(yvy40, yvy30) new_esEs38(yvy4002, yvy3002, app(ty_Maybe, ddg)) -> new_esEs23(yvy4002, yvy3002, ddg) new_esEs30(yvy191, yvy194, app(ty_[], ee)) -> new_esEs21(yvy191, yvy194, ee) new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs24(yvy153, yvy154, app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs4(yvy153, yvy154, ece, ecf, ecg) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(app(ty_@3, gah), gba), gbb)) -> new_ltEs4(yvy1530, yvy1540, gah, gba, gbb) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_lt24(yvy40, yvy50, app(ty_[], bc)) -> new_lt12(yvy40, yvy50, bc) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Bool, fhb) -> new_ltEs7(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, app(ty_Ratio, bgf)) -> new_esEs19(yvy1530, yvy1540, bgf) new_esEs6(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, app(app(ty_@2, fd), ff)) -> new_esEs28(yvy191, yvy194, fd, ff) new_esEs39(yvy4001, yvy3001, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs22(yvy4001, yvy3001, deb, dec, ded) new_esEs37(yvy204, yvy206, ty_@0) -> new_esEs15(yvy204, yvy206) new_lt6(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_lt14(yvy1530, yvy1540, ega) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs26(yvy4000, yvy3000) new_lt23(yvy204, yvy206, ty_Double) -> new_lt17(yvy204, yvy206) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, ty_Integer) -> new_esEs18(yvy191, yvy194) new_lt5(yvy1531, yvy1541, ty_Float) -> new_lt11(yvy1531, yvy1541) new_primCompAux0(yvy132, LT) -> LT new_ltEs20(yvy167, yvy168, app(app(ty_@2, bbe), bbf)) -> new_ltEs18(yvy167, yvy168, bbe, bbf) new_esEs38(yvy4002, yvy3002, app(app(ty_@2, ddc), ddd)) -> new_esEs28(yvy4002, yvy3002, ddc, ddd) new_gt15(yvy40, yvy30, ty_Float) -> new_gt13(yvy40, yvy30) new_not(True) -> False new_lt5(yvy1531, yvy1541, ty_Bool) -> new_lt8(yvy1531, yvy1541) new_lt23(yvy204, yvy206, ty_Int) -> new_lt9(yvy204, yvy206) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, Branch(yvy9040, yvy9041, yvy9042, yvy9043, yvy9044), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy9040, yvy9041, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy900, yvy901, yvy903, yvy9043, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy9044, yvy54, h, ba) new_ltEs23(yvy205, yvy207, ty_Char) -> new_ltEs15(yvy205, yvy207) new_lt26(yvy20, yvy15, ty_Float) -> new_lt11(yvy20, yvy15) new_esEs32(yvy4000, yvy3000, app(app(ty_Either, bec), bed)) -> new_esEs27(yvy4000, yvy3000, bec, bed) new_lt6(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_lt4(yvy1530, yvy1540, efd) new_primMulNat1(Succ(yvy9500)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9500)), yvy9500) new_lt22(yvy1530, yvy1540, app(ty_Ratio, bgf)) -> new_lt4(yvy1530, yvy1540, bgf) new_ltEs17(Left(yvy1530), Right(yvy1540), gae, fhb) -> True new_esEs7(yvy400, yvy300, app(ty_[], cgd)) -> new_esEs21(yvy400, yvy300, cgd) new_compare30(LT, LT) -> EQ new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs22(yvy4000, yvy3000, dbc, dbd, dbe) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Char) -> new_gt9(yvy81, yvy76) new_esEs39(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs24(yvy153, yvy154, ty_Double) -> new_ltEs16(yvy153, yvy154) new_compare16(yvy278, yvy279, yvy280, yvy281, True, beg, beh) -> LT new_ltEs20(yvy167, yvy168, ty_Bool) -> new_ltEs7(yvy167, yvy168) new_lt20(yvy191, yvy194, app(app(app(ty_@3, ef), eg), eh)) -> new_lt13(yvy191, yvy194, ef, eg, eh) new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs14(EQ, EQ) -> True new_compare17(Nothing, Nothing, bg) -> EQ new_gt14(yvy35, yvy30, app(app(ty_Either, de), df)) -> new_gt0(yvy35, yvy30, de, df) new_esEs33(yvy4000, yvy3000, app(ty_Maybe, fgd)) -> new_esEs23(yvy4000, yvy3000, fgd) new_primPlusInt(Pos(yvy9020), Pos(yvy2170)) -> Pos(new_primPlusNat0(yvy9020, yvy2170)) new_compare30(GT, GT) -> EQ new_lt11(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_esEs13(yvy1531, yvy1541, app(ty_[], eec)) -> new_esEs21(yvy1531, yvy1541, eec) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(ty_Either, gbd), gbe)) -> new_ltEs17(yvy1530, yvy1540, gbd, gbe) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_Maybe, dcb)) -> new_esEs23(yvy4000, yvy3000, dcb) new_lt6(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_lt19(yvy1530, yvy1540, egd, ege) new_lt22(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, True, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs40(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt2(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) new_ltEs23(yvy205, yvy207, ty_Float) -> new_ltEs11(yvy205, yvy207) new_esEs37(yvy204, yvy206, ty_Bool) -> new_esEs16(yvy204, yvy206) new_compare17(Just(yvy400), Nothing, bg) -> GT new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_esEs40(yvy4000, yvy3000, app(app(ty_@2, dfg), dfh)) -> new_esEs28(yvy4000, yvy3000, dfg, dfh) new_esEs5(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, ty_Int) -> new_ltEs8(yvy160, yvy161) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, gdh), gea), geb)) -> new_ltEs4(yvy1530, yvy1540, gdh, gea, geb) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs22(yvy400, yvy300, egg, egh, eha) new_lt5(yvy1531, yvy1541, ty_@0) -> new_lt7(yvy1531, yvy1541) new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dcd, dce, dcf) -> new_asAs(new_esEs40(yvy4000, yvy3000, dcd), new_asAs(new_esEs39(yvy4001, yvy3001, dce), new_esEs38(yvy4002, yvy3002, dcf))) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, new_gt3(new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) new_esEs20(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs37(yvy204, yvy206, ty_Double) -> new_esEs26(yvy204, yvy206) new_ltEs20(yvy167, yvy168, app(ty_Maybe, bbb)) -> new_ltEs13(yvy167, yvy168, bbb) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Int, fhb) -> new_ltEs8(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy167, yvy168, ty_Float) -> new_ltEs11(yvy167, yvy168) new_esEs4(yvy402, yvy302, app(ty_[], dge)) -> new_esEs21(yvy402, yvy302, dge) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare32(yvy400, yvy300, ty_@0) -> new_compare11(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, app(app(ty_Either, edf), edg)) -> new_ltEs17(yvy1532, yvy1542, edf, edg) new_lt5(yvy1531, yvy1541, ty_Ordering) -> new_lt15(yvy1531, yvy1541) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Integer, chg) -> new_esEs18(yvy4000, yvy3000) new_esEs19(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ebb) -> new_asAs(new_esEs35(yvy4000, yvy3000, ebb), new_esEs34(yvy4001, yvy3001, ebb)) new_lt26(yvy20, yvy15, ty_@0) -> new_lt7(yvy20, yvy15) new_ltEs23(yvy205, yvy207, app(app(ty_@2, cee), cef)) -> new_ltEs18(yvy205, yvy207, cee, cef) new_esEs6(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs15(yvy4000, yvy3000) new_gt6(yvy40, yvy30, bd, be, bf) -> new_esEs41(new_compare31(yvy40, yvy30, bd, be, bf)) new_esEs14(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Ordering) -> new_esEs24(yvy192, yvy195) new_lt23(yvy204, yvy206, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_lt13(yvy204, yvy206, cfa, cfb, cfc) new_esEs39(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_ltEs19(yvy193, yvy196, ty_Double) -> new_ltEs16(yvy193, yvy196) new_gt14(yvy35, yvy30, app(ty_[], cg)) -> new_gt1(yvy35, yvy30, cg) new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bbg, bbh) -> new_mkVBalBranch0(yvy45, yvy46, new_splitGT0(yvy48, yvy50, bbg, bbh), yvy49, bbg, bbh) new_esEs38(yvy4002, yvy3002, app(ty_[], dcg)) -> new_esEs21(yvy4002, yvy3002, dcg) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_[], fhd), fhb) -> new_ltEs12(yvy1530, yvy1540, fhd) new_esEs30(yvy191, yvy194, app(ty_Maybe, fa)) -> new_esEs23(yvy191, yvy194, fa) new_ltEs19(yvy193, yvy196, ty_Ordering) -> new_ltEs14(yvy193, yvy196) new_ltEs20(yvy167, yvy168, ty_@0) -> new_ltEs6(yvy167, yvy168) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs22(yvy4000, yvy3000, ccb, ccc, ccd) new_lt25(yvy40, yvy30, ty_Char) -> new_lt16(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_ltEs20(yvy167, yvy168, app(ty_Ratio, bae)) -> new_ltEs10(yvy167, yvy168, bae) new_ltEs14(EQ, GT) -> True new_esEs40(yvy4000, yvy3000, app(ty_Maybe, dgc)) -> new_esEs23(yvy4000, yvy3000, dgc) new_lt26(yvy20, yvy15, ty_Double) -> new_lt17(yvy20, yvy15) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, yvy90, False, h, ba) -> error([]) new_lt24(yvy40, yvy50, app(ty_Maybe, bg)) -> new_lt14(yvy40, yvy50, bg) new_ltEs20(yvy167, yvy168, app(app(ty_Either, bbc), bbd)) -> new_ltEs17(yvy167, yvy168, bbc, bbd) new_ltEs5(yvy1532, yvy1542, ty_Ordering) -> new_ltEs14(yvy1532, yvy1542) new_gt(yvy81, yvy76, app(app(ty_Either, fef), feg)) -> new_gt0(yvy81, yvy76, fef, feg) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs10(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs4(yvy402, yvy302, ty_@0) -> new_esEs15(yvy402, yvy302) new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_esEs21(:(yvy4000, yvy4001), [], eba) -> False new_esEs21([], :(yvy3000, yvy3001), eba) -> False new_ltEs14(LT, GT) -> True new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_ltEs21(yvy1531, yvy1541, ty_Char) -> new_ltEs15(yvy1531, yvy1541) new_ltEs14(GT, GT) -> True new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs10(yvy401, yvy301, app(app(ty_Either, fbh), fca)) -> new_esEs27(yvy401, yvy301, fbh, fca) new_esEs33(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_compare11(@0, @0) -> EQ new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_ltEs5(yvy1532, yvy1542, app(ty_Ratio, ech)) -> new_ltEs10(yvy1532, yvy1542, ech) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, app(ty_Maybe, eag)) -> new_esEs23(yvy401, yvy301, eag) new_ltEs5(yvy1532, yvy1542, ty_@0) -> new_ltEs6(yvy1532, yvy1542) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_[], gdg)) -> new_ltEs12(yvy1530, yvy1540, gdg) new_lt23(yvy204, yvy206, ty_Float) -> new_lt11(yvy204, yvy206) new_gt14(yvy35, yvy30, ty_Char) -> new_gt9(yvy35, yvy30) new_ltEs22(yvy160, yvy161, app(ty_Ratio, cab)) -> new_ltEs10(yvy160, yvy161, cab) new_gt(yvy81, yvy76, app(ty_[], fea)) -> new_gt1(yvy81, yvy76, fea) new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs22(yvy4001, yvy3001, bcd, bce, bcf) new_ltEs22(yvy160, yvy161, app(app(ty_Either, cah), cba)) -> new_ltEs17(yvy160, yvy161, cah, cba) new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_ltEs22(yvy160, yvy161, ty_Double) -> new_ltEs16(yvy160, yvy161) new_lt22(yvy1530, yvy1540, app(ty_Maybe, bhc)) -> new_lt14(yvy1530, yvy1540, bhc) new_esEs14(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_esEs19(yvy1530, yvy1540, efd) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare29(False, False) -> EQ new_esEs38(yvy4002, yvy3002, app(ty_Ratio, ddh)) -> new_esEs19(yvy4002, yvy3002, ddh) new_lt26(yvy20, yvy15, ty_Bool) -> new_lt8(yvy20, yvy15) new_esEs33(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt6(yvy1530, yvy1540, app(ty_[], efe)) -> new_lt12(yvy1530, yvy1540, efe) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bbg, bbh) -> yvy49 new_esEs7(yvy400, yvy300, app(ty_Maybe, chd)) -> new_esEs23(yvy400, yvy300, chd) new_ltEs21(yvy1531, yvy1541, ty_Double) -> new_ltEs16(yvy1531, yvy1541) new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs12(LT) -> True new_esEs13(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_esEs28(yvy1531, yvy1541, efb, efc) new_esEs6(yvy400, yvy300, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs22(yvy400, yvy300, dcd, dce, dcf) new_gt0(yvy40, yvy30, bh, ca) -> new_esEs41(new_compare7(yvy40, yvy30, bh, ca)) new_esEs7(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_[], hb)) -> new_lt12(yvy192, yvy195, hb) new_lt26(yvy20, yvy15, app(app(ty_Either, gda), gdb)) -> new_lt18(yvy20, yvy15, gda, gdb) new_ltEs20(yvy167, yvy168, ty_Integer) -> new_ltEs9(yvy167, yvy168) new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) new_esEs40(yvy4000, yvy3000, app(ty_[], dfc)) -> new_esEs21(yvy4000, yvy3000, dfc) new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) new_esEs4(yvy402, yvy302, ty_Bool) -> new_esEs16(yvy402, yvy302) new_ltEs19(yvy193, yvy196, ty_Char) -> new_ltEs15(yvy193, yvy196) new_lt23(yvy204, yvy206, ty_Ordering) -> new_lt15(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs22(yvy401, yvy301, dhh, eaa, eab) new_gt15(yvy40, yvy30, ty_Int) -> new_gt3(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs4(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), ece, ecf, ecg) -> new_pePe(new_lt6(yvy1530, yvy1540, ece), new_asAs(new_esEs14(yvy1530, yvy1540, ece), new_pePe(new_lt5(yvy1531, yvy1541, ecf), new_asAs(new_esEs13(yvy1531, yvy1541, ecf), new_ltEs5(yvy1532, yvy1542, ecg))))) new_lt20(yvy191, yvy194, ty_Integer) -> new_lt10(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(ty_Either, dbh), dca)) -> new_esEs27(yvy4000, yvy3000, dbh, dca) new_esEs37(yvy204, yvy206, ty_Int) -> new_esEs17(yvy204, yvy206) new_lt5(yvy1531, yvy1541, ty_Integer) -> new_lt10(yvy1531, yvy1541) new_ltEs10(yvy153, yvy154, cbf) -> new_fsEs(new_compare5(yvy153, yvy154, cbf)) new_esEs29(yvy192, yvy195, app(app(app(ty_@3, hc), hd), he)) -> new_esEs22(yvy192, yvy195, hc, hd, he) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(ty_@2, gbf), gbg)) -> new_ltEs18(yvy1530, yvy1540, gbf, gbg) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, EmptyFM, False, h, ba) -> error([]) new_compare29(True, False) -> GT new_esEs40(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_mkBalBranch(yvy50, yvy51, yvy90, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, new_lt9(new_primPlusInt(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_gt12(yvy40, yvy30) -> new_esEs41(new_compare11(yvy40, yvy30)) new_esEs14(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_lt26(yvy20, yvy15, app(ty_[], gcc)) -> new_lt12(yvy20, yvy15, gcc) new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_esEs31(yvy4001, yvy3001, app(ty_Maybe, bdc)) -> new_esEs23(yvy4001, yvy3001, bdc) new_esEs4(yvy402, yvy302, app(ty_Maybe, dhe)) -> new_esEs23(yvy402, yvy302, dhe) new_gt(yvy81, yvy76, ty_Bool) -> new_gt8(yvy81, yvy76) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, cd, ce) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, cd, ce) new_compare7(Left(yvy400), Right(yvy300), bh, ca) -> LT new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs12(GT) -> False new_esEs14(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs12(EQ) -> False new_esEs13(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_esEs27(yvy1531, yvy1541, eeh, efa) new_lt24(yvy40, yvy50, ty_Char) -> new_lt16(yvy40, yvy50) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, yvy270, cga, cgb, cgc) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, yvy270, cga, cgb, cgc) new_addToFM_C10(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, True, gfc, gfd) -> new_mkBalBranch(yvy105, yvy106, yvy108, new_addToFM_C0(yvy109, yvy110, yvy111, gfc, gfd), gfc, gfd) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Ratio, gdf)) -> new_ltEs10(yvy1530, yvy1540, gdf) new_lt23(yvy204, yvy206, app(app(ty_Either, cfe), cff)) -> new_lt18(yvy204, yvy206, cfe, cff) new_esEs39(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_Ratio, gaf)) -> new_ltEs10(yvy1530, yvy1540, gaf) new_lt21(yvy192, yvy195, ty_Ordering) -> new_lt15(yvy192, yvy195) new_lt20(yvy191, yvy194, ty_Float) -> new_lt11(yvy191, yvy194) new_esEs38(yvy4002, yvy3002, app(app(ty_Either, dde), ddf)) -> new_esEs27(yvy4002, yvy3002, dde, ddf) new_primPlusInt(Neg(yvy9020), Neg(yvy2170)) -> Neg(new_primPlusNat0(yvy9020, yvy2170)) new_esEs10(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_esEs37(yvy204, yvy206, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs22(yvy204, yvy206, cfa, cfb, cfc) new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs32(yvy4000, yvy3000, app(app(ty_@2, bea), beb)) -> new_esEs28(yvy4000, yvy3000, bea, beb) new_esEs5(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_lt25(yvy40, yvy30, ty_@0) -> new_lt7(yvy40, yvy30) new_esEs36(yvy1530, yvy1540, app(app(ty_@2, bhf), bhg)) -> new_esEs28(yvy1530, yvy1540, bhf, bhg) new_mkBranch(yvy323, yvy324, yvy325, yvy326, yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg) -> new_mkBranchResult(yvy324, yvy325, yvy326, new_mkBranch0(yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg), fgf, fgg) new_lt5(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_lt13(yvy1531, yvy1541, eed, eee, eef) new_esEs10(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt11(yvy35, yvy30) new_compare0([], :(yvy300, yvy301), bc) -> LT new_gt15(yvy40, yvy30, app(ty_Maybe, bg)) -> new_gt4(yvy40, yvy30, bg) new_compare32(yvy400, yvy300, ty_Bool) -> new_compare29(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Bool) -> new_esEs16(yvy1531, yvy1541) new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, app(ty_Ratio, ed)) -> new_esEs19(yvy191, yvy194, ed) new_ltEs16(yvy153, yvy154) -> new_fsEs(new_compare18(yvy153, yvy154)) new_esEs5(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, yvy60, yvy61, yvy62, yvy63, yvy64, yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs13(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_esEs19(yvy1531, yvy1541, eeb) new_lt20(yvy191, yvy194, ty_Bool) -> new_lt8(yvy191, yvy194) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_ltEs23(yvy205, yvy207, app(ty_[], cdf)) -> new_ltEs12(yvy205, yvy207, cdf) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Integer, fhb) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_esEs14(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ccg), cch)) -> new_esEs27(yvy4000, yvy3000, ccg, cch) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_esEs40(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs38(yvy4002, yvy3002, ty_Bool) -> new_esEs16(yvy4002, yvy3002) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_Ratio, dcc)) -> new_esEs19(yvy4000, yvy3000, dcc) new_esEs30(yvy191, yvy194, ty_Bool) -> new_esEs16(yvy191, yvy194) new_esEs5(yvy401, yvy301, app(ty_[], dhg)) -> new_esEs21(yvy401, yvy301, dhg) new_compare8(@2(yvy400, yvy401), @2(yvy300, yvy301), cb, cc) -> new_compare28(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cb), new_esEs10(yvy401, yvy301, cc)), cb, cc) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, EmptyFM, yvy90, True, h, ba) -> error([]) new_gt15(yvy40, yvy30, ty_Char) -> new_gt9(yvy40, yvy30) new_lt21(yvy192, yvy195, ty_@0) -> new_lt7(yvy192, yvy195) new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) new_esEs33(yvy4000, yvy3000, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs22(yvy4000, yvy3000, ffe, fff, ffg) new_esEs21([], [], eba) -> True new_esEs10(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs39(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, app(app(ty_Either, dba), chg)) -> new_esEs27(yvy400, yvy300, dba, chg) new_ltEs13(Nothing, Nothing, gde) -> True new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Nothing, gde) -> False new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_esEs29(yvy192, yvy195, ty_Int) -> new_esEs17(yvy192, yvy195) new_lt22(yvy1530, yvy1540, app(ty_[], bgg)) -> new_lt12(yvy1530, yvy1540, bgg) new_gt14(yvy35, yvy30, app(app(app(ty_@3, da), db), dc)) -> new_gt6(yvy35, yvy30, da, db, dc) new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_ltEs23(yvy205, yvy207, app(ty_Ratio, cde)) -> new_ltEs10(yvy205, yvy207, cde) new_esEs10(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs4(yvy402, yvy302, ty_Float) -> new_esEs20(yvy402, yvy302) new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, gbh, gca) -> new_splitGT0(yvy19, yvy20, gbh, gca) new_lt12(yvy40, yvy30, bc) -> new_esEs12(new_compare0(yvy40, yvy30, bc)) new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs22(yvy4000, yvy3000, bdf, bdg, bdh) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare25(yvy160, yvy161, False, bhh, caa) -> new_compare19(yvy160, yvy161, new_ltEs22(yvy160, yvy161, bhh), bhh, caa) new_compare30(GT, EQ) -> GT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dac), dad), chg) -> new_esEs28(yvy4000, yvy3000, dac, dad) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Float, fhb) -> new_ltEs11(yvy1530, yvy1540) new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) new_esEs29(yvy192, yvy195, app(ty_Ratio, ha)) -> new_esEs19(yvy192, yvy195, ha) new_esEs4(yvy402, yvy302, ty_Ordering) -> new_esEs24(yvy402, yvy302) new_lt21(yvy192, yvy195, app(ty_Maybe, hf)) -> new_lt14(yvy192, yvy195, hf) new_ltEs24(yvy153, yvy154, app(ty_Ratio, cbf)) -> new_ltEs10(yvy153, yvy154, cbf) new_esEs40(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy192, yvy195, ty_Int) -> new_lt9(yvy192, yvy195) new_compare29(False, True) -> LT new_lt25(yvy40, yvy30, ty_Bool) -> new_lt8(yvy40, yvy30) new_esEs11(yvy400, yvy300, app(ty_Maybe, fdd)) -> new_esEs23(yvy400, yvy300, fdd) new_compare210(yvy153, yvy154, False, geh) -> new_compare110(yvy153, yvy154, new_ltEs24(yvy153, yvy154, geh), geh) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba) new_esEs15(@0, @0) -> True new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt20(yvy191, yvy194, app(ty_Maybe, fa)) -> new_lt14(yvy191, yvy194, fa) new_esEs10(yvy401, yvy301, app(ty_Maybe, fcb)) -> new_esEs23(yvy401, yvy301, fcb) new_lt24(yvy40, yvy50, ty_Bool) -> new_lt8(yvy40, yvy50) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, EmptyFM, True, h, ba) -> error([]) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt6(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, app(ty_[], eda)) -> new_ltEs12(yvy1532, yvy1542, eda) new_ltEs7(True, True) -> True new_gt9(yvy40, yvy30) -> new_esEs41(new_compare12(yvy40, yvy30)) new_esEs6(yvy400, yvy300, app(ty_[], eba)) -> new_esEs21(yvy400, yvy300, eba) new_lt20(yvy191, yvy194, ty_@0) -> new_lt7(yvy191, yvy194) new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs11(yvy400, yvy300, app(app(ty_@2, fch), fda)) -> new_esEs28(yvy400, yvy300, fch, fda) new_lt22(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs16(True, True) -> True new_esEs7(yvy400, yvy300, app(app(ty_Either, chb), chc)) -> new_esEs27(yvy400, yvy300, chb, chc) new_esEs10(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs14(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs41(GT) -> True new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Ratio, fhc), fhb) -> new_ltEs10(yvy1530, yvy1540, fhc) new_compare28(yvy204, yvy205, yvy206, yvy207, False, cdc, cdd) -> new_compare15(yvy204, yvy205, yvy206, yvy207, new_lt23(yvy204, yvy206, cdc), new_asAs(new_esEs37(yvy204, yvy206, cdc), new_ltEs23(yvy205, yvy207, cdd)), cdc, cdd) new_mkBranch0(yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg) -> new_mkBranchResult(yvy328, yvy329, yvy330, yvy331, fgf, fgg) new_esEs14(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_esEs27(yvy1530, yvy1540, egb, egc) new_lt24(yvy40, yvy50, app(app(ty_Either, bh), ca)) -> new_lt18(yvy40, yvy50, bh, ca) new_esEs38(yvy4002, yvy3002, ty_@0) -> new_esEs15(yvy4002, yvy3002) new_gt14(yvy35, yvy30, ty_Bool) -> new_gt8(yvy35, yvy30) new_esEs37(yvy204, yvy206, app(app(ty_Either, cfe), cff)) -> new_esEs27(yvy204, yvy206, cfe, cff) new_lt20(yvy191, yvy194, ty_Ordering) -> new_lt15(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(ty_@2, dbf), dbg)) -> new_esEs28(yvy4000, yvy3000, dbf, dbg) new_lt21(yvy192, yvy195, ty_Float) -> new_lt11(yvy192, yvy195) new_lt21(yvy192, yvy195, ty_Bool) -> new_lt8(yvy192, yvy195) new_esEs10(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs38(yvy4002, yvy3002, ty_Char) -> new_esEs25(yvy4002, yvy3002) new_esEs10(yvy401, yvy301, app(app(ty_@2, fbf), fbg)) -> new_esEs28(yvy401, yvy301, fbf, fbg) new_compare13(yvy250, yvy251, True, gfa, gfb) -> LT new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_esEs33(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs28(yvy4000, yvy3000, ffh, fga) new_gt15(yvy40, yvy30, ty_Bool) -> new_gt8(yvy40, yvy30) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs25(yvy4000, yvy3000) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs24(yvy153, yvy154, app(ty_[], bfa)) -> new_ltEs12(yvy153, yvy154, bfa) new_esEs33(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs4(yvy402, yvy302, ty_Integer) -> new_esEs18(yvy402, yvy302) new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_lt25(yvy40, yvy30, app(ty_[], bc)) -> new_lt12(yvy40, yvy30, bc) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, new_gt3(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) new_esEs13(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs22(yvy1531, yvy1541, eed, eee, eef) new_esEs29(yvy192, yvy195, ty_Double) -> new_esEs26(yvy192, yvy195) new_esEs13(yvy1531, yvy1541, ty_@0) -> new_esEs15(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_lt22(yvy1530, yvy1540, app(app(ty_Either, bhd), bhe)) -> new_lt18(yvy1530, yvy1540, bhd, bhe) new_compare0(:(yvy400, yvy401), [], bc) -> GT new_compare32(yvy400, yvy300, app(ty_[], ebd)) -> new_compare0(yvy400, yvy300, ebd) new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_esEs31(yvy4001, yvy3001, app(ty_Ratio, bdd)) -> new_esEs19(yvy4001, yvy3001, bdd) new_esEs39(yvy4001, yvy3001, app(app(ty_Either, deg), deh)) -> new_esEs27(yvy4001, yvy3001, deg, deh) new_compare32(yvy400, yvy300, ty_Float) -> new_compare9(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_esEs23(yvy1530, yvy1540, ega) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_[], gag)) -> new_ltEs12(yvy1530, yvy1540, gag) new_esEs14(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Double) -> new_esEs26(yvy191, yvy194) new_esEs37(yvy204, yvy206, ty_Ordering) -> new_esEs24(yvy204, yvy206) new_gt15(yvy40, yvy30, ty_Integer) -> new_gt10(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Float) -> new_esEs20(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_lt18(yvy1531, yvy1541, eeh, efa) new_lt20(yvy191, yvy194, ty_Int) -> new_lt9(yvy191, yvy194) new_esEs37(yvy204, yvy206, app(ty_Maybe, cfd)) -> new_esEs23(yvy204, yvy206, cfd) new_esEs36(yvy1530, yvy1540, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs22(yvy1530, yvy1540, bgh, bha, bhb) new_esEs4(yvy402, yvy302, ty_Char) -> new_esEs25(yvy402, yvy302) new_esEs26(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs29(yvy192, yvy195, app(app(ty_@2, baa), bab)) -> new_esEs28(yvy192, yvy195, baa, bab) new_lt24(yvy40, yvy50, ty_@0) -> new_lt7(yvy40, yvy50) new_lt20(yvy191, yvy194, app(app(ty_Either, fb), fc)) -> new_lt18(yvy191, yvy194, fb, fc) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, True, h, ba) -> new_mkBranchResult(yvy540, yvy541, new_mkBranchResult(yvy50, yvy51, yvy90, yvy543, h, ba), yvy544, h, ba) new_lt5(yvy1531, yvy1541, ty_Int) -> new_lt9(yvy1531, yvy1541) new_esEs36(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Int) -> new_esEs17(yvy191, yvy194) new_lt8(yvy40, yvy30) -> new_esEs12(new_compare29(yvy40, yvy30)) new_compare13(yvy250, yvy251, False, gfa, gfb) -> GT new_esEs11(yvy400, yvy300, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs22(yvy400, yvy300, fce, fcf, fcg) new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs38(yvy4002, yvy3002, ty_Integer) -> new_esEs18(yvy4002, yvy3002) new_esEs13(yvy1531, yvy1541, ty_Char) -> new_esEs25(yvy1531, yvy1541) new_esEs10(yvy401, yvy301, app(ty_Ratio, fcc)) -> new_esEs19(yvy401, yvy301, fcc) new_esEs36(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, app(ty_Ratio, fge)) -> new_esEs19(yvy4000, yvy3000, fge) new_lt10(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) new_lt23(yvy204, yvy206, ty_Bool) -> new_lt8(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Integer) -> new_esEs18(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(ty_[], egf)) -> new_esEs21(yvy400, yvy300, egf) new_primCompAux1(yvy400, yvy300, yvy114, bc) -> new_primCompAux0(yvy114, new_compare32(yvy400, yvy300, bc)) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs37(yvy204, yvy206, ty_Integer) -> new_esEs18(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(ty_Either, eae), eaf)) -> new_esEs27(yvy401, yvy301, eae, eaf) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Char, fhb) -> new_ltEs15(yvy1530, yvy1540) new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, gbh, gca) -> new_splitGT10(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, gbh), gbh, gca) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_@2, gef), geg)) -> new_ltEs18(yvy1530, yvy1540, gef, geg) new_lt22(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_lt20(yvy191, yvy194, ty_Char) -> new_lt16(yvy191, yvy194) new_esEs40(yvy4000, yvy3000, app(app(ty_Either, dga), dgb)) -> new_esEs27(yvy4000, yvy3000, dga, dgb) new_esEs16(False, False) -> True new_gt(yvy81, yvy76, app(ty_Maybe, fee)) -> new_gt4(yvy81, yvy76, fee) new_ltEs21(yvy1531, yvy1541, app(ty_[], bfe)) -> new_ltEs12(yvy1531, yvy1541, bfe) new_esEs38(yvy4002, yvy3002, ty_Float) -> new_esEs20(yvy4002, yvy3002) new_splitGT0(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, gbh, gca) -> new_splitGT30(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, gbh, gca) new_primMinusNat0(Zero, Succ(yvy21700)) -> Neg(Succ(yvy21700)) new_esEs4(yvy402, yvy302, app(app(ty_Either, dhc), dhd)) -> new_esEs27(yvy402, yvy302, dhc, dhd) new_gt(yvy81, yvy76, app(app(app(ty_@3, feb), fec), fed)) -> new_gt6(yvy81, yvy76, feb, fec, fed) new_esEs21(:(yvy4000, yvy4001), :(yvy3000, yvy3001), eba) -> new_asAs(new_esEs33(yvy4000, yvy3000, eba), new_esEs21(yvy4001, yvy3001, eba)) new_compare32(yvy400, yvy300, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_compare31(yvy400, yvy300, ebe, ebf, ebg) new_esEs14(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_mkBranch1(yvy116, yvy117, yvy118, yvy119, yvy120, yvy121, yvy122, yvy123, yvy124, yvy125, yvy126, yvy127, yvy128, fgh, fha) -> Branch(yvy117, yvy118, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(Branch(yvy119, yvy120, yvy121, yvy122, yvy123), fgh, fha)), new_sizeFM0(Branch(yvy124, yvy125, yvy126, yvy127, yvy128), fgh, fha)), Branch(yvy119, yvy120, yvy121, yvy122, yvy123), Branch(yvy124, yvy125, yvy126, yvy127, yvy128)) new_esEs36(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, True, ea, eb, ec) -> EQ new_gt15(yvy40, yvy30, app(app(app(ty_@3, bd), be), bf)) -> new_gt6(yvy40, yvy30, bd, be, bf) new_ltEs17(Right(yvy1530), Left(yvy1540), gae, fhb) -> False new_esEs36(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, ty_Float) -> new_esEs20(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_[], cac)) -> new_ltEs12(yvy160, yvy161, cac) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Ordering, fhb) -> new_ltEs14(yvy1530, yvy1540) new_lt21(yvy192, yvy195, app(app(ty_Either, hg), hh)) -> new_lt18(yvy192, yvy195, hg, hh) new_lt6(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_compare110(yvy234, yvy235, True, cbg) -> LT new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Ordering) -> new_gt11(yvy81, yvy76) new_esEs31(yvy4001, yvy3001, app(app(ty_@2, bcg), bch)) -> new_esEs28(yvy4001, yvy3001, bcg, bch) new_ltEs14(LT, LT) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_@0, fhb) -> new_ltEs6(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_esEs23(yvy1531, yvy1541, eeg) new_esEs36(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_ltEs13(Nothing, Just(yvy1540), gde) -> True new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt11(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Ordering) -> new_esEs24(yvy1531, yvy1541) new_gt14(yvy35, yvy30, app(ty_Maybe, dd)) -> new_gt4(yvy35, yvy30, dd) new_lt15(yvy40, yvy30) -> new_esEs12(new_compare30(yvy40, yvy30)) new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) new_esEs36(yvy1530, yvy1540, app(ty_Maybe, bhc)) -> new_esEs23(yvy1530, yvy1540, bhc) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs9(yvy400, yvy300, app(ty_[], ehh)) -> new_esEs21(yvy400, yvy300, ehh) new_lt23(yvy204, yvy206, ty_@0) -> new_lt7(yvy204, yvy206) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) new_lt6(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_lt18(yvy1530, yvy1540, egb, egc) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs21(yvy1531, yvy1541, ty_@0) -> new_ltEs6(yvy1531, yvy1541) new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt4(yvy40, yvy30, bb) -> new_esEs12(new_compare5(yvy40, yvy30, bb)) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, app(ty_[], dea)) -> new_esEs21(yvy4001, yvy3001, dea) new_ltEs5(yvy1532, yvy1542, ty_Char) -> new_ltEs15(yvy1532, yvy1542) new_lt22(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Maybe, gec)) -> new_ltEs13(yvy1530, yvy1540, gec) new_ltEs11(yvy153, yvy154) -> new_fsEs(new_compare9(yvy153, yvy154)) new_ltEs19(yvy193, yvy196, ty_Bool) -> new_ltEs7(yvy193, yvy196) new_lt22(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_splitGT0(EmptyFM, yvy20, gbh, gca) -> new_emptyFM(gbh, gca) new_esEs7(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs37(yvy204, yvy206, ty_Char) -> new_esEs25(yvy204, yvy206) new_gt14(yvy35, yvy30, ty_Int) -> new_gt3(yvy35, yvy30) new_esEs36(yvy1530, yvy1540, app(app(ty_Either, bhd), bhe)) -> new_esEs27(yvy1530, yvy1540, bhd, bhe) new_esEs32(yvy4000, yvy3000, app(ty_Ratio, bef)) -> new_esEs19(yvy4000, yvy3000, bef) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_gt15(yvy40, yvy30, app(app(ty_Either, bh), ca)) -> new_gt0(yvy40, yvy30, bh, ca) new_gt(yvy81, yvy76, ty_Integer) -> new_gt10(yvy81, yvy76) new_gt14(yvy35, yvy30, ty_Integer) -> new_gt10(yvy35, yvy30) new_compare29(True, True) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bc) -> new_primCompAux1(yvy400, yvy300, new_compare0(yvy401, yvy301, bc), bc) new_esEs38(yvy4002, yvy3002, ty_Double) -> new_esEs26(yvy4002, yvy3002) new_esEs5(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_ltEs8(yvy153, yvy154) -> new_fsEs(new_compare6(yvy153, yvy154)) new_lt24(yvy40, yvy50, app(app(app(ty_@3, bd), be), bf)) -> new_lt13(yvy40, yvy50, bd, be, bf) new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy90, h, ba) new_esEs36(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs38(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) new_esEs14(yvy1530, yvy1540, app(ty_[], efe)) -> new_esEs21(yvy1530, yvy1540, efe) new_esEs40(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs33(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_compare28(yvy204, yvy205, yvy206, yvy207, True, cdc, cdd) -> EQ new_primCompAux0(yvy132, GT) -> GT new_lt6(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_splitLT0(EmptyFM, yvy35, cd, ce) -> new_emptyFM(cd, ce) new_esEs33(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy900, yvy901, yvy903, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy904, yvy54, h, ba) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt25(yvy40, yvy30, app(app(ty_Either, bh), ca)) -> new_lt18(yvy40, yvy30, bh, ca) new_lt26(yvy20, yvy15, ty_Char) -> new_lt16(yvy20, yvy15) new_esEs9(yvy400, yvy300, app(ty_Ratio, fba)) -> new_esEs19(yvy400, yvy300, fba) new_esEs29(yvy192, yvy195, app(ty_[], hb)) -> new_esEs21(yvy192, yvy195, hb) new_lt23(yvy204, yvy206, app(ty_Ratio, ceg)) -> new_lt4(yvy204, yvy206, ceg) new_sr1(Neg(yvy950)) -> Neg(new_primMulNat1(yvy950)) new_lt6(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_compare19(yvy241, yvy242, True, cbd, cbe) -> LT new_esEs23(Nothing, Just(yvy3000), cbh) -> False new_esEs23(Just(yvy4000), Nothing, cbh) -> False new_lt7(yvy40, yvy30) -> new_esEs12(new_compare11(yvy40, yvy30)) new_lt6(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_gt(yvy81, yvy76, ty_Float) -> new_gt13(yvy81, yvy76) new_gt10(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, fdf, fdg) -> new_addToFM_C10(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, fdf), fdf, fdg) new_esEs13(yvy1531, yvy1541, ty_Double) -> new_esEs26(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, ty_Char) -> new_lt16(yvy1531, yvy1541) new_esEs24(GT, GT) -> True new_lt5(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_lt4(yvy1531, yvy1541, eeb) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_lt14(yvy1531, yvy1541, eeg) new_ltEs20(yvy167, yvy168, ty_Ordering) -> new_ltEs14(yvy167, yvy168) new_compare17(Just(yvy400), Just(yvy300), bg) -> new_compare210(yvy400, yvy300, new_esEs7(yvy400, yvy300, bg), bg) new_gt3(yvy40, yvy30) -> new_esEs41(new_compare6(yvy40, yvy30)) new_ltEs24(yvy153, yvy154, ty_Float) -> new_ltEs11(yvy153, yvy154) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(yvy167, yvy168, app(ty_[], baf)) -> new_ltEs12(yvy167, yvy168, baf) new_esEs10(yvy401, yvy301, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs22(yvy401, yvy301, fbc, fbd, fbe) new_lt6(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt8(yvy40, yvy30) -> new_esEs41(new_compare29(yvy40, yvy30)) new_gt14(yvy35, yvy30, ty_Float) -> new_gt13(yvy35, yvy30) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs19(yvy193, yvy196, ty_@0) -> new_ltEs6(yvy193, yvy196) new_esEs23(Nothing, Nothing, cbh) -> True new_compare32(yvy400, yvy300, ty_Ordering) -> new_compare30(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_@2, dee), def)) -> new_esEs28(yvy4001, yvy3001, dee, def) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Integer) -> new_esEs18(yvy192, yvy195) new_compare7(Left(yvy400), Left(yvy300), bh, ca) -> new_compare25(yvy400, yvy300, new_esEs8(yvy400, yvy300, bh), bh, ca) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cce), ccf)) -> new_esEs28(yvy4000, yvy3000, cce, ccf) new_esEs7(yvy400, yvy300, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs22(yvy400, yvy300, cge, cgf, cgg) new_esEs33(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Char) -> new_lt16(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, chh), daa), dab), chg) -> new_esEs22(yvy4000, yvy3000, chh, daa, dab) new_compare32(yvy400, yvy300, ty_Char) -> new_compare12(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, app(app(ty_Either, bda), bdb)) -> new_esEs27(yvy4001, yvy3001, bda, bdb) new_addToFM_C0(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, h, ba) -> new_addToFM_C20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, h), h, ba) new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, cd, ce) -> new_splitLT10(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, cd), cd, ce) new_gt15(yvy40, yvy30, app(app(ty_@2, cb), cc)) -> new_gt5(yvy40, yvy30, cb, cc) new_primMinusNat0(Succ(yvy90200), Zero) -> Pos(Succ(yvy90200)) new_esEs4(yvy402, yvy302, app(ty_Ratio, dhf)) -> new_esEs19(yvy402, yvy302, dhf) new_gt5(yvy40, yvy30, cb, cc) -> new_esEs41(new_compare8(yvy40, yvy30, cb, cc)) new_fsEs(yvy295) -> new_not(new_esEs24(yvy295, GT)) new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy4002, yvy3002, ty_Ordering) -> new_esEs24(yvy4002, yvy3002) new_lt6(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs14(EQ, LT) -> False new_compare32(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare32(yvy400, yvy300, app(ty_Maybe, ebh)) -> new_compare17(yvy400, yvy300, ebh) new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs22(yvy160, yvy161, ty_Char) -> new_ltEs15(yvy160, yvy161) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cda)) -> new_esEs23(yvy4000, yvy3000, cda) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dag), chg) -> new_esEs23(yvy4000, yvy3000, dag) new_ltEs22(yvy160, yvy161, ty_Integer) -> new_ltEs9(yvy160, yvy161) new_ltEs23(yvy205, yvy207, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs4(yvy205, yvy207, cdg, cdh, cea) new_lt23(yvy204, yvy206, app(ty_[], ceh)) -> new_lt12(yvy204, yvy206, ceh) new_esEs24(LT, LT) -> True new_esEs33(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_lt20(yvy191, yvy194, app(app(ty_@2, fd), ff)) -> new_lt19(yvy191, yvy194, fd, ff) new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_esEs38(yvy4002, yvy3002, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(yvy4002, yvy3002, dch, dda, ddb) new_addToFM_C10(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, False, gfc, gfd) -> Branch(yvy110, yvy111, yvy107, yvy108, yvy109) new_ltEs15(yvy153, yvy154) -> new_fsEs(new_compare12(yvy153, yvy154)) new_pePe(False, yvy294) -> yvy294 new_ltEs23(yvy205, yvy207, ty_Int) -> new_ltEs8(yvy205, yvy207) new_gt(yvy81, yvy76, ty_@0) -> new_gt12(yvy81, yvy76) new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_compare25(yvy160, yvy161, True, bhh, caa) -> EQ new_gt14(yvy35, yvy30, ty_@0) -> new_gt12(yvy35, yvy30) new_compare210(yvy153, yvy154, True, geh) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba) new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_primMinusNat0(Succ(yvy90200), Succ(yvy21700)) -> new_primMinusNat0(yvy90200, yvy21700) new_compare32(yvy400, yvy300, app(app(ty_Either, eca), ecb)) -> new_compare7(yvy400, yvy300, eca, ecb) new_esEs39(yvy4001, yvy3001, app(ty_Maybe, dfa)) -> new_esEs23(yvy4001, yvy3001, dfa) new_lt22(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt13(yvy40, yvy30, bd, be, bf) -> new_esEs12(new_compare31(yvy40, yvy30, bd, be, bf)) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_[], cca)) -> new_esEs21(yvy4000, yvy3000, cca) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, eb, ec) -> new_compare10(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, new_lt20(yvy191, yvy194, ea), new_asAs(new_esEs30(yvy191, yvy194, ea), new_pePe(new_lt21(yvy192, yvy195, eb), new_asAs(new_esEs29(yvy192, yvy195, eb), new_ltEs19(yvy193, yvy196, ec)))), ea, eb, ec) new_lt5(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_lt19(yvy1531, yvy1541, efb, efc) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt22(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), yvy90, True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, new_lt9(new_sizeFM0(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba))), h, ba) new_ltEs19(yvy193, yvy196, app(app(ty_Either, ge), gf)) -> new_ltEs17(yvy193, yvy196, ge, gf) new_lt6(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_lt13(yvy1530, yvy1540, eff, efg, efh) new_gt7(yvy40, yvy30, bb) -> new_esEs41(new_compare5(yvy40, yvy30, bb)) new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) -> Branch(yvy50, yvy51, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(yvy90, h, ba)), new_sizeFM0(yvy54, h, ba)), yvy90, yvy54) new_esEs7(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs4(yvy402, yvy302, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs22(yvy402, yvy302, dgf, dgg, dgh) new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs8(yvy400, yvy300, app(app(ty_Either, ehd), ehe)) -> new_esEs27(yvy400, yvy300, ehd, ehe) new_ltEs5(yvy1532, yvy1542, app(ty_Maybe, ede)) -> new_ltEs13(yvy1532, yvy1542, ede) new_ltEs14(GT, EQ) -> False new_ltEs22(yvy160, yvy161, ty_Float) -> new_ltEs11(yvy160, yvy161) new_gt4(yvy40, yvy30, bg) -> new_esEs41(new_compare17(yvy40, yvy30, bg)) new_ltEs20(yvy167, yvy168, ty_Double) -> new_ltEs16(yvy167, yvy168) new_compare30(LT, GT) -> LT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dae), daf), chg) -> new_esEs27(yvy4000, yvy3000, dae, daf) new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(app(app(ty_@3, hc), hd), he)) -> new_lt13(yvy192, yvy195, hc, hd, he) new_esEs28(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bca, bcb) -> new_asAs(new_esEs32(yvy4000, yvy3000, bca), new_esEs31(yvy4001, yvy3001, bcb)) new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, ty_Float) -> new_ltEs11(yvy1532, yvy1542) new_ltEs19(yvy193, yvy196, app(ty_Ratio, fg)) -> new_ltEs10(yvy193, yvy196, fg) new_compare15(yvy278, yvy279, yvy280, yvy281, True, yvy283, beg, beh) -> new_compare16(yvy278, yvy279, yvy280, yvy281, True, beg, beh) new_esEs29(yvy192, yvy195, ty_Bool) -> new_esEs16(yvy192, yvy195) new_esEs32(yvy4000, yvy3000, app(ty_Maybe, bee)) -> new_esEs23(yvy4000, yvy3000, bee) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_Either, gaa), gab), fhb) -> new_ltEs17(yvy1530, yvy1540, gaa, gab) new_ltEs12(yvy153, yvy154, bfa) -> new_fsEs(new_compare0(yvy153, yvy154, bfa)) new_esEs33(yvy4000, yvy3000, app(app(ty_Either, fgb), fgc)) -> new_esEs27(yvy4000, yvy3000, fgb, fgc) new_esEs18(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_gt15(yvy40, yvy30, app(ty_Ratio, bb)) -> new_gt7(yvy40, yvy30, bb) new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt15(yvy40, yvy50) new_ltEs23(yvy205, yvy207, app(app(ty_Either, cec), ced)) -> new_ltEs17(yvy205, yvy207, cec, ced) new_lt23(yvy204, yvy206, ty_Char) -> new_lt16(yvy204, yvy206) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdb)) -> new_esEs19(yvy4000, yvy3000, cdb) new_esEs10(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_esEs40(yvy4000, yvy3000, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs22(yvy4000, yvy3000, dfd, dfe, dff) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Double, chg) -> new_esEs26(yvy4000, yvy3000) new_esEs36(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs23(yvy205, yvy207, ty_Double) -> new_ltEs16(yvy205, yvy207) new_esEs29(yvy192, yvy195, app(ty_Maybe, hf)) -> new_esEs23(yvy192, yvy195, hf) new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_ltEs7(False, True) -> True new_esEs30(yvy191, yvy194, ty_Ordering) -> new_esEs24(yvy191, yvy194) new_primMulNat1(Zero) -> Zero new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) new_ltEs21(yvy1531, yvy1541, app(app(ty_Either, bgb), bgc)) -> new_ltEs17(yvy1531, yvy1541, bgb, bgc) new_esEs13(yvy1531, yvy1541, ty_Int) -> new_esEs17(yvy1531, yvy1541) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_lt25(yvy40, yvy30, ty_Float) -> new_lt11(yvy40, yvy30) new_esEs5(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs7(True, False) -> False new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, yvy90, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranchResult(yvy50, yvy51, yvy90, yvy5433, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, h, ba) new_compare30(EQ, GT) -> LT new_ltEs19(yvy193, yvy196, ty_Integer) -> new_ltEs9(yvy193, yvy196) new_compare19(yvy241, yvy242, False, cbd, cbe) -> GT new_ltEs19(yvy193, yvy196, ty_Float) -> new_ltEs11(yvy193, yvy196) new_esEs6(yvy400, yvy300, app(ty_Maybe, cbh)) -> new_esEs23(yvy400, yvy300, cbh) new_compare12(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, cga, cgb, cgc) -> LT new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_sr1(Pos(yvy950)) -> Pos(new_primMulNat1(yvy950)) new_ltEs7(False, False) -> True new_lt24(yvy40, yvy50, ty_Float) -> new_lt11(yvy40, yvy50) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs11(yvy400, yvy300, app(app(ty_Either, fdb), fdc)) -> new_esEs27(yvy400, yvy300, fdb, fdc) new_lt20(yvy191, yvy194, app(ty_[], ee)) -> new_lt12(yvy191, yvy194, ee) new_esEs29(yvy192, yvy195, ty_@0) -> new_esEs15(yvy192, yvy195) new_ltEs21(yvy1531, yvy1541, app(ty_Ratio, bfd)) -> new_ltEs10(yvy1531, yvy1541, bfd) new_esEs30(yvy191, yvy194, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs22(yvy191, yvy194, ef, eg, eh) new_gt(yvy81, yvy76, ty_Int) -> new_gt3(yvy81, yvy76) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Maybe, fhh), fhb) -> new_ltEs13(yvy1530, yvy1540, fhh) new_esEs37(yvy204, yvy206, app(app(ty_@2, cfg), cfh)) -> new_esEs28(yvy204, yvy206, cfg, cfh) new_compare32(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Integer) -> new_ltEs9(yvy1532, yvy1542) new_esEs30(yvy191, yvy194, ty_@0) -> new_esEs15(yvy191, yvy194) new_lt23(yvy204, yvy206, app(ty_Maybe, cfd)) -> new_lt14(yvy204, yvy206, cfd) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_esEs14(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_esEs28(yvy1530, yvy1540, egd, ege) new_lt5(yvy1531, yvy1541, app(ty_[], eec)) -> new_lt12(yvy1531, yvy1541, eec) new_esEs37(yvy204, yvy206, app(ty_Ratio, ceg)) -> new_esEs19(yvy204, yvy206, ceg) new_ltEs24(yvy153, yvy154, app(app(ty_@2, bfb), bfc)) -> new_ltEs18(yvy153, yvy154, bfb, bfc) new_lt22(yvy1530, yvy1540, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt13(yvy1530, yvy1540, bgh, bha, bhb) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_[], chf), chg) -> new_esEs21(yvy4000, yvy3000, chf) new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs14(GT, LT) -> False new_esEs7(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) new_compare30(GT, LT) -> GT new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_ltEs9(yvy153, yvy154) -> new_fsEs(new_compare14(yvy153, yvy154)) new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_compare30(EQ, LT) -> GT new_compare7(Right(yvy400), Right(yvy300), bh, ca) -> new_compare26(yvy400, yvy300, new_esEs9(yvy400, yvy300, ca), bh, ca) new_lt19(yvy40, yvy30, cb, cc) -> new_esEs12(new_compare8(yvy40, yvy30, cb, cc)) new_esEs7(yvy400, yvy300, app(ty_Ratio, che)) -> new_esEs19(yvy400, yvy300, che) new_ltEs21(yvy1531, yvy1541, app(ty_Maybe, bga)) -> new_ltEs13(yvy1531, yvy1541, bga) new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs40(yvy4000, yvy3000, app(ty_Ratio, dgd)) -> new_esEs19(yvy4000, yvy3000, dgd) new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, ty_Char) -> new_esEs25(yvy191, yvy194) new_lt25(yvy40, yvy30, ty_Double) -> new_lt17(yvy40, yvy30) new_ltEs24(yvy153, yvy154, ty_Int) -> new_ltEs8(yvy153, yvy154) new_sr0(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Int, chg) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs21(yvy1531, yvy1541, ty_Float) -> new_ltEs11(yvy1531, yvy1541) new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba) new_esEs5(yvy401, yvy301, app(app(ty_@2, eac), ead)) -> new_esEs28(yvy401, yvy301, eac, ead) new_lt25(yvy40, yvy30, app(ty_Maybe, bg)) -> new_lt14(yvy40, yvy30, bg) new_esEs9(yvy400, yvy300, app(app(ty_@2, fad), fae)) -> new_esEs28(yvy400, yvy300, fad, fae) new_ltEs22(yvy160, yvy161, app(app(ty_@2, cbb), cbc)) -> new_ltEs18(yvy160, yvy161, cbb, cbc) new_lt25(yvy40, yvy30, app(ty_Ratio, bb)) -> new_lt4(yvy40, yvy30, bb) new_ltEs20(yvy167, yvy168, ty_Char) -> new_ltEs15(yvy167, yvy168) new_lt21(yvy192, yvy195, ty_Integer) -> new_lt10(yvy192, yvy195) new_gt15(yvy40, yvy30, app(ty_[], bc)) -> new_gt1(yvy40, yvy30, bc) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Float, chg) -> new_esEs20(yvy4000, yvy3000) new_gt1(yvy40, yvy30, bc) -> new_esEs41(new_compare0(yvy40, yvy30, bc)) new_asAs(True, yvy229) -> yvy229 new_esEs37(yvy204, yvy206, app(ty_[], ceh)) -> new_esEs21(yvy204, yvy206, ceh) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_@2, gac), gad), fhb) -> new_ltEs18(yvy1530, yvy1540, gac, gad) new_lt20(yvy191, yvy194, app(ty_Ratio, ed)) -> new_lt4(yvy191, yvy194, ed) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dah), chg) -> new_esEs19(yvy4000, yvy3000, dah) new_ltEs21(yvy1531, yvy1541, ty_Integer) -> new_ltEs9(yvy1531, yvy1541) new_ltEs22(yvy160, yvy161, ty_Ordering) -> new_ltEs14(yvy160, yvy161) new_ltEs23(yvy205, yvy207, ty_Bool) -> new_ltEs7(yvy205, yvy207) new_esEs36(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_primPlusInt(Pos(yvy9020), Neg(yvy2170)) -> new_primMinusNat0(yvy9020, yvy2170) new_primPlusInt(Neg(yvy9020), Pos(yvy2170)) -> new_primMinusNat0(yvy2170, yvy9020) new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, app(ty_[], bde)) -> new_esEs21(yvy4000, yvy3000, bde) new_lt26(yvy20, yvy15, app(app(app(ty_@3, gce), gcf), gcg)) -> new_lt13(yvy20, yvy15, gce, gcf, gcg) new_gt11(yvy40, yvy30) -> new_esEs41(new_compare30(yvy40, yvy30)) new_compare0([], [], bc) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_Either, ged), gee)) -> new_ltEs17(yvy1530, yvy1540, ged, gee) new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy54, h, ba) new_sr(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) new_esEs7(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Double, fhb) -> new_ltEs16(yvy1530, yvy1540) new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt15(yvy20, yvy15) new_primMulNat0(Zero, Zero) -> Zero new_ltEs22(yvy160, yvy161, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs4(yvy160, yvy161, cad, cae, caf) new_esEs8(yvy400, yvy300, app(ty_Maybe, ehf)) -> new_esEs23(yvy400, yvy300, ehf) new_esEs27(Left(yvy4000), Right(yvy3000), dba, chg) -> False new_esEs27(Right(yvy4000), Left(yvy3000), dba, chg) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Char, chg) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, app(ty_Ratio, dfb)) -> new_esEs19(yvy4001, yvy3001, dfb) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, yvy270, cga, cgb, cgc) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, cga, cgb, cgc) new_ltEs21(yvy1531, yvy1541, ty_Ordering) -> new_ltEs14(yvy1531, yvy1541) new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt15(yvy40, yvy30) new_ltEs19(yvy193, yvy196, app(ty_Maybe, gd)) -> new_ltEs13(yvy193, yvy196, gd) new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_Ratio, ha)) -> new_lt4(yvy192, yvy195, ha) new_esEs30(yvy191, yvy194, ty_Float) -> new_esEs20(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare6(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) new_primCompAux0(yvy132, EQ) -> yvy132 new_esEs27(Left(yvy4000), Left(yvy3000), ty_Ordering, chg) -> new_esEs24(yvy4000, yvy3000) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, cga, cgb, cgc) -> GT new_compare7(Right(yvy400), Left(yvy300), bh, ca) -> GT new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_gt(yvy81, yvy76, app(app(ty_@2, feh), ffa)) -> new_gt5(yvy81, yvy76, feh, ffa) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs4(yvy402, yvy302, app(app(ty_@2, dha), dhb)) -> new_esEs28(yvy402, yvy302, dha, dhb) new_esEs29(yvy192, yvy195, ty_Float) -> new_esEs20(yvy192, yvy195) new_lt16(yvy40, yvy30) -> new_esEs12(new_compare12(yvy40, yvy30)) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_gt14(yvy35, yvy30, app(app(ty_@2, dg), dh)) -> new_gt5(yvy35, yvy30, dg, dh) new_lt26(yvy20, yvy15, app(app(ty_@2, gdc), gdd)) -> new_lt19(yvy20, yvy15, gdc, gdd) new_ltEs24(yvy153, yvy154, app(app(ty_Either, gae), fhb)) -> new_ltEs17(yvy153, yvy154, gae, fhb) new_ltEs21(yvy1531, yvy1541, app(app(ty_@2, bgd), bge)) -> new_ltEs18(yvy1531, yvy1541, bgd, bge) new_esEs29(yvy192, yvy195, ty_Char) -> new_esEs25(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(ty_[], bgg)) -> new_esEs21(yvy1530, yvy1540, bgg) new_primPlusNat1(yvy284, yvy9500) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy284, Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)) new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_ltEs5(yvy1532, yvy1542, ty_Bool) -> new_ltEs7(yvy1532, yvy1542) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_ltEs18(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bfb, bfc) -> new_pePe(new_lt22(yvy1530, yvy1540, bfb), new_asAs(new_esEs36(yvy1530, yvy1540, bfb), new_ltEs21(yvy1531, yvy1541, bfc))) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, fhe), fhf), fhg), fhb) -> new_ltEs4(yvy1530, yvy1540, fhe, fhf, fhg) new_esEs9(yvy400, yvy300, app(ty_Maybe, fah)) -> new_esEs23(yvy400, yvy300, fah) new_ltEs5(yvy1532, yvy1542, ty_Double) -> new_ltEs16(yvy1532, yvy1542) new_lt21(yvy192, yvy195, app(app(ty_@2, baa), bab)) -> new_lt19(yvy192, yvy195, baa, bab) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(yvy193, yvy196, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs4(yvy193, yvy196, ga, gb, gc) new_lt24(yvy40, yvy50, ty_Double) -> new_lt17(yvy40, yvy50) new_lt26(yvy20, yvy15, app(ty_Ratio, gcb)) -> new_lt4(yvy20, yvy15, gcb) new_compare26(yvy167, yvy168, False, bac, bad) -> new_compare13(yvy167, yvy168, new_ltEs20(yvy167, yvy168, bad), bac, bad) new_lt26(yvy20, yvy15, app(ty_Maybe, gch)) -> new_lt14(yvy20, yvy15, gch) new_lt25(yvy40, yvy30, app(app(app(ty_@3, bd), be), bf)) -> new_lt13(yvy40, yvy30, bd, be, bf) new_esEs6(yvy400, yvy300, app(app(ty_@2, bca), bcb)) -> new_esEs28(yvy400, yvy300, bca, bcb) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs31(yvy4001, yvy3001, app(ty_[], bcc)) -> new_esEs21(yvy4001, yvy3001, bcc) new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_not(False) -> True new_esEs29(yvy192, yvy195, app(app(ty_Either, hg), hh)) -> new_esEs27(yvy192, yvy195, hg, hh) new_lt22(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs8(yvy400, yvy300, app(ty_Ratio, ehg)) -> new_esEs19(yvy400, yvy300, ehg) new_ltEs24(yvy153, yvy154, ty_Integer) -> new_ltEs9(yvy153, yvy154) new_esEs5(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare32(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy153, yvy154, ty_Bool) -> new_ltEs7(yvy153, yvy154) new_esEs30(yvy191, yvy194, app(app(ty_Either, fb), fc)) -> new_esEs27(yvy191, yvy194, fb, fc) new_compare30(EQ, EQ) -> EQ new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), bd, be, bf) -> new_compare27(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, bd), new_asAs(new_esEs5(yvy401, yvy301, be), new_esEs4(yvy402, yvy302, bf))), bd, be, bf) new_esEs41(LT) -> False new_lt18(yvy40, yvy30, bh, ca) -> new_esEs12(new_compare7(yvy40, yvy30, bh, ca)) new_lt5(yvy1531, yvy1541, ty_Double) -> new_lt17(yvy1531, yvy1541) new_esEs39(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare30(LT, EQ) -> LT new_ltEs21(yvy1531, yvy1541, ty_Int) -> new_ltEs8(yvy1531, yvy1541) new_lt22(yvy1530, yvy1540, app(app(ty_@2, bhf), bhg)) -> new_lt19(yvy1530, yvy1540, bhf, bhg) new_esEs9(yvy400, yvy300, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs22(yvy400, yvy300, faa, fab, fac) new_ltEs19(yvy193, yvy196, app(app(ty_@2, gg), gh)) -> new_ltEs18(yvy193, yvy196, gg, gh) new_esEs27(Left(yvy4000), Left(yvy3000), ty_@0, chg) -> new_esEs15(yvy4000, yvy3000) new_ltEs22(yvy160, yvy161, ty_@0) -> new_ltEs6(yvy160, yvy161) new_ltEs5(yvy1532, yvy1542, app(app(app(ty_@3, edb), edc), edd)) -> new_ltEs4(yvy1532, yvy1542, edb, edc, edd) new_esEs8(yvy400, yvy300, app(app(ty_@2, ehb), ehc)) -> new_esEs28(yvy400, yvy300, ehb, ehc) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(yvy191, yvy194, ty_Double) -> new_lt17(yvy191, yvy194) new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, ffb, ffc) -> new_mkVBalBranch0(yvy60, yvy61, yvy63, new_splitLT0(yvy64, yvy65, ffb, ffc), ffb, ffc) new_ltEs14(LT, EQ) -> True new_lt24(yvy40, yvy50, ty_Integer) -> new_lt10(yvy40, yvy50) new_ltEs22(yvy160, yvy161, app(ty_Maybe, cag)) -> new_ltEs13(yvy160, yvy161, cag) new_esEs6(yvy400, yvy300, app(ty_Ratio, ebb)) -> new_esEs19(yvy400, yvy300, ebb) new_lt25(yvy40, yvy30, app(app(ty_@2, cb), cc)) -> new_lt19(yvy40, yvy30, cb, cc) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, Branch(yvy900, yvy901, yvy902, yvy903, yvy904), True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, new_lt9(new_sizeFM0(yvy904, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy903, h, ba))), h, ba) new_esEs40(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs21(yvy1531, yvy1541, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs4(yvy1531, yvy1541, bff, bfg, bfh) new_esEs11(yvy400, yvy300, app(ty_[], fcd)) -> new_esEs21(yvy400, yvy300, fcd) new_ltEs6(yvy153, yvy154) -> new_fsEs(new_compare11(yvy153, yvy154)) new_gt15(yvy40, yvy30, ty_Double) -> new_gt2(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Int) -> new_ltEs8(yvy1532, yvy1542) new_esEs25(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_ltEs21(yvy1531, yvy1541, ty_Bool) -> new_ltEs7(yvy1531, yvy1541) new_lt24(yvy40, yvy50, app(app(ty_@2, cb), cc)) -> new_lt19(yvy40, yvy50, cb, cc) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_ltEs5(yvy1532, yvy1542, app(app(ty_@2, edh), eea)) -> new_ltEs18(yvy1532, yvy1542, edh, eea) new_compare15(yvy278, yvy279, yvy280, yvy281, False, yvy283, beg, beh) -> new_compare16(yvy278, yvy279, yvy280, yvy281, yvy283, beg, beh) new_esEs10(yvy401, yvy301, app(ty_[], fbb)) -> new_esEs21(yvy401, yvy301, fbb) new_gt(yvy81, yvy76, ty_Double) -> new_gt2(yvy81, yvy76) new_compare32(yvy400, yvy300, app(app(ty_@2, ecc), ecd)) -> new_compare8(yvy400, yvy300, ecc, ecd) new_ltEs20(yvy167, yvy168, ty_Int) -> new_ltEs8(yvy167, yvy168) new_esEs4(yvy402, yvy302, ty_Double) -> new_esEs26(yvy402, yvy302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy153, yvy154, ty_Char) -> new_ltEs15(yvy153, yvy154) new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, cd, ce) -> new_splitLT0(yvy33, yvy35, cd, ce) new_ltEs24(yvy153, yvy154, app(ty_Maybe, gde)) -> new_ltEs13(yvy153, yvy154, gde) new_lt23(yvy204, yvy206, app(app(ty_@2, cfg), cfh)) -> new_lt19(yvy204, yvy206, cfg, cfh) new_ltEs24(yvy153, yvy154, ty_@0) -> new_ltEs6(yvy153, yvy154) new_primEqNat0(Zero, Zero) -> True new_lt26(yvy20, yvy15, ty_Integer) -> new_lt10(yvy20, yvy15) new_lt21(yvy192, yvy195, ty_Double) -> new_lt17(yvy192, yvy195) new_compare17(Nothing, Just(yvy300), bg) -> LT new_lt25(yvy40, yvy30, ty_Integer) -> new_lt10(yvy40, yvy30) new_esEs33(yvy4000, yvy3000, app(ty_[], ffd)) -> new_esEs21(yvy4000, yvy3000, ffd) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_[], dbb)) -> new_esEs21(yvy4000, yvy3000, dbb) new_ltEs23(yvy205, yvy207, app(ty_Maybe, ceb)) -> new_ltEs13(yvy205, yvy207, ceb) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_Maybe, gbc)) -> new_ltEs13(yvy1530, yvy1540, gbc) new_asAs(False, yvy229) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Bool, chg) -> new_esEs16(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_@0) -> new_ltEs6(yvy205, yvy207) new_lt24(yvy40, yvy50, app(ty_Ratio, bb)) -> new_lt4(yvy40, yvy50, bb) new_ltEs19(yvy193, yvy196, ty_Int) -> new_ltEs8(yvy193, yvy196) new_gt13(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) new_esEs5(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_lt6(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_compare16(yvy278, yvy279, yvy280, yvy281, False, beg, beh) -> GT new_ltEs20(yvy167, yvy168, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs4(yvy167, yvy168, bag, bah, bba) new_ltEs23(yvy205, yvy207, ty_Ordering) -> new_ltEs14(yvy205, yvy207) new_compare32(yvy400, yvy300, app(ty_Ratio, ebc)) -> new_compare5(yvy400, yvy300, ebc) new_gt14(yvy35, yvy30, ty_Double) -> new_gt2(yvy35, yvy30) new_esEs7(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, ffb, ffc) -> yvy63 new_esEs7(yvy400, yvy300, app(app(ty_@2, cgh), cha)) -> new_esEs28(yvy400, yvy300, cgh, cha) new_ltEs22(yvy160, yvy161, ty_Bool) -> new_ltEs7(yvy160, yvy161) The set Q consists of the following terms: new_esEs8(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt25(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(x0, x1, ty_Integer) new_fsEs(x0) new_lt25(x0, x1, ty_Double) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare17(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Double) new_compare11(@0, @0) new_compare210(x0, x1, True, x2) new_esEs4(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) new_esEs7(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_lt13(x0, x1, x2, x3, x4) new_gt8(x0, x1) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulNat0(Zero, Succ(x0)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) new_lt25(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs36(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Nothing, Nothing, x0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_gt14(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Bool) new_splitGT30(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs23(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_gt14(x0, x1, app(ty_[], x2)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1) new_esEs10(x0, x1, ty_Float) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_lt25(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs40(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs8(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt15(x0, x1, ty_Int) new_gt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_gt15(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Double) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(False, False) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs13(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, ty_Integer) new_lt25(x0, x1, app(ty_Maybe, x2)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_esEs23(Just(x0), Just(x1), ty_Float) new_ltEs7(False, True) new_esEs5(x0, x1, ty_@0) new_ltEs7(True, False) new_splitLT20(x0, x1, x2, x3, x4, x5, False, x6, x7) new_gt(x0, x1, ty_Char) new_gt10(x0, x1) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, x2, x3) new_esEs40(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(Left(x0), Left(x1), ty_@0, x2) new_esEs37(x0, x1, ty_Float) new_ltEs9(x0, x1) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_gt14(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs32(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare26(x0, x1, True, x2, x3) new_gt14(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux0(x0, GT) new_esEs31(x0, x1, ty_Float) new_lt14(x0, x1, x2) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs7(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_gt14(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs12(GT) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(x0, x1, ty_Integer) new_lt23(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Integer) new_lt26(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21([], [], x0) new_lt6(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs33(x0, x1, ty_Double) new_splitGT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs38(x0, x1, ty_Double) new_gt(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Integer) new_compare32(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, GT) new_compare30(GT, LT) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8) new_ltEs24(x0, x1, ty_Double) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_lt24(x0, x1, ty_Ordering) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_gt6(x0, x1, x2, x3, x4) new_compare14(Integer(x0), Integer(x1)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primMinusNat0(Zero, Succ(x0)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs32(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_Double) new_lt22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_compare32(x0, x1, ty_Bool) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs14(x0, x1, ty_@0) new_esEs24(LT, GT) new_esEs24(GT, LT) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, ty_Integer) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_lt26(x0, x1, ty_Char) new_sizeFM0(EmptyFM, x0, x1) new_compare25(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs27(Left(x0), Left(x1), ty_Float, x2) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs28(@2(x0, x1), @2(x2, x3), x4, x5) new_lt26(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Integer) new_lt25(x0, x1, ty_Float) new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) new_ltEs5(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_compare15(x0, x1, x2, x3, True, x4, x5, x6) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, LT) new_gt14(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_lt6(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt26(x0, x1, ty_Int) new_compare0([], [], x0) new_esEs32(x0, x1, ty_Bool) new_mkBranchResult(x0, x1, x2, x3, x4, x5) new_splitLT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs36(x0, x1, ty_Int) new_gt(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_splitGT10(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs20(Float(x0, x1), Float(x2, x3)) new_lt5(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1) new_esEs13(x0, x1, ty_Int) new_not(True) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Ordering) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt26(x0, x1, ty_Double) new_esEs25(Char(x0), Char(x1)) new_esEs23(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt25(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_@0) new_compare19(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_gt13(x0, x1) new_esEs11(x0, x1, ty_@0) new_lt22(x0, x1, ty_Integer) new_ltEs13(Nothing, Just(x0), x1) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_compare15(x0, x1, x2, x3, False, x4, x5, x6) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_splitGT10(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_gt15(x0, x1, ty_Float) new_lt26(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs27(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs6(x0, x1) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Char) new_compare0(:(x0, x1), [], x2) new_esEs14(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitGT20(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs8(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Char) new_ltEs8(x0, x1) new_compare13(x0, x1, True, x2, x3) new_ltEs5(x0, x1, ty_Integer) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_lt25(x0, x1, ty_@0) new_lt26(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Char) new_sr(x0, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs14(GT, GT) new_esEs21(:(x0, x1), :(x2, x3), x4) new_esEs27(Right(x0), Right(x1), x2, ty_Int) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), ty_Int) new_splitLT10(x0, x1, x2, x3, x4, x5, False, x6, x7) new_primMulInt(Neg(x0), Neg(x1)) new_esEs30(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_[], x2)) new_splitLT30(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_gt1(x0, x1, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs13(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs15(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM(x0, x1, x2, x3, x4) new_lt23(x0, x1, ty_Integer) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_gt15(x0, x1, app(ty_Ratio, x2)) new_compare17(Nothing, Nothing, x0) new_esEs4(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_lt22(x0, x1, ty_Float) new_compare19(x0, x1, True, x2, x3) new_not(False) new_lt26(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_@0) new_ltEs24(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4) new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) new_gt15(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), ty_Integer, x2) new_ltEs23(x0, x1, ty_Char) new_esEs12(LT) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt25(x0, x1, app(ty_Ratio, x2)) new_esEs24(GT, GT) new_esEs32(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Double) new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs27(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_esEs33(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, ty_Bool) new_gt3(x0, x1) new_esEs27(Left(x0), Left(x1), ty_Char, x2) new_lt10(x0, x1) new_lt15(x0, x1) new_esEs4(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, x2, x3) new_compare32(x0, x1, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_lt5(x0, x1, ty_Int) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_@0) new_compare29(True, True) new_lt23(x0, x1, ty_Char) new_esEs41(LT) new_gt15(x0, x1, ty_Integer) new_esEs40(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs27(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs11(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_compare28(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_primCompAux0(x0, EQ) new_esEs13(x0, x1, app(ty_[], x2)) new_lt26(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Left(x0), Left(x1), x2, x3) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, ty_Float) new_compare13(x0, x1, False, x2, x3) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs27(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Char) new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs23(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Left(x0), Left(x1), ty_Double, x2) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Int) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs33(x0, x1, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Bool) new_primMinusNat0(Zero, Zero) new_esEs27(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(ty_[], x2)) new_emptyFM(x0, x1) new_compare32(x0, x1, ty_Ordering) new_gt14(x0, x1, ty_Double) new_gt12(x0, x1) new_gt14(x0, x1, ty_Char) new_sr1(Neg(x0)) new_lt25(x0, x1, ty_Int) new_gt14(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs14(LT, LT) new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_gt14(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_gt15(x0, x1, ty_Char) new_esEs27(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_sIZE_RATIO new_primPlusNat1(x0, x1) new_lt22(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Char) new_esEs24(EQ, EQ) new_compare0([], :(x0, x1), x2) new_esEs27(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_splitGT0(EmptyFM, x0, x1, x2) new_esEs36(x0, x1, ty_Float) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, ty_Integer) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_gt(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_sr1(Pos(x0)) new_esEs6(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(True, True) new_gt(x0, x1, ty_@0) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_splitLT10(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Int) new_lt26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_compare30(EQ, EQ) new_esEs37(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs41(GT) new_esEs8(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(@0, @0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt25(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs23(Just(x0), Just(x1), ty_Double) new_lt6(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, app(ty_Ratio, x2)) new_compare17(Nothing, Just(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs27(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_esEs29(x0, x1, ty_Double) new_ltEs14(LT, GT) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs14(GT, LT) new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Integer) new_compare29(True, False) new_compare29(False, True) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Char) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(False, False) new_gt15(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_@0) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat1(Succ(x0)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs40(x0, x1, ty_@0) new_compare7(Right(x0), Right(x1), x2, x3) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs27(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt21(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_lt6(x0, x1, ty_Char) new_esEs16(False, False) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, ty_@0) new_lt22(x0, x1, ty_Double) new_gt15(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_gt(x0, x1, app(ty_Maybe, x2)) new_gt15(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Char) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt24(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Float) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_primMulNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_splitGT20(x0, x1, x2, x3, x4, x5, True, x6, x7) new_primMinusNat0(Succ(x0), Zero) new_ltEs22(x0, x1, ty_Ordering) new_pePe(False, x0) new_primMulNat0(Zero, Zero) new_asAs(False, x0) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_esEs31(x0, x1, ty_Bool) new_esEs24(LT, LT) new_compare110(x0, x1, True, x2) new_ltEs14(EQ, EQ) new_gt5(x0, x1, x2, x3) new_gt15(x0, x1, app(ty_[], x2)) new_compare26(x0, x1, False, x2, x3) new_esEs39(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs27(Left(x0), Right(x1), x2, x3) new_esEs27(Right(x0), Left(x1), x2, x3) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs9(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs11(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Double) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Ordering) new_gt11(x0, x1) new_lt16(x0, x1) new_esEs13(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT20(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt26(x0, x1, ty_Ordering) new_esEs27(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs36(x0, x1, ty_Ordering) new_gt9(x0, x1) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt25(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt26(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_compare12(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21([], :(x0, x1), x2) new_lt12(x0, x1, x2) new_ltEs21(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs18(Integer(x0), Integer(x1)) new_lt24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3) new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_esEs39(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt24(x0, x1, ty_Double) new_lt24(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) new_esEs7(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare30(GT, GT) new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs37(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False, x2) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1, x2) new_lt6(x0, x1, ty_Double) new_ltEs16(x0, x1) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13) new_esEs17(x0, x1) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_gt4(x0, x1, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, ty_Char) new_compare110(x0, x1, False, x2) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_lt25(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs6(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_gt14(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Float) new_compare32(x0, x1, ty_@0) new_gt7(x0, x1, x2) new_esEs34(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Integer) new_asAs(True, x0) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs4(x0, x1, ty_Ordering) new_esEs12(EQ) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs41(EQ) new_esEs21(:(x0, x1), [], x2) new_gt2(x0, x1) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Bool) new_gt14(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCompAux0(x0, LT) new_ltEs7(True, True) new_esEs33(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_splitLT0(EmptyFM, x0, x1, x2) new_ltEs20(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_gt0(x0, x1, x2, x3) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt26(x0, x1, app(ty_[], x2)) new_compare17(Just(x0), Just(x1), x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs16(False, True) new_esEs16(True, False) new_gt15(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_gt15(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs29(x0, x1, ty_Float) new_compare6(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, x2, x3, False, x4, x5) new_esEs30(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs27(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs14(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_primEqNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1, x2) new_primMulNat1(Zero) new_lt23(x0, x1, app(ty_[], x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba), yvy43, h, ba) at position [0] we obtained the following new rules [LPAR04]: (new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba),new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba)) ---------------------------------------- (46) Obligation: Q DP problem: The TRS P consists of the following rules: new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba) new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba) The TRS R consists of the following rules: new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt23(yvy204, yvy206, ty_Integer) -> new_lt10(yvy204, yvy206) new_esEs14(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_esEs22(yvy1530, yvy1540, eff, efg, efh) new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, yvy294) -> True new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_gt14(yvy35, yvy30, app(ty_Ratio, cf)) -> new_gt7(yvy35, yvy30, cf) new_ltEs23(yvy205, yvy207, ty_Integer) -> new_ltEs9(yvy205, yvy207) new_gt(yvy81, yvy76, app(ty_Ratio, fdh)) -> new_gt7(yvy81, yvy76, fdh) new_ltEs24(yvy153, yvy154, ty_Ordering) -> new_ltEs14(yvy153, yvy154) new_lt14(yvy40, yvy30, bg) -> new_esEs12(new_compare17(yvy40, yvy30, bg)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, True, fdf, fdg) -> new_mkBalBranch(yvy76, yvy77, new_addToFM_C0(yvy79, yvy81, yvy82, fdf, fdg), yvy80, fdf, fdg) new_compare110(yvy234, yvy235, False, cbg) -> GT new_esEs9(yvy400, yvy300, app(app(ty_Either, faf), fag)) -> new_esEs27(yvy400, yvy300, faf, fag) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) new_esEs5(yvy401, yvy301, app(ty_Ratio, eah)) -> new_esEs19(yvy401, yvy301, eah) new_compare26(yvy167, yvy168, True, bac, bad) -> EQ new_esEs11(yvy400, yvy300, app(ty_Ratio, fde)) -> new_esEs19(yvy400, yvy300, fde) new_emptyFM(h, ba) -> EmptyFM new_ltEs19(yvy193, yvy196, app(ty_[], fh)) -> new_ltEs12(yvy193, yvy196, fh) new_gt15(yvy40, yvy30, ty_@0) -> new_gt12(yvy40, yvy30) new_esEs38(yvy4002, yvy3002, app(ty_Maybe, ddg)) -> new_esEs23(yvy4002, yvy3002, ddg) new_esEs30(yvy191, yvy194, app(ty_[], ee)) -> new_esEs21(yvy191, yvy194, ee) new_esEs32(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs24(yvy153, yvy154, app(app(app(ty_@3, ece), ecf), ecg)) -> new_ltEs4(yvy153, yvy154, ece, ecf, ecg) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(app(ty_@3, gah), gba), gbb)) -> new_ltEs4(yvy1530, yvy1540, gah, gba, gbb) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_lt24(yvy40, yvy50, app(ty_[], bc)) -> new_lt12(yvy40, yvy50, bc) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Bool, fhb) -> new_ltEs7(yvy1530, yvy1540) new_esEs36(yvy1530, yvy1540, app(ty_Ratio, bgf)) -> new_esEs19(yvy1530, yvy1540, bgf) new_esEs6(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, app(app(ty_@2, fd), ff)) -> new_esEs28(yvy191, yvy194, fd, ff) new_esEs39(yvy4001, yvy3001, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs22(yvy4001, yvy3001, deb, dec, ded) new_esEs37(yvy204, yvy206, ty_@0) -> new_esEs15(yvy204, yvy206) new_lt6(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_lt14(yvy1530, yvy1540, ega) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Double) -> new_esEs26(yvy4000, yvy3000) new_lt23(yvy204, yvy206, ty_Double) -> new_lt17(yvy204, yvy206) new_primEqNat0(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat0(yvy40000, yvy30000) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, ty_Integer) -> new_esEs18(yvy191, yvy194) new_lt5(yvy1531, yvy1541, ty_Float) -> new_lt11(yvy1531, yvy1541) new_primCompAux0(yvy132, LT) -> LT new_ltEs20(yvy167, yvy168, app(app(ty_@2, bbe), bbf)) -> new_ltEs18(yvy167, yvy168, bbe, bbf) new_esEs38(yvy4002, yvy3002, app(app(ty_@2, ddc), ddd)) -> new_esEs28(yvy4002, yvy3002, ddc, ddd) new_gt15(yvy40, yvy30, ty_Float) -> new_gt13(yvy40, yvy30) new_not(True) -> False new_lt5(yvy1531, yvy1541, ty_Bool) -> new_lt8(yvy1531, yvy1541) new_lt23(yvy204, yvy206, ty_Int) -> new_lt9(yvy204, yvy206) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, Branch(yvy9040, yvy9041, yvy9042, yvy9043, yvy9044), False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), yvy9040, yvy9041, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), yvy900, yvy901, yvy903, yvy9043, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), yvy50, yvy51, yvy9044, yvy54, h, ba) new_ltEs23(yvy205, yvy207, ty_Char) -> new_ltEs15(yvy205, yvy207) new_lt26(yvy20, yvy15, ty_Float) -> new_lt11(yvy20, yvy15) new_esEs32(yvy4000, yvy3000, app(app(ty_Either, bec), bed)) -> new_esEs27(yvy4000, yvy3000, bec, bed) new_lt6(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_lt4(yvy1530, yvy1540, efd) new_primMulNat1(Succ(yvy9500)) -> new_primPlusNat1(new_primMulNat0(Zero, Succ(yvy9500)), yvy9500) new_lt22(yvy1530, yvy1540, app(ty_Ratio, bgf)) -> new_lt4(yvy1530, yvy1540, bgf) new_ltEs17(Left(yvy1530), Right(yvy1540), gae, fhb) -> True new_esEs7(yvy400, yvy300, app(ty_[], cgd)) -> new_esEs21(yvy400, yvy300, cgd) new_compare30(LT, LT) -> EQ new_esEs11(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs22(yvy4000, yvy3000, dbc, dbd, dbe) new_primEqNat0(Succ(yvy40000), Zero) -> False new_primEqNat0(Zero, Succ(yvy30000)) -> False new_esEs35(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Char) -> new_gt9(yvy81, yvy76) new_esEs39(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_ltEs24(yvy153, yvy154, ty_Double) -> new_ltEs16(yvy153, yvy154) new_compare16(yvy278, yvy279, yvy280, yvy281, True, beg, beh) -> LT new_ltEs20(yvy167, yvy168, ty_Bool) -> new_ltEs7(yvy167, yvy168) new_lt20(yvy191, yvy194, app(app(app(ty_@3, ef), eg), eh)) -> new_lt13(yvy191, yvy194, ef, eg, eh) new_esEs32(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs9(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_ltEs14(EQ, EQ) -> True new_compare17(Nothing, Nothing, bg) -> EQ new_gt14(yvy35, yvy30, app(app(ty_Either, de), df)) -> new_gt0(yvy35, yvy30, de, df) new_esEs33(yvy4000, yvy3000, app(ty_Maybe, fgd)) -> new_esEs23(yvy4000, yvy3000, fgd) new_primPlusInt(Pos(yvy9020), Pos(yvy2170)) -> Pos(new_primPlusNat0(yvy9020, yvy2170)) new_compare30(GT, GT) -> EQ new_lt11(yvy40, yvy30) -> new_esEs12(new_compare9(yvy40, yvy30)) new_primCmpInt(Pos(Succ(yvy4000)), Neg(yvy300)) -> GT new_esEs13(yvy1531, yvy1541, app(ty_[], eec)) -> new_esEs21(yvy1531, yvy1541, eec) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(ty_Either, gbd), gbe)) -> new_ltEs17(yvy1530, yvy1540, gbd, gbe) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_Maybe, dcb)) -> new_esEs23(yvy4000, yvy3000, dcb) new_lt6(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_lt19(yvy1530, yvy1540, egd, ege) new_lt22(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, True, h, ba) -> new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Double) -> new_ltEs16(yvy1530, yvy1540) new_esEs40(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_gt2(yvy40, yvy30) -> new_esEs41(new_compare18(yvy40, yvy30)) new_ltEs23(yvy205, yvy207, ty_Float) -> new_ltEs11(yvy205, yvy207) new_esEs37(yvy204, yvy206, ty_Bool) -> new_esEs16(yvy204, yvy206) new_compare17(Just(yvy400), Nothing, bg) -> GT new_esEs34(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_primCmpNat0(Zero, Succ(yvy3000)) -> LT new_esEs40(yvy4000, yvy3000, app(app(ty_@2, dfg), dfh)) -> new_esEs28(yvy4000, yvy3000, dfg, dfh) new_esEs5(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_ltEs22(yvy160, yvy161, ty_Int) -> new_ltEs8(yvy160, yvy161) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(app(ty_@3, gdh), gea), geb)) -> new_ltEs4(yvy1530, yvy1540, gdh, gea, geb) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs8(yvy400, yvy300, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs22(yvy400, yvy300, egg, egh, eha) new_lt5(yvy1531, yvy1541, ty_@0) -> new_lt7(yvy1531, yvy1541) new_esEs22(@3(yvy4000, yvy4001, yvy4002), @3(yvy3000, yvy3001, yvy3002), dcd, dce, dcf) -> new_asAs(new_esEs40(yvy4000, yvy3000, dcd), new_asAs(new_esEs39(yvy4001, yvy3001, dce), new_esEs38(yvy4002, yvy3002, dcf))) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, new_gt3(new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) new_esEs20(Float(yvy4000, yvy4001), Float(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs37(yvy204, yvy206, ty_Double) -> new_esEs26(yvy204, yvy206) new_ltEs20(yvy167, yvy168, app(ty_Maybe, bbb)) -> new_ltEs13(yvy167, yvy168, bbb) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Int, fhb) -> new_ltEs8(yvy1530, yvy1540) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_ltEs20(yvy167, yvy168, ty_Float) -> new_ltEs11(yvy167, yvy168) new_esEs4(yvy402, yvy302, app(ty_[], dge)) -> new_esEs21(yvy402, yvy302, dge) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_compare32(yvy400, yvy300, ty_@0) -> new_compare11(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, app(app(ty_Either, edf), edg)) -> new_ltEs17(yvy1532, yvy1542, edf, edg) new_lt5(yvy1531, yvy1541, ty_Ordering) -> new_lt15(yvy1531, yvy1541) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Integer, chg) -> new_esEs18(yvy4000, yvy3000) new_esEs19(:%(yvy4000, yvy4001), :%(yvy3000, yvy3001), ebb) -> new_asAs(new_esEs35(yvy4000, yvy3000, ebb), new_esEs34(yvy4001, yvy3001, ebb)) new_lt26(yvy20, yvy15, ty_@0) -> new_lt7(yvy20, yvy15) new_ltEs23(yvy205, yvy207, app(app(ty_@2, cee), cef)) -> new_ltEs18(yvy205, yvy207, cee, cef) new_esEs6(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_@0) -> new_esEs15(yvy4000, yvy3000) new_gt6(yvy40, yvy30, bd, be, bf) -> new_esEs41(new_compare31(yvy40, yvy30, bd, be, bf)) new_esEs14(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Ordering) -> new_esEs24(yvy192, yvy195) new_lt23(yvy204, yvy206, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_lt13(yvy204, yvy206, cfa, cfb, cfc) new_esEs39(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_ltEs19(yvy193, yvy196, ty_Double) -> new_ltEs16(yvy193, yvy196) new_gt14(yvy35, yvy30, app(ty_[], cg)) -> new_gt1(yvy35, yvy30, cg) new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, True, bbg, bbh) -> new_mkVBalBranch0(yvy45, yvy46, new_splitGT0(yvy48, yvy50, bbg, bbh), yvy49, bbg, bbh) new_esEs38(yvy4002, yvy3002, app(ty_[], dcg)) -> new_esEs21(yvy4002, yvy3002, dcg) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_[], fhd), fhb) -> new_ltEs12(yvy1530, yvy1540, fhd) new_esEs30(yvy191, yvy194, app(ty_Maybe, fa)) -> new_esEs23(yvy191, yvy194, fa) new_ltEs19(yvy193, yvy196, ty_Ordering) -> new_ltEs14(yvy193, yvy196) new_ltEs20(yvy167, yvy168, ty_@0) -> new_ltEs6(yvy167, yvy168) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs22(yvy4000, yvy3000, ccb, ccc, ccd) new_lt25(yvy40, yvy30, ty_Char) -> new_lt16(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_ltEs20(yvy167, yvy168, app(ty_Ratio, bae)) -> new_ltEs10(yvy167, yvy168, bae) new_ltEs14(EQ, GT) -> True new_esEs40(yvy4000, yvy3000, app(ty_Maybe, dgc)) -> new_esEs23(yvy4000, yvy3000, dgc) new_lt26(yvy20, yvy15, ty_Double) -> new_lt17(yvy20, yvy15) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, EmptyFM, yvy544, yvy90, False, h, ba) -> error([]) new_lt24(yvy40, yvy50, app(ty_Maybe, bg)) -> new_lt14(yvy40, yvy50, bg) new_ltEs20(yvy167, yvy168, app(app(ty_Either, bbc), bbd)) -> new_ltEs17(yvy167, yvy168, bbc, bbd) new_ltEs5(yvy1532, yvy1542, ty_Ordering) -> new_ltEs14(yvy1532, yvy1542) new_gt(yvy81, yvy76, app(app(ty_Either, fef), feg)) -> new_gt0(yvy81, yvy76, fef, feg) new_primEqInt(Neg(Succ(yvy40000)), Neg(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_esEs10(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_primCmpInt(Neg(Zero), Pos(Succ(yvy3000))) -> LT new_esEs4(yvy402, yvy302, ty_@0) -> new_esEs15(yvy402, yvy302) new_primMulInt(Pos(yvy4000), Pos(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_esEs21(:(yvy4000, yvy4001), [], eba) -> False new_esEs21([], :(yvy3000, yvy3001), eba) -> False new_ltEs14(LT, GT) -> True new_esEs31(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_ltEs21(yvy1531, yvy1541, ty_Char) -> new_ltEs15(yvy1531, yvy1541) new_ltEs14(GT, GT) -> True new_esEs9(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs10(yvy401, yvy301, app(app(ty_Either, fbh), fca)) -> new_esEs27(yvy401, yvy301, fbh, fca) new_esEs33(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_lt9(yvy40, yvy30) -> new_esEs12(new_compare6(yvy40, yvy30)) new_compare11(@0, @0) -> EQ new_primMulNat0(Succ(yvy40000), Zero) -> Zero new_primMulNat0(Zero, Succ(yvy30100)) -> Zero new_ltEs5(yvy1532, yvy1542, app(ty_Ratio, ech)) -> new_ltEs10(yvy1532, yvy1542, ech) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, app(ty_Maybe, eag)) -> new_esEs23(yvy401, yvy301, eag) new_ltEs5(yvy1532, yvy1542, ty_@0) -> new_ltEs6(yvy1532, yvy1542) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_[], gdg)) -> new_ltEs12(yvy1530, yvy1540, gdg) new_lt23(yvy204, yvy206, ty_Float) -> new_lt11(yvy204, yvy206) new_gt14(yvy35, yvy30, ty_Char) -> new_gt9(yvy35, yvy30) new_ltEs22(yvy160, yvy161, app(ty_Ratio, cab)) -> new_ltEs10(yvy160, yvy161, cab) new_gt(yvy81, yvy76, app(ty_[], fea)) -> new_gt1(yvy81, yvy76, fea) new_esEs31(yvy4001, yvy3001, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs22(yvy4001, yvy3001, bcd, bce, bcf) new_ltEs22(yvy160, yvy161, app(app(ty_Either, cah), cba)) -> new_ltEs17(yvy160, yvy161, cah, cba) new_primPlusNat0(Succ(yvy90200), Zero) -> Succ(yvy90200) new_primPlusNat0(Zero, Succ(yvy21700)) -> Succ(yvy21700) new_ltEs22(yvy160, yvy161, ty_Double) -> new_ltEs16(yvy160, yvy161) new_lt22(yvy1530, yvy1540, app(ty_Maybe, bhc)) -> new_lt14(yvy1530, yvy1540, bhc) new_esEs14(yvy1530, yvy1540, app(ty_Ratio, efd)) -> new_esEs19(yvy1530, yvy1540, efd) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_compare29(False, False) -> EQ new_esEs38(yvy4002, yvy3002, app(ty_Ratio, ddh)) -> new_esEs19(yvy4002, yvy3002, ddh) new_lt26(yvy20, yvy15, ty_Bool) -> new_lt8(yvy20, yvy15) new_esEs33(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt6(yvy1530, yvy1540, app(ty_[], efe)) -> new_lt12(yvy1530, yvy1540, efe) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_splitGT10(yvy45, yvy46, yvy47, yvy48, yvy49, yvy50, False, bbg, bbh) -> yvy49 new_esEs7(yvy400, yvy300, app(ty_Maybe, chd)) -> new_esEs23(yvy400, yvy300, chd) new_ltEs21(yvy1531, yvy1541, ty_Double) -> new_ltEs16(yvy1531, yvy1541) new_esEs17(yvy400, yvy300) -> new_primEqInt(yvy400, yvy300) new_esEs12(LT) -> True new_esEs13(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_esEs28(yvy1531, yvy1541, efb, efc) new_esEs6(yvy400, yvy300, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs22(yvy400, yvy300, dcd, dce, dcf) new_gt0(yvy40, yvy30, bh, ca) -> new_esEs41(new_compare7(yvy40, yvy30, bh, ca)) new_esEs7(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_[], hb)) -> new_lt12(yvy192, yvy195, hb) new_lt26(yvy20, yvy15, app(app(ty_Either, gda), gdb)) -> new_lt18(yvy20, yvy15, gda, gdb) new_ltEs20(yvy167, yvy168, ty_Integer) -> new_ltEs9(yvy167, yvy168) new_esEs31(yvy4001, yvy3001, ty_Ordering) -> new_esEs24(yvy4001, yvy3001) new_lt25(yvy40, yvy30, ty_Int) -> new_lt9(yvy40, yvy30) new_esEs40(yvy4000, yvy3000, app(ty_[], dfc)) -> new_esEs21(yvy4000, yvy3000, dfc) new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Integer) -> new_compare14(new_sr0(yvy400, yvy301), new_sr0(yvy300, yvy401)) new_esEs4(yvy402, yvy302, ty_Bool) -> new_esEs16(yvy402, yvy302) new_ltEs19(yvy193, yvy196, ty_Char) -> new_ltEs15(yvy193, yvy196) new_lt23(yvy204, yvy206, ty_Ordering) -> new_lt15(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs22(yvy401, yvy301, dhh, eaa, eab) new_gt15(yvy40, yvy30, ty_Int) -> new_gt3(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs4(@3(yvy1530, yvy1531, yvy1532), @3(yvy1540, yvy1541, yvy1542), ece, ecf, ecg) -> new_pePe(new_lt6(yvy1530, yvy1540, ece), new_asAs(new_esEs14(yvy1530, yvy1540, ece), new_pePe(new_lt5(yvy1531, yvy1541, ecf), new_asAs(new_esEs13(yvy1531, yvy1541, ecf), new_ltEs5(yvy1532, yvy1542, ecg))))) new_lt20(yvy191, yvy194, ty_Integer) -> new_lt10(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(ty_Either, dbh), dca)) -> new_esEs27(yvy4000, yvy3000, dbh, dca) new_esEs37(yvy204, yvy206, ty_Int) -> new_esEs17(yvy204, yvy206) new_lt5(yvy1531, yvy1541, ty_Integer) -> new_lt10(yvy1531, yvy1541) new_ltEs10(yvy153, yvy154, cbf) -> new_fsEs(new_compare5(yvy153, yvy154, cbf)) new_esEs29(yvy192, yvy195, app(app(app(ty_@3, hc), hd), he)) -> new_esEs22(yvy192, yvy195, hc, hd, he) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(app(ty_@2, gbf), gbg)) -> new_ltEs18(yvy1530, yvy1540, gbf, gbg) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Ordering) -> new_ltEs14(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, EmptyFM, False, h, ba) -> error([]) new_compare29(True, False) -> GT new_esEs40(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_mkBalBranch(yvy50, yvy51, yvy90, yvy54, h, ba) -> new_mkBalBranch6MkBalBranch5(yvy50, yvy51, yvy54, yvy90, new_lt9(new_primPlusInt(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) new_compare6(yvy40, yvy30) -> new_primCmpInt(yvy40, yvy30) new_esEs32(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_gt12(yvy40, yvy30) -> new_esEs41(new_compare11(yvy40, yvy30)) new_esEs14(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs6(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_lt26(yvy20, yvy15, app(ty_[], gcc)) -> new_lt12(yvy20, yvy15, gcc) new_esEs31(yvy4001, yvy3001, ty_Int) -> new_esEs17(yvy4001, yvy3001) new_esEs31(yvy4001, yvy3001, app(ty_Maybe, bdc)) -> new_esEs23(yvy4001, yvy3001, bdc) new_esEs4(yvy402, yvy302, app(ty_Maybe, dhe)) -> new_esEs23(yvy402, yvy302, dhe) new_gt(yvy81, yvy76, ty_Bool) -> new_gt8(yvy81, yvy76) new_splitLT0(Branch(yvy330, yvy331, yvy332, yvy333, yvy334), yvy35, cd, ce) -> new_splitLT30(yvy330, yvy331, yvy332, yvy333, yvy334, yvy35, cd, ce) new_compare7(Left(yvy400), Right(yvy300), bh, ca) -> LT new_esEs11(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs12(GT) -> False new_esEs14(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs12(EQ) -> False new_esEs13(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_esEs27(yvy1531, yvy1541, eeh, efa) new_lt24(yvy40, yvy50, ty_Char) -> new_lt16(yvy40, yvy50) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, yvy270, cga, cgb, cgc) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, yvy270, cga, cgb, cgc) new_addToFM_C10(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, True, gfc, gfd) -> new_mkBalBranch(yvy105, yvy106, yvy108, new_addToFM_C0(yvy109, yvy110, yvy111, gfc, gfd), gfc, gfd) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Ratio, gdf)) -> new_ltEs10(yvy1530, yvy1540, gdf) new_lt23(yvy204, yvy206, app(app(ty_Either, cfe), cff)) -> new_lt18(yvy204, yvy206, cfe, cff) new_esEs39(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_Ratio, gaf)) -> new_ltEs10(yvy1530, yvy1540, gaf) new_lt21(yvy192, yvy195, ty_Ordering) -> new_lt15(yvy192, yvy195) new_lt20(yvy191, yvy194, ty_Float) -> new_lt11(yvy191, yvy194) new_esEs38(yvy4002, yvy3002, app(app(ty_Either, dde), ddf)) -> new_esEs27(yvy4002, yvy3002, dde, ddf) new_primPlusInt(Neg(yvy9020), Neg(yvy2170)) -> Neg(new_primPlusNat0(yvy9020, yvy2170)) new_esEs10(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_esEs37(yvy204, yvy206, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs22(yvy204, yvy206, cfa, cfb, cfc) new_esEs32(yvy4000, yvy3000, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs32(yvy4000, yvy3000, app(app(ty_@2, bea), beb)) -> new_esEs28(yvy4000, yvy3000, bea, beb) new_esEs5(yvy401, yvy301, ty_Integer) -> new_esEs18(yvy401, yvy301) new_lt25(yvy40, yvy30, ty_@0) -> new_lt7(yvy40, yvy30) new_esEs36(yvy1530, yvy1540, app(app(ty_@2, bhf), bhg)) -> new_esEs28(yvy1530, yvy1540, bhf, bhg) new_mkBranch(yvy323, yvy324, yvy325, yvy326, yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg) -> new_mkBranchResult(yvy324, yvy325, yvy326, new_mkBranch0(yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg), fgf, fgg) new_lt5(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_lt13(yvy1531, yvy1541, eed, eee, eef) new_esEs10(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_gt14(yvy35, yvy30, ty_Ordering) -> new_gt11(yvy35, yvy30) new_compare0([], :(yvy300, yvy301), bc) -> LT new_gt15(yvy40, yvy30, app(ty_Maybe, bg)) -> new_gt4(yvy40, yvy30, bg) new_compare32(yvy400, yvy300, ty_Bool) -> new_compare29(yvy400, yvy300) new_esEs13(yvy1531, yvy1541, ty_Bool) -> new_esEs16(yvy1531, yvy1541) new_esEs32(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs30(yvy191, yvy194, app(ty_Ratio, ed)) -> new_esEs19(yvy191, yvy194, ed) new_ltEs16(yvy153, yvy154) -> new_fsEs(new_compare18(yvy153, yvy154)) new_esEs5(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkBranch1(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))))), yvy40, yvy41, yvy60, yvy61, yvy62, yvy63, yvy64, yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs13(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_esEs19(yvy1531, yvy1541, eeb) new_lt20(yvy191, yvy194, ty_Bool) -> new_lt8(yvy191, yvy194) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_ltEs23(yvy205, yvy207, app(ty_[], cdf)) -> new_ltEs12(yvy205, yvy207, cdf) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Integer, fhb) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Char) -> new_esEs25(yvy4001, yvy3001) new_esEs14(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_Either, ccg), cch)) -> new_esEs27(yvy4000, yvy3000, ccg, cch) new_primCmpInt(Pos(Succ(yvy4000)), Pos(yvy300)) -> new_primCmpNat0(Succ(yvy4000), yvy300) new_esEs40(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs38(yvy4002, yvy3002, ty_Bool) -> new_esEs16(yvy4002, yvy3002) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_Ratio, dcc)) -> new_esEs19(yvy4000, yvy3000, dcc) new_esEs30(yvy191, yvy194, ty_Bool) -> new_esEs16(yvy191, yvy194) new_esEs5(yvy401, yvy301, app(ty_[], dhg)) -> new_esEs21(yvy401, yvy301, dhg) new_compare8(@2(yvy400, yvy401), @2(yvy300, yvy301), cb, cc) -> new_compare28(yvy400, yvy401, yvy300, yvy301, new_asAs(new_esEs11(yvy400, yvy300, cb), new_esEs10(yvy401, yvy301, cc)), cb, cc) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, EmptyFM, yvy90, True, h, ba) -> error([]) new_gt15(yvy40, yvy30, ty_Char) -> new_gt9(yvy40, yvy30) new_lt21(yvy192, yvy195, ty_@0) -> new_lt7(yvy192, yvy195) new_addToFM(yvy5, yvy40, yvy41, h, ba) -> new_addToFM_C0(yvy5, yvy40, yvy41, h, ba) new_esEs33(yvy4000, yvy3000, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs22(yvy4000, yvy3000, ffe, fff, ffg) new_esEs21([], [], eba) -> True new_esEs10(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs39(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, app(app(ty_Either, dba), chg)) -> new_esEs27(yvy400, yvy300, dba, chg) new_ltEs13(Nothing, Nothing, gde) -> True new_esEs35(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_ltEs13(Just(yvy1530), Nothing, gde) -> False new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba) -> new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_esEs29(yvy192, yvy195, ty_Int) -> new_esEs17(yvy192, yvy195) new_lt22(yvy1530, yvy1540, app(ty_[], bgg)) -> new_lt12(yvy1530, yvy1540, bgg) new_gt14(yvy35, yvy30, app(app(app(ty_@3, da), db), dc)) -> new_gt6(yvy35, yvy30, da, db, dc) new_primMulNat0(Succ(yvy40000), Succ(yvy30100)) -> new_primPlusNat0(new_primMulNat0(yvy40000, Succ(yvy30100)), Succ(yvy30100)) new_ltEs23(yvy205, yvy207, app(ty_Ratio, cde)) -> new_ltEs10(yvy205, yvy207, cde) new_esEs10(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_esEs4(yvy402, yvy302, ty_Float) -> new_esEs20(yvy402, yvy302) new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, True, gbh, gca) -> new_splitGT0(yvy19, yvy20, gbh, gca) new_lt12(yvy40, yvy30, bc) -> new_esEs12(new_compare0(yvy40, yvy30, bc)) new_esEs32(yvy4000, yvy3000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs22(yvy4000, yvy3000, bdf, bdg, bdh) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_esEs31(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare25(yvy160, yvy161, False, bhh, caa) -> new_compare19(yvy160, yvy161, new_ltEs22(yvy160, yvy161, bhh), bhh, caa) new_compare30(GT, EQ) -> GT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_@2, dac), dad), chg) -> new_esEs28(yvy4000, yvy3000, dac, dad) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Float, fhb) -> new_ltEs11(yvy1530, yvy1540) new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) new_esEs29(yvy192, yvy195, app(ty_Ratio, ha)) -> new_esEs19(yvy192, yvy195, ha) new_esEs4(yvy402, yvy302, ty_Ordering) -> new_esEs24(yvy402, yvy302) new_lt21(yvy192, yvy195, app(ty_Maybe, hf)) -> new_lt14(yvy192, yvy195, hf) new_ltEs24(yvy153, yvy154, app(ty_Ratio, cbf)) -> new_ltEs10(yvy153, yvy154, cbf) new_esEs40(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_lt21(yvy192, yvy195, ty_Int) -> new_lt9(yvy192, yvy195) new_compare29(False, True) -> LT new_lt25(yvy40, yvy30, ty_Bool) -> new_lt8(yvy40, yvy30) new_esEs11(yvy400, yvy300, app(ty_Maybe, fdd)) -> new_esEs23(yvy400, yvy300, fdd) new_compare210(yvy153, yvy154, False, geh) -> new_compare110(yvy153, yvy154, new_ltEs24(yvy153, yvy154, geh), geh) new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), EmptyFM, h, ba) -> new_addToFM(Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy40, yvy41, h, ba) new_esEs15(@0, @0) -> True new_esEs11(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt20(yvy191, yvy194, app(ty_Maybe, fa)) -> new_lt14(yvy191, yvy194, fa) new_esEs10(yvy401, yvy301, app(ty_Maybe, fcb)) -> new_esEs23(yvy401, yvy301, fcb) new_lt24(yvy40, yvy50, ty_Bool) -> new_lt8(yvy40, yvy50) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, EmptyFM, True, h, ba) -> error([]) new_esEs24(LT, GT) -> False new_esEs24(GT, LT) -> False new_lt6(yvy1530, yvy1540, ty_Char) -> new_lt16(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, app(ty_[], eda)) -> new_ltEs12(yvy1532, yvy1542, eda) new_ltEs7(True, True) -> True new_gt9(yvy40, yvy30) -> new_esEs41(new_compare12(yvy40, yvy30)) new_esEs6(yvy400, yvy300, app(ty_[], eba)) -> new_esEs21(yvy400, yvy300, eba) new_lt20(yvy191, yvy194, ty_@0) -> new_lt7(yvy191, yvy194) new_esEs11(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_esEs11(yvy400, yvy300, app(app(ty_@2, fch), fda)) -> new_esEs28(yvy400, yvy300, fch, fda) new_lt22(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs16(True, True) -> True new_esEs7(yvy400, yvy300, app(app(ty_Either, chb), chc)) -> new_esEs27(yvy400, yvy300, chb, chc) new_esEs10(yvy401, yvy301, ty_Ordering) -> new_esEs24(yvy401, yvy301) new_esEs14(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs41(GT) -> True new_esEs32(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Ratio, fhc), fhb) -> new_ltEs10(yvy1530, yvy1540, fhc) new_compare28(yvy204, yvy205, yvy206, yvy207, False, cdc, cdd) -> new_compare15(yvy204, yvy205, yvy206, yvy207, new_lt23(yvy204, yvy206, cdc), new_asAs(new_esEs37(yvy204, yvy206, cdc), new_ltEs23(yvy205, yvy207, cdd)), cdc, cdd) new_mkBranch0(yvy327, yvy328, yvy329, yvy330, yvy331, fgf, fgg) -> new_mkBranchResult(yvy328, yvy329, yvy330, yvy331, fgf, fgg) new_esEs14(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_esEs27(yvy1530, yvy1540, egb, egc) new_lt24(yvy40, yvy50, app(app(ty_Either, bh), ca)) -> new_lt18(yvy40, yvy50, bh, ca) new_esEs38(yvy4002, yvy3002, ty_@0) -> new_esEs15(yvy4002, yvy3002) new_gt14(yvy35, yvy30, ty_Bool) -> new_gt8(yvy35, yvy30) new_esEs37(yvy204, yvy206, app(app(ty_Either, cfe), cff)) -> new_esEs27(yvy204, yvy206, cfe, cff) new_lt20(yvy191, yvy194, ty_Ordering) -> new_lt15(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(app(ty_@2, dbf), dbg)) -> new_esEs28(yvy4000, yvy3000, dbf, dbg) new_lt21(yvy192, yvy195, ty_Float) -> new_lt11(yvy192, yvy195) new_lt21(yvy192, yvy195, ty_Bool) -> new_lt8(yvy192, yvy195) new_esEs10(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_esEs38(yvy4002, yvy3002, ty_Char) -> new_esEs25(yvy4002, yvy3002) new_esEs10(yvy401, yvy301, app(app(ty_@2, fbf), fbg)) -> new_esEs28(yvy401, yvy301, fbf, fbg) new_compare13(yvy250, yvy251, True, gfa, gfb) -> LT new_sizeFM0(Branch(yvy540, yvy541, yvy542, yvy543, yvy544), h, ba) -> yvy542 new_esEs33(yvy4000, yvy3000, app(app(ty_@2, ffh), fga)) -> new_esEs28(yvy4000, yvy3000, ffh, fga) new_gt15(yvy40, yvy30, ty_Bool) -> new_gt8(yvy40, yvy30) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Char) -> new_esEs25(yvy4000, yvy3000) new_compare18(Double(yvy400, Pos(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs24(yvy153, yvy154, app(ty_[], bfa)) -> new_ltEs12(yvy153, yvy154, bfa) new_esEs33(yvy4000, yvy3000, ty_Bool) -> new_esEs16(yvy4000, yvy3000) new_esEs4(yvy402, yvy302, ty_Integer) -> new_esEs18(yvy402, yvy302) new_esEs32(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_lt25(yvy40, yvy30, app(ty_[], bc)) -> new_lt12(yvy40, yvy30, bc) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, yvy54, yvy90, False, h, ba) -> new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, yvy90, new_gt3(new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba))), h, ba) new_esEs13(yvy1531, yvy1541, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs22(yvy1531, yvy1541, eed, eee, eef) new_esEs29(yvy192, yvy195, ty_Double) -> new_esEs26(yvy192, yvy195) new_esEs13(yvy1531, yvy1541, ty_@0) -> new_esEs15(yvy1531, yvy1541) new_esEs40(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_lt22(yvy1530, yvy1540, app(app(ty_Either, bhd), bhe)) -> new_lt18(yvy1530, yvy1540, bhd, bhe) new_compare0(:(yvy400, yvy401), [], bc) -> GT new_compare32(yvy400, yvy300, app(ty_[], ebd)) -> new_compare0(yvy400, yvy300, ebd) new_lt17(yvy40, yvy30) -> new_esEs12(new_compare18(yvy40, yvy30)) new_primPlusNat0(Succ(yvy90200), Succ(yvy21700)) -> Succ(Succ(new_primPlusNat0(yvy90200, yvy21700))) new_esEs31(yvy4001, yvy3001, app(ty_Ratio, bdd)) -> new_esEs19(yvy4001, yvy3001, bdd) new_esEs39(yvy4001, yvy3001, app(app(ty_Either, deg), deh)) -> new_esEs27(yvy4001, yvy3001, deg, deh) new_compare32(yvy400, yvy300, ty_Float) -> new_compare9(yvy400, yvy300) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs14(yvy1530, yvy1540, app(ty_Maybe, ega)) -> new_esEs23(yvy1530, yvy1540, ega) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_[], gag)) -> new_ltEs12(yvy1530, yvy1540, gag) new_esEs14(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Double) -> new_esEs26(yvy191, yvy194) new_esEs37(yvy204, yvy206, ty_Ordering) -> new_esEs24(yvy204, yvy206) new_gt15(yvy40, yvy30, ty_Integer) -> new_gt10(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Float) -> new_esEs20(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, app(app(ty_Either, eeh), efa)) -> new_lt18(yvy1531, yvy1541, eeh, efa) new_lt20(yvy191, yvy194, ty_Int) -> new_lt9(yvy191, yvy194) new_esEs37(yvy204, yvy206, app(ty_Maybe, cfd)) -> new_esEs23(yvy204, yvy206, cfd) new_esEs36(yvy1530, yvy1540, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs22(yvy1530, yvy1540, bgh, bha, bhb) new_esEs4(yvy402, yvy302, ty_Char) -> new_esEs25(yvy402, yvy302) new_esEs26(Double(yvy4000, yvy4001), Double(yvy3000, yvy3001)) -> new_esEs17(new_sr(yvy4000, yvy3001), new_sr(yvy4001, yvy3000)) new_esEs29(yvy192, yvy195, app(app(ty_@2, baa), bab)) -> new_esEs28(yvy192, yvy195, baa, bab) new_lt24(yvy40, yvy50, ty_@0) -> new_lt7(yvy40, yvy50) new_lt20(yvy191, yvy194, app(app(ty_Either, fb), fc)) -> new_lt18(yvy191, yvy194, fb, fc) new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, True, h, ba) -> new_mkBranchResult(yvy540, yvy541, new_mkBranchResult(yvy50, yvy51, yvy90, yvy543, h, ba), yvy544, h, ba) new_lt5(yvy1531, yvy1541, ty_Int) -> new_lt9(yvy1531, yvy1541) new_esEs36(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_esEs30(yvy191, yvy194, ty_Int) -> new_esEs17(yvy191, yvy194) new_lt8(yvy40, yvy30) -> new_esEs12(new_compare29(yvy40, yvy30)) new_compare13(yvy250, yvy251, False, gfa, gfb) -> GT new_esEs11(yvy400, yvy300, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs22(yvy400, yvy300, fce, fcf, fcg) new_esEs11(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs38(yvy4002, yvy3002, ty_Integer) -> new_esEs18(yvy4002, yvy3002) new_esEs13(yvy1531, yvy1541, ty_Char) -> new_esEs25(yvy1531, yvy1541) new_esEs10(yvy401, yvy301, app(ty_Ratio, fcc)) -> new_esEs19(yvy401, yvy301, fcc) new_esEs36(yvy1530, yvy1540, ty_Char) -> new_esEs25(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, app(ty_Ratio, fge)) -> new_esEs19(yvy4000, yvy3000, fge) new_lt10(yvy40, yvy30) -> new_esEs12(new_compare14(yvy40, yvy30)) new_lt23(yvy204, yvy206, ty_Bool) -> new_lt8(yvy204, yvy206) new_esEs13(yvy1531, yvy1541, ty_Integer) -> new_esEs18(yvy1531, yvy1541) new_esEs8(yvy400, yvy300, app(ty_[], egf)) -> new_esEs21(yvy400, yvy300, egf) new_primCompAux1(yvy400, yvy300, yvy114, bc) -> new_primCompAux0(yvy114, new_compare32(yvy400, yvy300, bc)) new_esEs23(Just(yvy4000), Just(yvy3000), ty_Float) -> new_esEs20(yvy4000, yvy3000) new_esEs37(yvy204, yvy206, ty_Integer) -> new_esEs18(yvy204, yvy206) new_esEs5(yvy401, yvy301, app(app(ty_Either, eae), eaf)) -> new_esEs27(yvy401, yvy301, eae, eaf) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Char, fhb) -> new_ltEs15(yvy1530, yvy1540) new_splitGT20(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, False, gbh, gca) -> new_splitGT10(yvy15, yvy16, yvy17, yvy18, yvy19, yvy20, new_lt26(yvy20, yvy15, gbh), gbh, gca) new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_@2, gef), geg)) -> new_ltEs18(yvy1530, yvy1540, gef, geg) new_lt22(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_primCmpNat0(Succ(yvy4000), Succ(yvy3000)) -> new_primCmpNat0(yvy4000, yvy3000) new_lt20(yvy191, yvy194, ty_Char) -> new_lt16(yvy191, yvy194) new_esEs40(yvy4000, yvy3000, app(app(ty_Either, dga), dgb)) -> new_esEs27(yvy4000, yvy3000, dga, dgb) new_esEs16(False, False) -> True new_gt(yvy81, yvy76, app(ty_Maybe, fee)) -> new_gt4(yvy81, yvy76, fee) new_ltEs21(yvy1531, yvy1541, app(ty_[], bfe)) -> new_ltEs12(yvy1531, yvy1541, bfe) new_esEs38(yvy4002, yvy3002, ty_Float) -> new_esEs20(yvy4002, yvy3002) new_splitGT0(Branch(yvy190, yvy191, yvy192, yvy193, yvy194), yvy20, gbh, gca) -> new_splitGT30(yvy190, yvy191, yvy192, yvy193, yvy194, yvy20, gbh, gca) new_primMinusNat0(Zero, Succ(yvy21700)) -> Neg(Succ(yvy21700)) new_esEs4(yvy402, yvy302, app(app(ty_Either, dhc), dhd)) -> new_esEs27(yvy402, yvy302, dhc, dhd) new_gt(yvy81, yvy76, app(app(app(ty_@3, feb), fec), fed)) -> new_gt6(yvy81, yvy76, feb, fec, fed) new_esEs21(:(yvy4000, yvy4001), :(yvy3000, yvy3001), eba) -> new_asAs(new_esEs33(yvy4000, yvy3000, eba), new_esEs21(yvy4001, yvy3001, eba)) new_compare32(yvy400, yvy300, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_compare31(yvy400, yvy300, ebe, ebf, ebg) new_esEs14(yvy1530, yvy1540, ty_Float) -> new_esEs20(yvy1530, yvy1540) new_mkBranch1(yvy116, yvy117, yvy118, yvy119, yvy120, yvy121, yvy122, yvy123, yvy124, yvy125, yvy126, yvy127, yvy128, fgh, fha) -> Branch(yvy117, yvy118, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(Branch(yvy119, yvy120, yvy121, yvy122, yvy123), fgh, fha)), new_sizeFM0(Branch(yvy124, yvy125, yvy126, yvy127, yvy128), fgh, fha)), Branch(yvy119, yvy120, yvy121, yvy122, yvy123), Branch(yvy124, yvy125, yvy126, yvy127, yvy128)) new_esEs36(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, True, ea, eb, ec) -> EQ new_gt15(yvy40, yvy30, app(app(app(ty_@3, bd), be), bf)) -> new_gt6(yvy40, yvy30, bd, be, bf) new_ltEs17(Right(yvy1530), Left(yvy1540), gae, fhb) -> False new_esEs36(yvy1530, yvy1540, ty_@0) -> new_esEs15(yvy1530, yvy1540) new_esEs37(yvy204, yvy206, ty_Float) -> new_esEs20(yvy204, yvy206) new_ltEs22(yvy160, yvy161, app(ty_[], cac)) -> new_ltEs12(yvy160, yvy161, cac) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Ordering, fhb) -> new_ltEs14(yvy1530, yvy1540) new_lt21(yvy192, yvy195, app(app(ty_Either, hg), hh)) -> new_lt18(yvy192, yvy195, hg, hh) new_lt6(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_compare110(yvy234, yvy235, True, cbg) -> LT new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt(yvy81, yvy76, ty_Ordering) -> new_gt11(yvy81, yvy76) new_esEs31(yvy4001, yvy3001, app(app(ty_@2, bcg), bch)) -> new_esEs28(yvy4001, yvy3001, bcg, bch) new_ltEs14(LT, LT) -> True new_ltEs17(Left(yvy1530), Left(yvy1540), ty_@0, fhb) -> new_ltEs6(yvy1530, yvy1540) new_esEs14(yvy1530, yvy1540, ty_Integer) -> new_esEs18(yvy1530, yvy1540) new_esEs13(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_esEs23(yvy1531, yvy1541, eeg) new_esEs36(yvy1530, yvy1540, ty_Ordering) -> new_esEs24(yvy1530, yvy1540) new_ltEs13(Nothing, Just(yvy1540), gde) -> True new_esEs11(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_gt15(yvy40, yvy30, ty_Ordering) -> new_gt11(yvy40, yvy30) new_esEs13(yvy1531, yvy1541, ty_Ordering) -> new_esEs24(yvy1531, yvy1541) new_gt14(yvy35, yvy30, app(ty_Maybe, dd)) -> new_gt4(yvy35, yvy30, dd) new_lt15(yvy40, yvy30) -> new_esEs12(new_compare30(yvy40, yvy30)) new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) new_esEs36(yvy1530, yvy1540, app(ty_Maybe, bhc)) -> new_esEs23(yvy1530, yvy1540, bhc) new_esEs24(LT, EQ) -> False new_esEs24(EQ, LT) -> False new_esEs9(yvy400, yvy300, app(ty_[], ehh)) -> new_esEs21(yvy400, yvy300, ehh) new_lt23(yvy204, yvy206, ty_@0) -> new_lt7(yvy204, yvy206) new_esEs16(False, True) -> False new_esEs16(True, False) -> False new_compare14(Integer(yvy400), Integer(yvy300)) -> new_primCmpInt(yvy400, yvy300) new_lt6(yvy1530, yvy1540, app(app(ty_Either, egb), egc)) -> new_lt18(yvy1530, yvy1540, egb, egc) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_compare9(Float(yvy400, Neg(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs21(yvy1531, yvy1541, ty_@0) -> new_ltEs6(yvy1531, yvy1541) new_primCmpInt(Neg(Succ(yvy4000)), Pos(yvy300)) -> LT new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt4(yvy40, yvy30, bb) -> new_esEs12(new_compare5(yvy40, yvy30, bb)) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, app(ty_[], dea)) -> new_esEs21(yvy4001, yvy3001, dea) new_ltEs5(yvy1532, yvy1542, ty_Char) -> new_ltEs15(yvy1532, yvy1542) new_lt22(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs13(Just(yvy1530), Just(yvy1540), app(ty_Maybe, gec)) -> new_ltEs13(yvy1530, yvy1540, gec) new_ltEs11(yvy153, yvy154) -> new_fsEs(new_compare9(yvy153, yvy154)) new_ltEs19(yvy193, yvy196, ty_Bool) -> new_ltEs7(yvy193, yvy196) new_lt22(yvy1530, yvy1540, ty_Bool) -> new_lt8(yvy1530, yvy1540) new_splitGT0(EmptyFM, yvy20, gbh, gca) -> new_emptyFM(gbh, gca) new_esEs7(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs37(yvy204, yvy206, ty_Char) -> new_esEs25(yvy204, yvy206) new_gt14(yvy35, yvy30, ty_Int) -> new_gt3(yvy35, yvy30) new_esEs36(yvy1530, yvy1540, app(app(ty_Either, bhd), bhe)) -> new_esEs27(yvy1530, yvy1540, bhd, bhe) new_esEs32(yvy4000, yvy3000, app(ty_Ratio, bef)) -> new_esEs19(yvy4000, yvy3000, bef) new_primCmpInt(Pos(Zero), Neg(Succ(yvy3000))) -> GT new_gt15(yvy40, yvy30, app(app(ty_Either, bh), ca)) -> new_gt0(yvy40, yvy30, bh, ca) new_gt(yvy81, yvy76, ty_Integer) -> new_gt10(yvy81, yvy76) new_gt14(yvy35, yvy30, ty_Integer) -> new_gt10(yvy35, yvy30) new_compare29(True, True) -> EQ new_primCmpInt(Neg(Succ(yvy4000)), Neg(yvy300)) -> new_primCmpNat0(yvy300, Succ(yvy4000)) new_compare0(:(yvy400, yvy401), :(yvy300, yvy301), bc) -> new_primCompAux1(yvy400, yvy300, new_compare0(yvy401, yvy301, bc), bc) new_esEs38(yvy4002, yvy3002, ty_Double) -> new_esEs26(yvy4002, yvy3002) new_esEs5(yvy401, yvy301, ty_Bool) -> new_esEs16(yvy401, yvy301) new_ltEs8(yvy153, yvy154) -> new_fsEs(new_compare6(yvy153, yvy154)) new_lt24(yvy40, yvy50, app(app(app(ty_@3, bd), be), bf)) -> new_lt13(yvy40, yvy50, bd, be, bf) new_mkBalBranch6Size_l(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy90, h, ba) new_esEs36(yvy1530, yvy1540, ty_Bool) -> new_esEs16(yvy1530, yvy1540) new_esEs38(yvy4002, yvy3002, ty_Int) -> new_esEs17(yvy4002, yvy3002) new_esEs14(yvy1530, yvy1540, app(ty_[], efe)) -> new_esEs21(yvy1530, yvy1540, efe) new_esEs40(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs33(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs41(EQ) -> False new_esEs24(EQ, EQ) -> True new_compare28(yvy204, yvy205, yvy206, yvy207, True, cdc, cdd) -> EQ new_primCompAux0(yvy132, GT) -> GT new_lt6(yvy1530, yvy1540, ty_@0) -> new_lt7(yvy1530, yvy1540) new_splitLT0(EmptyFM, yvy35, cd, ce) -> new_emptyFM(cd, ce) new_esEs33(yvy4000, yvy3000, ty_Float) -> new_esEs20(yvy4000, yvy3000) new_mkVBalBranch0(yvy40, yvy41, EmptyFM, yvy5, h, ba) -> new_addToFM(yvy5, yvy40, yvy41, h, ba) new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), yvy900, yvy901, yvy903, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), yvy50, yvy51, yvy904, yvy54, h, ba) new_primEqInt(Pos(Succ(yvy40000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(yvy30000))) -> False new_lt25(yvy40, yvy30, app(app(ty_Either, bh), ca)) -> new_lt18(yvy40, yvy30, bh, ca) new_lt26(yvy20, yvy15, ty_Char) -> new_lt16(yvy20, yvy15) new_esEs9(yvy400, yvy300, app(ty_Ratio, fba)) -> new_esEs19(yvy400, yvy300, fba) new_esEs29(yvy192, yvy195, app(ty_[], hb)) -> new_esEs21(yvy192, yvy195, hb) new_lt23(yvy204, yvy206, app(ty_Ratio, ceg)) -> new_lt4(yvy204, yvy206, ceg) new_sr1(Neg(yvy950)) -> Neg(new_primMulNat1(yvy950)) new_lt6(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_compare19(yvy241, yvy242, True, cbd, cbe) -> LT new_esEs23(Nothing, Just(yvy3000), cbh) -> False new_esEs23(Just(yvy4000), Nothing, cbh) -> False new_lt7(yvy40, yvy30) -> new_esEs12(new_compare11(yvy40, yvy30)) new_lt6(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_gt(yvy81, yvy76, ty_Float) -> new_gt13(yvy81, yvy76) new_gt10(yvy40, yvy30) -> new_esEs41(new_compare14(yvy40, yvy30)) new_addToFM_C20(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, False, fdf, fdg) -> new_addToFM_C10(yvy76, yvy77, yvy78, yvy79, yvy80, yvy81, yvy82, new_gt(yvy81, yvy76, fdf), fdf, fdg) new_esEs13(yvy1531, yvy1541, ty_Double) -> new_esEs26(yvy1531, yvy1541) new_lt5(yvy1531, yvy1541, ty_Char) -> new_lt16(yvy1531, yvy1541) new_esEs24(GT, GT) -> True new_lt5(yvy1531, yvy1541, app(ty_Ratio, eeb)) -> new_lt4(yvy1531, yvy1541, eeb) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Float) -> new_ltEs11(yvy1530, yvy1540) new_lt5(yvy1531, yvy1541, app(ty_Maybe, eeg)) -> new_lt14(yvy1531, yvy1541, eeg) new_ltEs20(yvy167, yvy168, ty_Ordering) -> new_ltEs14(yvy167, yvy168) new_compare17(Just(yvy400), Just(yvy300), bg) -> new_compare210(yvy400, yvy300, new_esEs7(yvy400, yvy300, bg), bg) new_gt3(yvy40, yvy30) -> new_esEs41(new_compare6(yvy40, yvy30)) new_ltEs24(yvy153, yvy154, ty_Float) -> new_ltEs11(yvy153, yvy154) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs20(yvy167, yvy168, app(ty_[], baf)) -> new_ltEs12(yvy167, yvy168, baf) new_esEs10(yvy401, yvy301, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs22(yvy401, yvy301, fbc, fbd, fbe) new_lt6(yvy1530, yvy1540, ty_Int) -> new_lt9(yvy1530, yvy1540) new_esEs33(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_gt8(yvy40, yvy30) -> new_esEs41(new_compare29(yvy40, yvy30)) new_gt14(yvy35, yvy30, ty_Float) -> new_gt13(yvy35, yvy30) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_esEs6(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_ltEs19(yvy193, yvy196, ty_@0) -> new_ltEs6(yvy193, yvy196) new_esEs23(Nothing, Nothing, cbh) -> True new_compare32(yvy400, yvy300, ty_Ordering) -> new_compare30(yvy400, yvy300) new_esEs39(yvy4001, yvy3001, app(app(ty_@2, dee), def)) -> new_esEs28(yvy4001, yvy3001, dee, def) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Integer) -> new_ltEs9(yvy1530, yvy1540) new_esEs29(yvy192, yvy195, ty_Integer) -> new_esEs18(yvy192, yvy195) new_compare7(Left(yvy400), Left(yvy300), bh, ca) -> new_compare25(yvy400, yvy300, new_esEs8(yvy400, yvy300, bh), bh, ca) new_esEs23(Just(yvy4000), Just(yvy3000), app(app(ty_@2, cce), ccf)) -> new_esEs28(yvy4000, yvy3000, cce, ccf) new_esEs7(yvy400, yvy300, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs22(yvy400, yvy300, cge, cgf, cgg) new_esEs33(yvy4000, yvy3000, ty_@0) -> new_esEs15(yvy4000, yvy3000) new_esEs7(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_lt21(yvy192, yvy195, ty_Char) -> new_lt16(yvy192, yvy195) new_esEs27(Left(yvy4000), Left(yvy3000), app(app(app(ty_@3, chh), daa), dab), chg) -> new_esEs22(yvy4000, yvy3000, chh, daa, dab) new_compare32(yvy400, yvy300, ty_Char) -> new_compare12(yvy400, yvy300) new_esEs31(yvy4001, yvy3001, app(app(ty_Either, bda), bdb)) -> new_esEs27(yvy4001, yvy3001, bda, bdb) new_addToFM_C0(Branch(yvy50, yvy51, yvy52, yvy53, yvy54), yvy40, yvy41, h, ba) -> new_addToFM_C20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy40, yvy41, new_lt24(yvy40, yvy50, h), h, ba) new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, False, cd, ce) -> new_splitLT10(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, new_gt14(yvy35, yvy30, cd), cd, ce) new_gt15(yvy40, yvy30, app(app(ty_@2, cb), cc)) -> new_gt5(yvy40, yvy30, cb, cc) new_primMinusNat0(Succ(yvy90200), Zero) -> Pos(Succ(yvy90200)) new_esEs4(yvy402, yvy302, app(ty_Ratio, dhf)) -> new_esEs19(yvy402, yvy302, dhf) new_gt5(yvy40, yvy30, cb, cc) -> new_esEs41(new_compare8(yvy40, yvy30, cb, cc)) new_fsEs(yvy295) -> new_not(new_esEs24(yvy295, GT)) new_esEs34(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs40(yvy4000, yvy3000, ty_Int) -> new_esEs17(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs38(yvy4002, yvy3002, ty_Ordering) -> new_esEs24(yvy4002, yvy3002) new_lt6(yvy1530, yvy1540, ty_Float) -> new_lt11(yvy1530, yvy1540) new_ltEs14(EQ, LT) -> False new_compare32(yvy400, yvy300, ty_Int) -> new_compare6(yvy400, yvy300) new_compare32(yvy400, yvy300, app(ty_Maybe, ebh)) -> new_compare17(yvy400, yvy300, ebh) new_esEs31(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs22(yvy160, yvy161, ty_Char) -> new_ltEs15(yvy160, yvy161) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Maybe, cda)) -> new_esEs23(yvy4000, yvy3000, cda) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Maybe, dag), chg) -> new_esEs23(yvy4000, yvy3000, dag) new_ltEs22(yvy160, yvy161, ty_Integer) -> new_ltEs9(yvy160, yvy161) new_ltEs23(yvy205, yvy207, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs4(yvy205, yvy207, cdg, cdh, cea) new_lt23(yvy204, yvy206, app(ty_[], ceh)) -> new_lt12(yvy204, yvy206, ceh) new_esEs24(LT, LT) -> True new_esEs33(yvy4000, yvy3000, ty_Ordering) -> new_esEs24(yvy4000, yvy3000) new_esEs5(yvy401, yvy301, ty_Float) -> new_esEs20(yvy401, yvy301) new_lt20(yvy191, yvy194, app(app(ty_@2, fd), ff)) -> new_lt19(yvy191, yvy194, fd, ff) new_primCmpNat0(Succ(yvy4000), Zero) -> GT new_esEs38(yvy4002, yvy3002, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(yvy4002, yvy3002, dch, dda, ddb) new_addToFM_C10(yvy105, yvy106, yvy107, yvy108, yvy109, yvy110, yvy111, False, gfc, gfd) -> Branch(yvy110, yvy111, yvy107, yvy108, yvy109) new_ltEs15(yvy153, yvy154) -> new_fsEs(new_compare12(yvy153, yvy154)) new_pePe(False, yvy294) -> yvy294 new_ltEs23(yvy205, yvy207, ty_Int) -> new_ltEs8(yvy205, yvy207) new_gt(yvy81, yvy76, ty_@0) -> new_gt12(yvy81, yvy76) new_esEs11(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_compare25(yvy160, yvy161, True, bhh, caa) -> EQ new_gt14(yvy35, yvy30, ty_@0) -> new_gt12(yvy35, yvy30) new_compare210(yvy153, yvy154, True, geh) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_splitLT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba) new_esEs31(yvy4001, yvy3001, ty_Integer) -> new_esEs18(yvy4001, yvy3001) new_esEs6(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_primMinusNat0(Succ(yvy90200), Succ(yvy21700)) -> new_primMinusNat0(yvy90200, yvy21700) new_compare32(yvy400, yvy300, app(app(ty_Either, eca), ecb)) -> new_compare7(yvy400, yvy300, eca, ecb) new_esEs39(yvy4001, yvy3001, app(ty_Maybe, dfa)) -> new_esEs23(yvy4001, yvy3001, dfa) new_lt22(yvy1530, yvy1540, ty_Integer) -> new_lt10(yvy1530, yvy1540) new_lt13(yvy40, yvy30, bd, be, bf) -> new_esEs12(new_compare31(yvy40, yvy30, bd, be, bf)) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_[], cca)) -> new_esEs21(yvy4000, yvy3000, cca) new_compare27(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, False, ea, eb, ec) -> new_compare10(yvy191, yvy192, yvy193, yvy194, yvy195, yvy196, new_lt20(yvy191, yvy194, ea), new_asAs(new_esEs30(yvy191, yvy194, ea), new_pePe(new_lt21(yvy192, yvy195, eb), new_asAs(new_esEs29(yvy192, yvy195, eb), new_ltEs19(yvy193, yvy196, ec)))), ea, eb, ec) new_lt5(yvy1531, yvy1541, app(app(ty_@2, efb), efc)) -> new_lt19(yvy1531, yvy1541, efb, efc) new_primEqInt(Pos(Zero), Neg(Succ(yvy30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(yvy30000))) -> False new_lt22(yvy1530, yvy1540, ty_Ordering) -> new_lt15(yvy1530, yvy1540) new_mkBalBranch6MkBalBranch4(yvy50, yvy51, Branch(yvy540, yvy541, yvy542, yvy543, yvy544), yvy90, True, h, ba) -> new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, yvy543, yvy544, yvy90, new_lt9(new_sizeFM0(yvy543, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy544, h, ba))), h, ba) new_ltEs19(yvy193, yvy196, app(app(ty_Either, ge), gf)) -> new_ltEs17(yvy193, yvy196, ge, gf) new_lt6(yvy1530, yvy1540, app(app(app(ty_@3, eff), efg), efh)) -> new_lt13(yvy1530, yvy1540, eff, efg, efh) new_gt7(yvy40, yvy30, bb) -> new_esEs41(new_compare5(yvy40, yvy30, bb)) new_mkBranchResult(yvy50, yvy51, yvy90, yvy54, h, ba) -> Branch(yvy50, yvy51, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(yvy90, h, ba)), new_sizeFM0(yvy54, h, ba)), yvy90, yvy54) new_esEs7(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs4(yvy402, yvy302, app(app(app(ty_@3, dgf), dgg), dgh)) -> new_esEs22(yvy402, yvy302, dgf, dgg, dgh) new_esEs9(yvy400, yvy300, ty_Char) -> new_esEs25(yvy400, yvy300) new_esEs8(yvy400, yvy300, app(app(ty_Either, ehd), ehe)) -> new_esEs27(yvy400, yvy300, ehd, ehe) new_ltEs5(yvy1532, yvy1542, app(ty_Maybe, ede)) -> new_ltEs13(yvy1532, yvy1542, ede) new_ltEs14(GT, EQ) -> False new_ltEs22(yvy160, yvy161, ty_Float) -> new_ltEs11(yvy160, yvy161) new_gt4(yvy40, yvy30, bg) -> new_esEs41(new_compare17(yvy40, yvy30, bg)) new_ltEs20(yvy167, yvy168, ty_Double) -> new_ltEs16(yvy167, yvy168) new_compare30(LT, GT) -> LT new_esEs27(Left(yvy4000), Left(yvy3000), app(app(ty_Either, dae), daf), chg) -> new_esEs27(yvy4000, yvy3000, dae, daf) new_esEs8(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(app(app(ty_@3, hc), hd), he)) -> new_lt13(yvy192, yvy195, hc, hd, he) new_esEs28(@2(yvy4000, yvy4001), @2(yvy3000, yvy3001), bca, bcb) -> new_asAs(new_esEs32(yvy4000, yvy3000, bca), new_esEs31(yvy4001, yvy3001, bcb)) new_esEs31(yvy4001, yvy3001, ty_@0) -> new_esEs15(yvy4001, yvy3001) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs5(yvy1532, yvy1542, ty_Float) -> new_ltEs11(yvy1532, yvy1542) new_ltEs19(yvy193, yvy196, app(ty_Ratio, fg)) -> new_ltEs10(yvy193, yvy196, fg) new_compare15(yvy278, yvy279, yvy280, yvy281, True, yvy283, beg, beh) -> new_compare16(yvy278, yvy279, yvy280, yvy281, True, beg, beh) new_esEs29(yvy192, yvy195, ty_Bool) -> new_esEs16(yvy192, yvy195) new_esEs32(yvy4000, yvy3000, app(ty_Maybe, bee)) -> new_esEs23(yvy4000, yvy3000, bee) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_Either, gaa), gab), fhb) -> new_ltEs17(yvy1530, yvy1540, gaa, gab) new_ltEs12(yvy153, yvy154, bfa) -> new_fsEs(new_compare0(yvy153, yvy154, bfa)) new_esEs33(yvy4000, yvy3000, app(app(ty_Either, fgb), fgc)) -> new_esEs27(yvy4000, yvy3000, fgb, fgc) new_esEs18(Integer(yvy4000), Integer(yvy3000)) -> new_primEqInt(yvy4000, yvy3000) new_gt15(yvy40, yvy30, app(ty_Ratio, bb)) -> new_gt7(yvy40, yvy30, bb) new_lt24(yvy40, yvy50, ty_Ordering) -> new_lt15(yvy40, yvy50) new_ltEs23(yvy205, yvy207, app(app(ty_Either, cec), ced)) -> new_ltEs17(yvy205, yvy207, cec, ced) new_lt23(yvy204, yvy206, ty_Char) -> new_lt16(yvy204, yvy206) new_esEs23(Just(yvy4000), Just(yvy3000), app(ty_Ratio, cdb)) -> new_esEs19(yvy4000, yvy3000, cdb) new_esEs10(yvy401, yvy301, ty_Char) -> new_esEs25(yvy401, yvy301) new_esEs40(yvy4000, yvy3000, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs22(yvy4000, yvy3000, dfd, dfe, dff) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Double, chg) -> new_esEs26(yvy4000, yvy3000) new_esEs36(yvy1530, yvy1540, ty_Int) -> new_esEs17(yvy1530, yvy1540) new_esEs39(yvy4001, yvy3001, ty_Bool) -> new_esEs16(yvy4001, yvy3001) new_ltEs23(yvy205, yvy207, ty_Double) -> new_ltEs16(yvy205, yvy207) new_esEs29(yvy192, yvy195, app(ty_Maybe, hf)) -> new_esEs23(yvy192, yvy195, hf) new_esEs31(yvy4001, yvy3001, ty_Float) -> new_esEs20(yvy4001, yvy3001) new_ltEs7(False, True) -> True new_esEs30(yvy191, yvy194, ty_Ordering) -> new_esEs24(yvy191, yvy194) new_primMulNat1(Zero) -> Zero new_lt24(yvy40, yvy50, ty_Int) -> new_lt9(yvy40, yvy50) new_ltEs21(yvy1531, yvy1541, app(app(ty_Either, bgb), bgc)) -> new_ltEs17(yvy1531, yvy1541, bgb, bgc) new_esEs13(yvy1531, yvy1541, ty_Int) -> new_esEs17(yvy1531, yvy1541) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Char) -> new_ltEs15(yvy1530, yvy1540) new_lt25(yvy40, yvy30, ty_Float) -> new_lt11(yvy40, yvy30) new_esEs5(yvy401, yvy301, ty_@0) -> new_esEs15(yvy401, yvy301) new_esEs11(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs7(True, False) -> False new_mkBalBranch6MkBalBranch01(yvy50, yvy51, yvy540, yvy541, yvy542, Branch(yvy5430, yvy5431, yvy5432, yvy5433, yvy5434), yvy544, yvy90, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), yvy5430, yvy5431, new_mkBranchResult(yvy50, yvy51, yvy90, yvy5433, h, ba), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), yvy540, yvy541, yvy5434, yvy544, h, ba) new_compare30(EQ, GT) -> LT new_ltEs19(yvy193, yvy196, ty_Integer) -> new_ltEs9(yvy193, yvy196) new_compare19(yvy241, yvy242, False, cbd, cbe) -> GT new_ltEs19(yvy193, yvy196, ty_Float) -> new_ltEs11(yvy193, yvy196) new_esEs6(yvy400, yvy300, app(ty_Maybe, cbh)) -> new_esEs23(yvy400, yvy300, cbh) new_compare12(Char(yvy400), Char(yvy300)) -> new_primCmpNat0(yvy400, yvy300) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, cga, cgb, cgc) -> LT new_primMulInt(Neg(yvy4000), Neg(yvy3010)) -> Pos(new_primMulNat0(yvy4000, yvy3010)) new_primCmpInt(Pos(Zero), Pos(Succ(yvy3000))) -> new_primCmpNat0(Zero, Succ(yvy3000)) new_sr1(Pos(yvy950)) -> Pos(new_primMulNat1(yvy950)) new_ltEs7(False, False) -> True new_lt24(yvy40, yvy50, ty_Float) -> new_lt11(yvy40, yvy50) new_compare9(Float(yvy400, Pos(yvy4010)), Float(yvy300, Pos(yvy3010))) -> new_compare6(new_sr(yvy400, Pos(yvy3010)), new_sr(Pos(yvy4010), yvy300)) new_ltEs13(Just(yvy1530), Just(yvy1540), ty_@0) -> new_ltEs6(yvy1530, yvy1540) new_esEs11(yvy400, yvy300, app(app(ty_Either, fdb), fdc)) -> new_esEs27(yvy400, yvy300, fdb, fdc) new_lt20(yvy191, yvy194, app(ty_[], ee)) -> new_lt12(yvy191, yvy194, ee) new_esEs29(yvy192, yvy195, ty_@0) -> new_esEs15(yvy192, yvy195) new_ltEs21(yvy1531, yvy1541, app(ty_Ratio, bfd)) -> new_ltEs10(yvy1531, yvy1541, bfd) new_esEs30(yvy191, yvy194, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs22(yvy191, yvy194, ef, eg, eh) new_gt(yvy81, yvy76, ty_Int) -> new_gt3(yvy81, yvy76) new_ltEs17(Left(yvy1530), Left(yvy1540), app(ty_Maybe, fhh), fhb) -> new_ltEs13(yvy1530, yvy1540, fhh) new_esEs37(yvy204, yvy206, app(app(ty_@2, cfg), cfh)) -> new_esEs28(yvy204, yvy206, cfg, cfh) new_compare32(yvy400, yvy300, ty_Integer) -> new_compare14(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Integer) -> new_ltEs9(yvy1532, yvy1542) new_esEs30(yvy191, yvy194, ty_@0) -> new_esEs15(yvy191, yvy194) new_lt23(yvy204, yvy206, app(ty_Maybe, cfd)) -> new_lt14(yvy204, yvy206, cfd) new_compare18(Double(yvy400, Neg(yvy4010)), Double(yvy300, Neg(yvy3010))) -> new_compare6(new_sr(yvy400, Neg(yvy3010)), new_sr(Neg(yvy4010), yvy300)) new_esEs14(yvy1530, yvy1540, app(app(ty_@2, egd), ege)) -> new_esEs28(yvy1530, yvy1540, egd, ege) new_lt5(yvy1531, yvy1541, app(ty_[], eec)) -> new_lt12(yvy1531, yvy1541, eec) new_esEs37(yvy204, yvy206, app(ty_Ratio, ceg)) -> new_esEs19(yvy204, yvy206, ceg) new_ltEs24(yvy153, yvy154, app(app(ty_@2, bfb), bfc)) -> new_ltEs18(yvy153, yvy154, bfb, bfc) new_lt22(yvy1530, yvy1540, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt13(yvy1530, yvy1540, bgh, bha, bhb) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_[], chf), chg) -> new_esEs21(yvy4000, yvy3000, chf) new_esEs32(yvy4000, yvy3000, ty_Char) -> new_esEs25(yvy4000, yvy3000) new_ltEs14(GT, LT) -> False new_esEs7(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_esEs4(yvy402, yvy302, ty_Int) -> new_esEs17(yvy402, yvy302) new_compare30(GT, LT) -> GT new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, False, h, ba) -> new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, new_lt9(new_sr1(new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), new_mkVBalBranch3Size_l(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba)), h, ba) new_ltEs9(yvy153, yvy154) -> new_fsEs(new_compare14(yvy153, yvy154)) new_primMulInt(Pos(yvy4000), Neg(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_primMulInt(Neg(yvy4000), Pos(yvy3010)) -> Neg(new_primMulNat0(yvy4000, yvy3010)) new_compare30(EQ, LT) -> GT new_compare7(Right(yvy400), Right(yvy300), bh, ca) -> new_compare26(yvy400, yvy300, new_esEs9(yvy400, yvy300, ca), bh, ca) new_lt19(yvy40, yvy30, cb, cc) -> new_esEs12(new_compare8(yvy40, yvy30, cb, cc)) new_esEs7(yvy400, yvy300, app(ty_Ratio, che)) -> new_esEs19(yvy400, yvy300, che) new_ltEs21(yvy1531, yvy1541, app(ty_Maybe, bga)) -> new_ltEs13(yvy1531, yvy1541, bga) new_esEs9(yvy400, yvy300, ty_Ordering) -> new_esEs24(yvy400, yvy300) new_esEs40(yvy4000, yvy3000, app(ty_Ratio, dgd)) -> new_esEs19(yvy4000, yvy3000, dgd) new_esEs8(yvy400, yvy300, ty_Float) -> new_esEs20(yvy400, yvy300) new_esEs30(yvy191, yvy194, ty_Char) -> new_esEs25(yvy191, yvy194) new_lt25(yvy40, yvy30, ty_Double) -> new_lt17(yvy40, yvy30) new_ltEs24(yvy153, yvy154, ty_Int) -> new_ltEs8(yvy153, yvy154) new_sr0(Integer(yvy4000), Integer(yvy3010)) -> Integer(new_primMulInt(yvy4000, yvy3010)) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Int, chg) -> new_esEs17(yvy4000, yvy3000) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Bool) -> new_ltEs7(yvy1530, yvy1540) new_ltEs21(yvy1531, yvy1541, ty_Float) -> new_ltEs11(yvy1531, yvy1541) new_splitGT30(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, h, ba) -> new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba) new_esEs5(yvy401, yvy301, app(app(ty_@2, eac), ead)) -> new_esEs28(yvy401, yvy301, eac, ead) new_lt25(yvy40, yvy30, app(ty_Maybe, bg)) -> new_lt14(yvy40, yvy30, bg) new_esEs9(yvy400, yvy300, app(app(ty_@2, fad), fae)) -> new_esEs28(yvy400, yvy300, fad, fae) new_ltEs22(yvy160, yvy161, app(app(ty_@2, cbb), cbc)) -> new_ltEs18(yvy160, yvy161, cbb, cbc) new_lt25(yvy40, yvy30, app(ty_Ratio, bb)) -> new_lt4(yvy40, yvy30, bb) new_ltEs20(yvy167, yvy168, ty_Char) -> new_ltEs15(yvy167, yvy168) new_lt21(yvy192, yvy195, ty_Integer) -> new_lt10(yvy192, yvy195) new_gt15(yvy40, yvy30, app(ty_[], bc)) -> new_gt1(yvy40, yvy30, bc) new_esEs27(Left(yvy4000), Left(yvy3000), ty_Float, chg) -> new_esEs20(yvy4000, yvy3000) new_gt1(yvy40, yvy30, bc) -> new_esEs41(new_compare0(yvy40, yvy30, bc)) new_asAs(True, yvy229) -> yvy229 new_esEs37(yvy204, yvy206, app(ty_[], ceh)) -> new_esEs21(yvy204, yvy206, ceh) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(ty_@2, gac), gad), fhb) -> new_ltEs18(yvy1530, yvy1540, gac, gad) new_lt20(yvy191, yvy194, app(ty_Ratio, ed)) -> new_lt4(yvy191, yvy194, ed) new_esEs27(Left(yvy4000), Left(yvy3000), app(ty_Ratio, dah), chg) -> new_esEs19(yvy4000, yvy3000, dah) new_ltEs21(yvy1531, yvy1541, ty_Integer) -> new_ltEs9(yvy1531, yvy1541) new_ltEs22(yvy160, yvy161, ty_Ordering) -> new_ltEs14(yvy160, yvy161) new_ltEs23(yvy205, yvy207, ty_Bool) -> new_ltEs7(yvy205, yvy207) new_esEs36(yvy1530, yvy1540, ty_Double) -> new_esEs26(yvy1530, yvy1540) new_primPlusInt(Pos(yvy9020), Neg(yvy2170)) -> new_primMinusNat0(yvy9020, yvy2170) new_primPlusInt(Neg(yvy9020), Pos(yvy2170)) -> new_primMinusNat0(yvy2170, yvy9020) new_lt26(yvy20, yvy15, ty_Int) -> new_lt9(yvy20, yvy15) new_esEs9(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_esEs32(yvy4000, yvy3000, app(ty_[], bde)) -> new_esEs21(yvy4000, yvy3000, bde) new_lt26(yvy20, yvy15, app(app(app(ty_@3, gce), gcf), gcg)) -> new_lt13(yvy20, yvy15, gce, gcf, gcg) new_gt11(yvy40, yvy30) -> new_esEs41(new_compare30(yvy40, yvy30)) new_compare0([], [], bc) -> EQ new_ltEs13(Just(yvy1530), Just(yvy1540), app(app(ty_Either, ged), gee)) -> new_ltEs17(yvy1530, yvy1540, ged, gee) new_mkBalBranch6Size_r(yvy50, yvy51, yvy54, yvy90, h, ba) -> new_sizeFM0(yvy54, h, ba) new_sr(yvy400, yvy301) -> new_primMulInt(yvy400, yvy301) new_esEs7(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_esEs9(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs17(Left(yvy1530), Left(yvy1540), ty_Double, fhb) -> new_ltEs16(yvy1530, yvy1540) new_lt26(yvy20, yvy15, ty_Ordering) -> new_lt15(yvy20, yvy15) new_primMulNat0(Zero, Zero) -> Zero new_ltEs22(yvy160, yvy161, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs4(yvy160, yvy161, cad, cae, caf) new_esEs8(yvy400, yvy300, app(ty_Maybe, ehf)) -> new_esEs23(yvy400, yvy300, ehf) new_esEs27(Left(yvy4000), Right(yvy3000), dba, chg) -> False new_esEs27(Right(yvy4000), Left(yvy3000), dba, chg) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Char, chg) -> new_esEs25(yvy4000, yvy3000) new_esEs39(yvy4001, yvy3001, app(ty_Ratio, dfb)) -> new_esEs19(yvy4001, yvy3001, dfb) new_compare10(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, yvy270, cga, cgb, cgc) -> new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, True, cga, cgb, cgc) new_ltEs21(yvy1531, yvy1541, ty_Ordering) -> new_ltEs14(yvy1531, yvy1541) new_lt25(yvy40, yvy30, ty_Ordering) -> new_lt15(yvy40, yvy30) new_ltEs19(yvy193, yvy196, app(ty_Maybe, gd)) -> new_ltEs13(yvy193, yvy196, gd) new_esEs9(yvy400, yvy300, ty_Integer) -> new_esEs18(yvy400, yvy300) new_lt21(yvy192, yvy195, app(ty_Ratio, ha)) -> new_lt4(yvy192, yvy195, ha) new_esEs30(yvy191, yvy194, ty_Float) -> new_esEs20(yvy191, yvy194) new_esEs27(Right(yvy4000), Right(yvy3000), dba, ty_Integer) -> new_esEs18(yvy4000, yvy3000) new_esEs24(EQ, GT) -> False new_esEs24(GT, EQ) -> False new_compare5(:%(yvy400, yvy401), :%(yvy300, yvy301), ty_Int) -> new_compare6(new_sr(yvy400, yvy301), new_sr(yvy300, yvy401)) new_primCompAux0(yvy132, EQ) -> yvy132 new_esEs27(Left(yvy4000), Left(yvy3000), ty_Ordering, chg) -> new_esEs24(yvy4000, yvy3000) new_compare111(yvy263, yvy264, yvy265, yvy266, yvy267, yvy268, False, cga, cgb, cgc) -> GT new_compare7(Right(yvy400), Left(yvy300), bh, ca) -> GT new_esEs8(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_gt(yvy81, yvy76, app(app(ty_@2, feh), ffa)) -> new_gt5(yvy81, yvy76, feh, ffa) new_primEqInt(Neg(Succ(yvy40000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(yvy30000))) -> False new_esEs4(yvy402, yvy302, app(app(ty_@2, dha), dhb)) -> new_esEs28(yvy402, yvy302, dha, dhb) new_esEs29(yvy192, yvy195, ty_Float) -> new_esEs20(yvy192, yvy195) new_lt16(yvy40, yvy30) -> new_esEs12(new_compare12(yvy40, yvy30)) new_primEqInt(Pos(Succ(yvy40000)), Pos(Succ(yvy30000))) -> new_primEqNat0(yvy40000, yvy30000) new_gt14(yvy35, yvy30, app(app(ty_@2, dg), dh)) -> new_gt5(yvy35, yvy30, dg, dh) new_lt26(yvy20, yvy15, app(app(ty_@2, gdc), gdd)) -> new_lt19(yvy20, yvy15, gdc, gdd) new_ltEs24(yvy153, yvy154, app(app(ty_Either, gae), fhb)) -> new_ltEs17(yvy153, yvy154, gae, fhb) new_ltEs21(yvy1531, yvy1541, app(app(ty_@2, bgd), bge)) -> new_ltEs18(yvy1531, yvy1541, bgd, bge) new_esEs29(yvy192, yvy195, ty_Char) -> new_esEs25(yvy192, yvy195) new_esEs36(yvy1530, yvy1540, app(ty_[], bgg)) -> new_esEs21(yvy1530, yvy1540, bgg) new_primPlusNat1(yvy284, yvy9500) -> new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(new_primPlusNat0(yvy284, Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)), Succ(yvy9500)) new_esEs8(yvy400, yvy300, ty_@0) -> new_esEs15(yvy400, yvy300) new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) -> yvy52 new_ltEs5(yvy1532, yvy1542, ty_Bool) -> new_ltEs7(yvy1532, yvy1542) new_mkVBalBranch3MkVBalBranch20(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy50, yvy51, new_mkVBalBranch0(yvy40, yvy41, Branch(yvy60, yvy61, yvy62, yvy63, yvy64), yvy53, h, ba), yvy54, h, ba) new_ltEs18(@2(yvy1530, yvy1531), @2(yvy1540, yvy1541), bfb, bfc) -> new_pePe(new_lt22(yvy1530, yvy1540, bfb), new_asAs(new_esEs36(yvy1530, yvy1540, bfb), new_ltEs21(yvy1531, yvy1541, bfc))) new_primEqInt(Pos(Succ(yvy40000)), Neg(yvy3000)) -> False new_primEqInt(Neg(Succ(yvy40000)), Pos(yvy3000)) -> False new_primCmpInt(Neg(Zero), Neg(Succ(yvy3000))) -> new_primCmpNat0(Succ(yvy3000), Zero) new_ltEs17(Left(yvy1530), Left(yvy1540), app(app(app(ty_@3, fhe), fhf), fhg), fhb) -> new_ltEs4(yvy1530, yvy1540, fhe, fhf, fhg) new_esEs9(yvy400, yvy300, app(ty_Maybe, fah)) -> new_esEs23(yvy400, yvy300, fah) new_ltEs5(yvy1532, yvy1542, ty_Double) -> new_ltEs16(yvy1532, yvy1542) new_lt21(yvy192, yvy195, app(app(ty_@2, baa), bab)) -> new_lt19(yvy192, yvy195, baa, bab) new_mkVBalBranch3MkVBalBranch10(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, yvy40, yvy41, True, h, ba) -> new_mkBalBranch(yvy60, yvy61, yvy63, new_mkVBalBranch0(yvy40, yvy41, yvy64, Branch(yvy50, yvy51, yvy52, yvy53, yvy54), h, ba), h, ba) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs19(yvy193, yvy196, app(app(app(ty_@3, ga), gb), gc)) -> new_ltEs4(yvy193, yvy196, ga, gb, gc) new_lt24(yvy40, yvy50, ty_Double) -> new_lt17(yvy40, yvy50) new_lt26(yvy20, yvy15, app(ty_Ratio, gcb)) -> new_lt4(yvy20, yvy15, gcb) new_compare26(yvy167, yvy168, False, bac, bad) -> new_compare13(yvy167, yvy168, new_ltEs20(yvy167, yvy168, bad), bac, bad) new_lt26(yvy20, yvy15, app(ty_Maybe, gch)) -> new_lt14(yvy20, yvy15, gch) new_lt25(yvy40, yvy30, app(app(app(ty_@3, bd), be), bf)) -> new_lt13(yvy40, yvy30, bd, be, bf) new_esEs6(yvy400, yvy300, app(app(ty_@2, bca), bcb)) -> new_esEs28(yvy400, yvy300, bca, bcb) new_mkVBalBranch3Size_r(yvy50, yvy51, yvy52, yvy53, yvy54, yvy60, yvy61, yvy62, yvy63, yvy64, h, ba) -> new_sizeFM(yvy50, yvy51, yvy52, yvy53, yvy54, h, ba) new_esEs31(yvy4001, yvy3001, app(ty_[], bcc)) -> new_esEs21(yvy4001, yvy3001, bcc) new_esEs8(yvy400, yvy300, ty_Bool) -> new_esEs16(yvy400, yvy300) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, ty_Int) -> new_ltEs8(yvy1530, yvy1540) new_not(False) -> True new_esEs29(yvy192, yvy195, app(app(ty_Either, hg), hh)) -> new_esEs27(yvy192, yvy195, hg, hh) new_lt22(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_esEs8(yvy400, yvy300, app(ty_Ratio, ehg)) -> new_esEs19(yvy400, yvy300, ehg) new_ltEs24(yvy153, yvy154, ty_Integer) -> new_ltEs9(yvy153, yvy154) new_esEs5(yvy401, yvy301, ty_Int) -> new_esEs17(yvy401, yvy301) new_compare32(yvy400, yvy300, ty_Double) -> new_compare18(yvy400, yvy300) new_ltEs24(yvy153, yvy154, ty_Bool) -> new_ltEs7(yvy153, yvy154) new_esEs30(yvy191, yvy194, app(app(ty_Either, fb), fc)) -> new_esEs27(yvy191, yvy194, fb, fc) new_compare30(EQ, EQ) -> EQ new_compare31(@3(yvy400, yvy401, yvy402), @3(yvy300, yvy301, yvy302), bd, be, bf) -> new_compare27(yvy400, yvy401, yvy402, yvy300, yvy301, yvy302, new_asAs(new_esEs6(yvy400, yvy300, bd), new_asAs(new_esEs5(yvy401, yvy301, be), new_esEs4(yvy402, yvy302, bf))), bd, be, bf) new_esEs41(LT) -> False new_lt18(yvy40, yvy30, bh, ca) -> new_esEs12(new_compare7(yvy40, yvy30, bh, ca)) new_lt5(yvy1531, yvy1541, ty_Double) -> new_lt17(yvy1531, yvy1541) new_esEs39(yvy4001, yvy3001, ty_Double) -> new_esEs26(yvy4001, yvy3001) new_compare30(LT, EQ) -> LT new_ltEs21(yvy1531, yvy1541, ty_Int) -> new_ltEs8(yvy1531, yvy1541) new_lt22(yvy1530, yvy1540, app(app(ty_@2, bhf), bhg)) -> new_lt19(yvy1530, yvy1540, bhf, bhg) new_esEs9(yvy400, yvy300, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs22(yvy400, yvy300, faa, fab, fac) new_ltEs19(yvy193, yvy196, app(app(ty_@2, gg), gh)) -> new_ltEs18(yvy193, yvy196, gg, gh) new_esEs27(Left(yvy4000), Left(yvy3000), ty_@0, chg) -> new_esEs15(yvy4000, yvy3000) new_ltEs22(yvy160, yvy161, ty_@0) -> new_ltEs6(yvy160, yvy161) new_ltEs5(yvy1532, yvy1542, app(app(app(ty_@3, edb), edc), edd)) -> new_ltEs4(yvy1532, yvy1542, edb, edc, edd) new_esEs8(yvy400, yvy300, app(app(ty_@2, ehb), ehc)) -> new_esEs28(yvy400, yvy300, ehb, ehc) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(yvy191, yvy194, ty_Double) -> new_lt17(yvy191, yvy194) new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, True, ffb, ffc) -> new_mkVBalBranch0(yvy60, yvy61, yvy63, new_splitLT0(yvy64, yvy65, ffb, ffc), ffb, ffc) new_ltEs14(LT, EQ) -> True new_lt24(yvy40, yvy50, ty_Integer) -> new_lt10(yvy40, yvy50) new_ltEs22(yvy160, yvy161, app(ty_Maybe, cag)) -> new_ltEs13(yvy160, yvy161, cag) new_esEs6(yvy400, yvy300, app(ty_Ratio, ebb)) -> new_esEs19(yvy400, yvy300, ebb) new_lt25(yvy40, yvy30, app(app(ty_@2, cb), cc)) -> new_lt19(yvy40, yvy30, cb, cc) new_mkBalBranch6MkBalBranch3(yvy50, yvy51, yvy54, Branch(yvy900, yvy901, yvy902, yvy903, yvy904), True, h, ba) -> new_mkBalBranch6MkBalBranch11(yvy50, yvy51, yvy54, yvy900, yvy901, yvy902, yvy903, yvy904, new_lt9(new_sizeFM0(yvy904, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(yvy903, h, ba))), h, ba) new_esEs40(yvy4000, yvy3000, ty_Double) -> new_esEs26(yvy4000, yvy3000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(yvy400, yvy300, ty_Double) -> new_esEs26(yvy400, yvy300) new_ltEs21(yvy1531, yvy1541, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs4(yvy1531, yvy1541, bff, bfg, bfh) new_esEs11(yvy400, yvy300, app(ty_[], fcd)) -> new_esEs21(yvy400, yvy300, fcd) new_ltEs6(yvy153, yvy154) -> new_fsEs(new_compare11(yvy153, yvy154)) new_gt15(yvy40, yvy30, ty_Double) -> new_gt2(yvy40, yvy30) new_esEs8(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_ltEs5(yvy1532, yvy1542, ty_Int) -> new_ltEs8(yvy1532, yvy1542) new_esEs25(Char(yvy4000), Char(yvy3000)) -> new_primEqNat0(yvy4000, yvy3000) new_ltEs21(yvy1531, yvy1541, ty_Bool) -> new_ltEs7(yvy1531, yvy1541) new_lt24(yvy40, yvy50, app(app(ty_@2, cb), cc)) -> new_lt19(yvy40, yvy50, cb, cc) new_addToFM_C0(EmptyFM, yvy40, yvy41, h, ba) -> Branch(yvy40, yvy41, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_ltEs5(yvy1532, yvy1542, app(app(ty_@2, edh), eea)) -> new_ltEs18(yvy1532, yvy1542, edh, eea) new_compare15(yvy278, yvy279, yvy280, yvy281, False, yvy283, beg, beh) -> new_compare16(yvy278, yvy279, yvy280, yvy281, yvy283, beg, beh) new_esEs10(yvy401, yvy301, app(ty_[], fbb)) -> new_esEs21(yvy401, yvy301, fbb) new_gt(yvy81, yvy76, ty_Double) -> new_gt2(yvy81, yvy76) new_compare32(yvy400, yvy300, app(app(ty_@2, ecc), ecd)) -> new_compare8(yvy400, yvy300, ecc, ecd) new_ltEs20(yvy167, yvy168, ty_Int) -> new_ltEs8(yvy167, yvy168) new_esEs4(yvy402, yvy302, ty_Double) -> new_esEs26(yvy402, yvy302) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(yvy153, yvy154, ty_Char) -> new_ltEs15(yvy153, yvy154) new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy35, True, cd, ce) -> new_splitLT0(yvy33, yvy35, cd, ce) new_ltEs24(yvy153, yvy154, app(ty_Maybe, gde)) -> new_ltEs13(yvy153, yvy154, gde) new_lt23(yvy204, yvy206, app(app(ty_@2, cfg), cfh)) -> new_lt19(yvy204, yvy206, cfg, cfh) new_ltEs24(yvy153, yvy154, ty_@0) -> new_ltEs6(yvy153, yvy154) new_primEqNat0(Zero, Zero) -> True new_lt26(yvy20, yvy15, ty_Integer) -> new_lt10(yvy20, yvy15) new_lt21(yvy192, yvy195, ty_Double) -> new_lt17(yvy192, yvy195) new_compare17(Nothing, Just(yvy300), bg) -> LT new_lt25(yvy40, yvy30, ty_Integer) -> new_lt10(yvy40, yvy30) new_esEs33(yvy4000, yvy3000, app(ty_[], ffd)) -> new_esEs21(yvy4000, yvy3000, ffd) new_esEs27(Right(yvy4000), Right(yvy3000), dba, app(ty_[], dbb)) -> new_esEs21(yvy4000, yvy3000, dbb) new_ltEs23(yvy205, yvy207, app(ty_Maybe, ceb)) -> new_ltEs13(yvy205, yvy207, ceb) new_ltEs17(Right(yvy1530), Right(yvy1540), gae, app(ty_Maybe, gbc)) -> new_ltEs13(yvy1530, yvy1540, gbc) new_asAs(False, yvy229) -> False new_esEs27(Left(yvy4000), Left(yvy3000), ty_Bool, chg) -> new_esEs16(yvy4000, yvy3000) new_ltEs23(yvy205, yvy207, ty_@0) -> new_ltEs6(yvy205, yvy207) new_lt24(yvy40, yvy50, app(ty_Ratio, bb)) -> new_lt4(yvy40, yvy50, bb) new_ltEs19(yvy193, yvy196, ty_Int) -> new_ltEs8(yvy193, yvy196) new_gt13(yvy40, yvy30) -> new_esEs41(new_compare9(yvy40, yvy30)) new_esEs5(yvy401, yvy301, ty_Double) -> new_esEs26(yvy401, yvy301) new_lt6(yvy1530, yvy1540, ty_Double) -> new_lt17(yvy1530, yvy1540) new_compare16(yvy278, yvy279, yvy280, yvy281, False, beg, beh) -> GT new_ltEs20(yvy167, yvy168, app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs4(yvy167, yvy168, bag, bah, bba) new_ltEs23(yvy205, yvy207, ty_Ordering) -> new_ltEs14(yvy205, yvy207) new_compare32(yvy400, yvy300, app(ty_Ratio, ebc)) -> new_compare5(yvy400, yvy300, ebc) new_gt14(yvy35, yvy30, ty_Double) -> new_gt2(yvy35, yvy30) new_esEs7(yvy400, yvy300, ty_Int) -> new_esEs17(yvy400, yvy300) new_splitLT10(yvy60, yvy61, yvy62, yvy63, yvy64, yvy65, False, ffb, ffc) -> yvy63 new_esEs7(yvy400, yvy300, app(app(ty_@2, cgh), cha)) -> new_esEs28(yvy400, yvy300, cgh, cha) new_ltEs22(yvy160, yvy161, ty_Bool) -> new_ltEs7(yvy160, yvy161) The set Q consists of the following terms: new_esEs8(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt25(x0, x1, app(app(ty_Either, x2), x3)) new_compare32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Char) new_esEs37(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(x0, x1, ty_Integer) new_fsEs(x0) new_lt25(x0, x1, ty_Double) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare17(Just(x0), Nothing, x1) new_esEs4(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Double) new_compare11(@0, @0) new_compare210(x0, x1, True, x2) new_esEs4(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_mkVBalBranch0(x0, x1, EmptyFM, x2, x3, x4) new_esEs7(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_lt13(x0, x1, x2, x3, x4) new_gt8(x0, x1) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMulNat0(Zero, Succ(x0)) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), EmptyFM, x7, x8) new_lt25(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs36(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs27(Left(x0), Left(x1), ty_Int, x2) new_esEs14(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Nothing, Nothing, x0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_gt14(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Bool) new_splitGT30(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs23(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_gt14(x0, x1, app(ty_[], x2)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1) new_esEs10(x0, x1, ty_Float) new_mkVBalBranch3Size_r(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_lt25(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs40(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs8(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt15(x0, x1, ty_Int) new_gt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_gt15(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Double) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(False, False) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs13(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Int) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs22(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, ty_Integer) new_lt25(x0, x1, app(ty_Maybe, x2)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_esEs23(Just(x0), Just(x1), ty_Float) new_ltEs7(False, True) new_esEs5(x0, x1, ty_@0) new_ltEs7(True, False) new_splitLT20(x0, x1, x2, x3, x4, x5, False, x6, x7) new_gt(x0, x1, ty_Char) new_gt10(x0, x1) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, x2, x3) new_esEs40(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Int) new_lt21(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Integer) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(Left(x0), Left(x1), ty_@0, x2) new_esEs37(x0, x1, ty_Float) new_ltEs9(x0, x1) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs24(EQ, GT) new_esEs24(GT, EQ) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_gt14(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs32(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare26(x0, x1, True, x2, x3) new_gt14(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Succ(x1)) new_primCompAux0(x0, GT) new_esEs31(x0, x1, ty_Float) new_lt14(x0, x1, x2) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs7(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_gt14(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Char) new_esEs12(GT) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs7(x0, x1, ty_Integer) new_lt23(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Integer) new_lt26(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21([], [], x0) new_lt6(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs33(x0, x1, ty_Double) new_splitGT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs38(x0, x1, ty_Double) new_gt(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Integer) new_compare32(x0, x1, app(ty_[], x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt5(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, GT) new_compare30(GT, LT) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, x6, False, x7, x8) new_ltEs24(x0, x1, ty_Double) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Bool) new_lt24(x0, x1, ty_Ordering) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_gt6(x0, x1, x2, x3, x4) new_compare14(Integer(x0), Integer(x1)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primMinusNat0(Zero, Succ(x0)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs32(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_Double) new_lt22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_[], x2)) new_esEs23(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_compare32(x0, x1, ty_Bool) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs14(x0, x1, ty_@0) new_esEs24(LT, GT) new_esEs24(GT, LT) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, ty_Integer) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_lt26(x0, x1, ty_Char) new_sizeFM0(EmptyFM, x0, x1) new_compare25(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs27(Left(x0), Left(x1), ty_Float, x2) new_esEs23(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs28(@2(x0, x1), @2(x2, x3), x4, x5) new_lt26(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Integer) new_lt25(x0, x1, ty_Float) new_mkBranch1(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14) new_ltEs5(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_@0) new_compare15(x0, x1, x2, x3, True, x4, x5, x6) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(LT, LT) new_gt14(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_lt6(x0, x1, ty_Integer) new_compare32(x0, x1, ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt26(x0, x1, ty_Int) new_compare0([], [], x0) new_esEs32(x0, x1, ty_Bool) new_mkBranchResult(x0, x1, x2, x3, x4, x5) new_splitLT0(Branch(x0, x1, x2, x3, x4), x5, x6, x7) new_esEs36(x0, x1, ty_Int) new_gt(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_splitGT10(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs20(Float(x0, x1), Float(x2, x3)) new_lt5(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1) new_esEs13(x0, x1, ty_Int) new_not(True) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_ltEs13(Just(x0), Nothing, x1) new_ltEs19(x0, x1, ty_Ordering) new_compare28(x0, x1, x2, x3, True, x4, x5) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt26(x0, x1, ty_Double) new_esEs25(Char(x0), Char(x1)) new_esEs23(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt25(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_@0) new_compare19(x0, x1, False, x2, x3) new_ltEs20(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_gt13(x0, x1) new_esEs11(x0, x1, ty_@0) new_lt22(x0, x1, ty_Integer) new_ltEs13(Nothing, Just(x0), x1) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_compare15(x0, x1, x2, x3, False, x4, x5, x6) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_splitGT10(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt24(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_gt15(x0, x1, ty_Float) new_lt26(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs27(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs6(x0, x1) new_ltEs20(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Char) new_compare0(:(x0, x1), [], x2) new_esEs14(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitGT20(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs8(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Char) new_ltEs8(x0, x1) new_compare13(x0, x1, True, x2, x3) new_ltEs5(x0, x1, ty_Integer) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_lt25(x0, x1, ty_@0) new_lt26(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Char) new_sr(x0, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs14(GT, GT) new_esEs21(:(x0, x1), :(x2, x3), x4) new_esEs27(Right(x0), Right(x1), x2, ty_Int) new_esEs26(Double(x0, x1), Double(x2, x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Char) new_gt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Char) new_esEs23(Just(x0), Just(x1), ty_Int) new_splitLT10(x0, x1, x2, x3, x4, x5, False, x6, x7) new_primMulInt(Neg(x0), Neg(x1)) new_esEs30(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_[], x2)) new_splitLT30(x0, x1, x2, x3, x4, x5, x6, x7) new_esEs23(Just(x0), Just(x1), app(ty_Ratio, x2)) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_@0) new_esEs23(Just(x0), Just(x1), ty_Char) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Double) new_gt1(x0, x1, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs13(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Bool) new_ltEs15(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM(x0, x1, x2, x3, x4) new_lt23(x0, x1, ty_Integer) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_gt15(x0, x1, app(ty_Ratio, x2)) new_compare17(Nothing, Nothing, x0) new_esEs4(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_lt22(x0, x1, ty_Float) new_compare19(x0, x1, True, x2, x3) new_not(False) new_lt26(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_@0) new_ltEs24(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, x2, True, x3, x4) new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) new_gt15(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs27(Left(x0), Left(x1), ty_Integer, x2) new_ltEs23(x0, x1, ty_Char) new_esEs12(LT) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt25(x0, x1, app(ty_Ratio, x2)) new_esEs24(GT, GT) new_esEs32(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Double) new_mkVBalBranch3MkVBalBranch10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, False, x12, x13) new_esEs27(Right(x0), Right(x1), x2, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Bool) new_esEs27(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(LT, EQ) new_esEs24(EQ, LT) new_esEs33(x0, x1, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt5(x0, x1, ty_Bool) new_gt3(x0, x1) new_esEs27(Left(x0), Left(x1), ty_Char, x2) new_lt10(x0, x1) new_lt15(x0, x1) new_esEs4(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, x2, x3) new_compare32(x0, x1, ty_Double) new_sr0(Integer(x0), Integer(x1)) new_lt22(x0, x1, ty_Int) new_esEs23(Just(x0), Just(x1), ty_Integer) new_lt5(x0, x1, ty_Int) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_@0) new_compare29(True, True) new_lt23(x0, x1, ty_Char) new_esEs41(LT) new_gt15(x0, x1, ty_Integer) new_esEs40(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs38(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs27(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs11(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_ltEs14(EQ, LT) new_ltEs14(LT, EQ) new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_compare28(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, ty_@0) new_esEs27(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_primCompAux0(x0, EQ) new_esEs13(x0, x1, app(ty_[], x2)) new_lt26(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Left(x0), Left(x1), x2, x3) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, ty_Float) new_compare13(x0, x1, False, x2, x3) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs27(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Char) new_mkVBalBranch3Size_l(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11) new_esEs23(Nothing, Just(x0), x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Left(x0), Left(x1), ty_Double, x2) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Int) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs33(x0, x1, ty_@0) new_compare10(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Bool) new_primMinusNat0(Zero, Zero) new_esEs27(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs8(x0, x1, app(ty_[], x2)) new_emptyFM(x0, x1) new_compare32(x0, x1, ty_Ordering) new_gt14(x0, x1, ty_Double) new_gt12(x0, x1) new_gt14(x0, x1, ty_Char) new_sr1(Neg(x0)) new_lt25(x0, x1, ty_Int) new_gt14(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Succ(x0)) new_ltEs14(LT, LT) new_mkVBalBranch3MkVBalBranch20(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, True, x12, x13) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_gt14(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_gt15(x0, x1, ty_Char) new_esEs27(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_sIZE_RATIO new_primPlusNat1(x0, x1) new_lt22(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Char) new_esEs24(EQ, EQ) new_compare0([], :(x0, x1), x2) new_esEs27(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_@0) new_splitGT0(EmptyFM, x0, x1, x2) new_esEs36(x0, x1, ty_Float) new_lt5(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(x0, x1, ty_Double) new_compare8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs9(x0, x1, ty_Integer) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_gt(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Float) new_sr1(Pos(x0)) new_esEs6(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(True, True) new_gt(x0, x1, ty_@0) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_@0) new_splitLT10(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt17(x0, x1) new_esEs29(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Int) new_lt26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_compare30(EQ, EQ) new_esEs37(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs41(GT) new_esEs8(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(@0, @0) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt25(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs23(Just(x0), Just(x1), ty_Double) new_lt6(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_compare32(x0, x1, app(ty_Ratio, x2)) new_compare17(Nothing, Just(x0), x1) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs27(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_esEs29(x0, x1, ty_Double) new_ltEs14(LT, GT) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs14(GT, LT) new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Integer) new_compare29(True, False) new_compare29(False, True) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs13(x0, x1, ty_Char) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(False, False) new_gt15(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Double) new_compare16(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_@0) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat1(Succ(x0)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt5(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_@0) new_ltEs14(EQ, GT) new_ltEs14(GT, EQ) new_esEs40(x0, x1, ty_@0) new_compare7(Right(x0), Right(x1), x2, x3) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs27(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt21(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_lt6(x0, x1, ty_Char) new_esEs16(False, False) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(Right(x0), Right(x1), x2, ty_@0) new_lt22(x0, x1, ty_Double) new_gt15(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_gt(x0, x1, app(ty_Maybe, x2)) new_gt15(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_compare32(x0, x1, ty_Char) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt24(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Float) new_mkVBalBranch0(x0, x1, Branch(x2, x3, x4, x5, x6), Branch(x7, x8, x9, x10, x11), x12, x13) new_primMulNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_splitGT20(x0, x1, x2, x3, x4, x5, True, x6, x7) new_primMinusNat0(Succ(x0), Zero) new_ltEs22(x0, x1, ty_Ordering) new_pePe(False, x0) new_primMulNat0(Zero, Zero) new_asAs(False, x0) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, Succ(x0)) new_sizeFM(x0, x1, x2, x3, x4, x5, x6) new_esEs31(x0, x1, ty_Bool) new_esEs24(LT, LT) new_compare110(x0, x1, True, x2) new_ltEs14(EQ, EQ) new_gt5(x0, x1, x2, x3) new_gt15(x0, x1, app(ty_[], x2)) new_compare26(x0, x1, False, x2, x3) new_esEs39(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs27(Left(x0), Right(x1), x2, x3) new_esEs27(Right(x0), Left(x1), x2, x3) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs9(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs11(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Double) new_compare32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Ordering) new_gt11(x0, x1) new_lt16(x0, x1) new_esEs13(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Bool) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_splitLT20(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt26(x0, x1, ty_Ordering) new_esEs27(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs36(x0, x1, ty_Ordering) new_gt9(x0, x1) new_compare32(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_compare31(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt25(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt26(x0, x1, ty_@0) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_compare12(Char(x0), Char(x1)) new_ltEs19(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21([], :(x0, x1), x2) new_lt12(x0, x1, x2) new_ltEs21(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_compare32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Char) new_compare30(GT, EQ) new_compare30(EQ, GT) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs18(Integer(x0), Integer(x1)) new_lt24(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Ordering) new_primCompAux1(x0, x1, x2, x3) new_gt15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt4(x0, x1, x2) new_esEs39(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt24(x0, x1, ty_Double) new_lt24(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) new_esEs7(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare30(GT, GT) new_lt25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Just(x0), Just(x1), ty_Ordering) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(EQ, LT) new_compare30(LT, EQ) new_esEs37(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, False, x2) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1, x2) new_lt6(x0, x1, ty_Double) new_ltEs16(x0, x1) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(x0, x1) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, x11, False, x12, x13) new_esEs17(x0, x1) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_gt4(x0, x1, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs14(x0, x1, ty_Char) new_compare110(x0, x1, False, x2) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Integer) new_lt25(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs6(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_gt14(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Float) new_compare32(x0, x1, ty_@0) new_gt7(x0, x1, x2) new_esEs34(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Integer) new_asAs(True, x0) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs4(x0, x1, ty_Ordering) new_esEs12(EQ) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs41(EQ) new_esEs21(:(x0, x1), [], x2) new_gt2(x0, x1) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Bool) new_gt14(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1) new_esEs27(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primCompAux0(x0, LT) new_ltEs7(True, True) new_esEs33(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_splitLT0(EmptyFM, x0, x1, x2) new_ltEs20(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_gt0(x0, x1, x2, x3) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt26(x0, x1, app(ty_[], x2)) new_compare17(Just(x0), Just(x1), x2) new_ltEs19(x0, x1, ty_@0) new_ltEs5(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs23(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_esEs16(False, True) new_esEs16(True, False) new_gt15(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_gt15(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs29(x0, x1, ty_Float) new_compare6(x0, x1) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, x2, x3, False, x4, x5) new_esEs30(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs27(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs14(x0, x1, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_primEqNat0(Zero, Succ(x0)) new_primCmpNat0(Zero, Zero) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(x0, x1, x2) new_primMulNat1(Zero) new_lt23(x0, x1, app(ty_[], 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_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitGT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_gt15(yvy40, yvy30, h), h, ba), yvy44, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 *new_plusFM(Branch(yvy30, yvy31, yvy32, yvy33, yvy34), Branch(yvy40, yvy41, yvy42, yvy43, yvy44), h, ba) -> new_plusFM(new_splitLT20(yvy30, yvy31, yvy32, yvy33, yvy34, yvy40, new_lt25(yvy40, yvy30, h), h, ba), yvy43, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (48) YES ---------------------------------------- (49) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(yvy40000), Succ(yvy30100)) -> new_primMulNat(yvy40000, Succ(yvy30100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (50) 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(yvy40000), Succ(yvy30100)) -> new_primMulNat(yvy40000, Succ(yvy30100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (51) YES ---------------------------------------- (52) 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. ---------------------------------------- (53) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(yvy40000), Succ(yvy30000)) -> new_primEqNat(yvy40000, yvy30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (54) YES ---------------------------------------- (55) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(yvy90200), Succ(yvy21700)) -> new_primMinusNat(yvy90200, yvy21700) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (56) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(yvy90200), Succ(yvy21700)) -> new_primMinusNat(yvy90200, yvy21700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (57) YES ---------------------------------------- (58) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(yvy90200), Succ(yvy21700)) -> new_primPlusNat(yvy90200, yvy21700) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (59) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(yvy90200), Succ(yvy21700)) -> new_primPlusNat(yvy90200, yvy21700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (60) YES