/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 6 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) DependencyGraphProof [EQUIVALENT, 0 ms] (22) AND (23) QDP (24) TransformationProof [EQUIVALENT, 1829 ms] (25) QDP (26) DependencyGraphProof [EQUIVALENT, 0 ms] (27) QDP (28) TransformationProof [EQUIVALENT, 0 ms] (29) QDP (30) TransformationProof [EQUIVALENT, 0 ms] (31) QDP (32) TransformationProof [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) QDPSizeChangeProof [EQUIVALENT, 0 ms] (44) YES (45) QDP (46) QDPSizeChangeProof [EQUIVALENT, 80 ms] (47) YES (48) QDP (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] (50) YES (51) QDP (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] (53) YES (54) QDP (55) QDPSizeChangeProof [EQUIVALENT, 0 ms] (56) YES (57) QDP (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] (59) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> 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; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; 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; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "addListToFM0 old new = new; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord 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; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM 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; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; 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; } ---------------------------------------- (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; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; 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; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (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; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx 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 vww vwx vwy 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 vxy 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 vvz 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 zz vuu vuv vuw) = 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 vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "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 vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; " "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; " 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 wuw wux = gcd3 wuw wux; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } ; " "gcd1 True wuw wux = error []; gcd1 wuy wuz wvu = gcd0 wuz wvu; " "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; gcd2 wvv wvw wvx = gcd0 wvw wvx; " "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; gcd3 wvy wvz = gcd0 wvy wvz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_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_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_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 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy 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 vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx 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 vww vwx vwy 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 vxy 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 vvz 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy 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 vxy 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 vvz 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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; 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 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy 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 vxy 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 vvz 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 zz vuu vuv vuw) = 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 vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; 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; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 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 "reduce2D wxw wxx = gcd wxw wxx; " "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " 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 vwz (Branch key_rl elt_rl vxu 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 vwu fm_ll (Branch key_lr elt_lr vwv 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 vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy 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 vxy 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 vvz 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 "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; " "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; " "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); " "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); " "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); " "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; " "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; " The bindings of the following Let/Where expression "foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; } " are unpacked to the following functions on top level "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; " 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 zz vuu vuv vuw) = 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 vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchRight_size wyx wyy wyz = sizeFM wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchUnbox wyx wyy wyz x = x; " 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 wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; " 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 wzy = fst (findMax wzy); " 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 wzz = fst (findMin wzz); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = 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 vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu 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))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv 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))))))))))))) wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz 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)))))))))) wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; 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.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 20[label="",style="dashed", color="red", weight=0]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];4060[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 28[label="",style="solid", color="burlywood", weight=3]; 4061[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 29[label="",style="solid", color="burlywood", weight=3]; 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 30 -> 20[label="",style="dashed", color="red", weight=0]; 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];4062[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 34[label="",style="solid", color="burlywood", weight=3]; 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];4063[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 36[label="",style="solid", color="burlywood", weight=3]; 4064[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 37[label="",style="solid", color="burlywood", weight=3]; 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="black",shape="box"];41 -> 43[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 44[label="",style="dashed", color="green", weight=3]; 42 -> 45[label="",style="dashed", color="green", weight=3]; 43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];43 -> 46[label="",style="solid", color="black", weight=3]; 44 -> 22[label="",style="dashed", color="red", weight=0]; 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 45[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];46[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare3 xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];46 -> 47[label="",style="solid", color="black", weight=3]; 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare2 xuu31100 xuu60 (xuu31100 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4065[label="xuu31100/Nothing",fontsize=10,color="white",style="solid",shape="box"];47 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 48[label="",style="solid", color="burlywood", weight=3]; 4066[label="xuu31100/Just xuu311000",fontsize=10,color="white",style="solid",shape="box"];47 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 49[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing xuu60 (Nothing == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4067[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];48 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 50[label="",style="solid", color="burlywood", weight=3]; 4068[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];48 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 51[label="",style="solid", color="burlywood", weight=3]; 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) xuu60 (Just xuu311000 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4069[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];49 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 52[label="",style="solid", color="burlywood", weight=3]; 4070[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];49 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 53[label="",style="solid", color="burlywood", weight=3]; 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];50 -> 54[label="",style="solid", color="black", weight=3]; 51[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing (Just xuu600) (Nothing == Just xuu600) == LT)",fontsize=16,color="black",shape="box"];51 -> 55[label="",style="solid", color="black", weight=3]; 52[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing) == LT)",fontsize=16,color="black",shape="box"];52 -> 56[label="",style="solid", color="black", weight=3]; 53[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) (Just xuu600) (Just xuu311000 == Just xuu600) == LT)",fontsize=16,color="black",shape="box"];53 -> 57[label="",style="solid", color="black", weight=3]; 54[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];54 -> 58[label="",style="solid", color="black", weight=3]; 55 -> 115[label="",style="dashed", color="red", weight=0]; 55[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing (Just xuu600) False == LT)",fontsize=16,color="magenta"];55 -> 116[label="",style="dashed", color="magenta", weight=3]; 56 -> 124[label="",style="dashed", color="red", weight=0]; 56[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) Nothing False == LT)",fontsize=16,color="magenta"];56 -> 125[label="",style="dashed", color="magenta", weight=3]; 57 -> 171[label="",style="dashed", color="red", weight=0]; 57[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600) == LT)",fontsize=16,color="magenta"];57 -> 172[label="",style="dashed", color="magenta", weight=3]; 57 -> 173[label="",style="dashed", color="magenta", weight=3]; 57 -> 174[label="",style="dashed", color="magenta", weight=3]; 57 -> 175[label="",style="dashed", color="magenta", weight=3]; 57 -> 176[label="",style="dashed", color="magenta", weight=3]; 57 -> 177[label="",style="dashed", color="magenta", weight=3]; 57 -> 178[label="",style="dashed", color="magenta", weight=3]; 57 -> 179[label="",style="dashed", color="magenta", weight=3]; 58[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (EQ == LT)",fontsize=16,color="black",shape="box"];58 -> 70[label="",style="solid", color="black", weight=3]; 116 -> 86[label="",style="dashed", color="red", weight=0]; 116[label="compare2 Nothing (Just xuu600) False == LT",fontsize=16,color="magenta"];116 -> 120[label="",style="dashed", color="magenta", weight=3]; 116 -> 121[label="",style="dashed", color="magenta", weight=3]; 115[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu25",fontsize=16,color="burlywood",shape="triangle"];4071[label="xuu25/False",fontsize=10,color="white",style="solid",shape="box"];115 -> 4071[label="",style="solid", color="burlywood", weight=9]; 4071 -> 122[label="",style="solid", color="burlywood", weight=3]; 4072[label="xuu25/True",fontsize=10,color="white",style="solid",shape="box"];115 -> 4072[label="",style="solid", color="burlywood", weight=9]; 4072 -> 123[label="",style="solid", color="burlywood", weight=3]; 125 -> 86[label="",style="dashed", color="red", weight=0]; 125[label="compare2 (Just xuu311000) Nothing False == LT",fontsize=16,color="magenta"];125 -> 129[label="",style="dashed", color="magenta", weight=3]; 125 -> 130[label="",style="dashed", color="magenta", weight=3]; 124[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 xuu26",fontsize=16,color="burlywood",shape="triangle"];4073[label="xuu26/False",fontsize=10,color="white",style="solid",shape="box"];124 -> 4073[label="",style="solid", color="burlywood", weight=9]; 4073 -> 131[label="",style="solid", color="burlywood", weight=3]; 4074[label="xuu26/True",fontsize=10,color="white",style="solid",shape="box"];124 -> 4074[label="",style="solid", color="burlywood", weight=9]; 4074 -> 132[label="",style="solid", color="burlywood", weight=3]; 172[label="xuu64",fontsize=16,color="green",shape="box"];173[label="xuu63",fontsize=16,color="green",shape="box"];174[label="xuu311000",fontsize=16,color="green",shape="box"];175[label="xuu600",fontsize=16,color="green",shape="box"];176 -> 86[label="",style="dashed", color="red", weight=0]; 176[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600) == LT",fontsize=16,color="magenta"];176 -> 183[label="",style="dashed", color="magenta", weight=3]; 176 -> 184[label="",style="dashed", color="magenta", weight=3]; 177[label="xuu61",fontsize=16,color="green",shape="box"];178[label="xuu31101",fontsize=16,color="green",shape="box"];179[label="xuu62",fontsize=16,color="green",shape="box"];171[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu27",fontsize=16,color="burlywood",shape="triangle"];4075[label="xuu27/False",fontsize=10,color="white",style="solid",shape="box"];171 -> 4075[label="",style="solid", color="burlywood", weight=9]; 4075 -> 185[label="",style="solid", color="burlywood", weight=3]; 4076[label="xuu27/True",fontsize=10,color="white",style="solid",shape="box"];171 -> 4076[label="",style="solid", color="burlywood", weight=9]; 4076 -> 186[label="",style="solid", color="burlywood", weight=3]; 70[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];70 -> 89[label="",style="solid", color="black", weight=3]; 120 -> 2023[label="",style="dashed", color="red", weight=0]; 120[label="compare2 Nothing (Just xuu600) False",fontsize=16,color="magenta"];120 -> 2024[label="",style="dashed", color="magenta", weight=3]; 120 -> 2025[label="",style="dashed", color="magenta", weight=3]; 120 -> 2026[label="",style="dashed", color="magenta", weight=3]; 121[label="LT",fontsize=16,color="green",shape="box"];86[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4077[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];86 -> 4077[label="",style="solid", color="burlywood", weight=9]; 4077 -> 109[label="",style="solid", color="burlywood", weight=3]; 4078[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];86 -> 4078[label="",style="solid", color="burlywood", weight=9]; 4078 -> 110[label="",style="solid", color="burlywood", weight=3]; 4079[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];86 -> 4079[label="",style="solid", color="burlywood", weight=9]; 4079 -> 111[label="",style="solid", color="burlywood", weight=3]; 122[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];122 -> 134[label="",style="solid", color="black", weight=3]; 123[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];123 -> 135[label="",style="solid", color="black", weight=3]; 129 -> 2023[label="",style="dashed", color="red", weight=0]; 129[label="compare2 (Just xuu311000) Nothing False",fontsize=16,color="magenta"];129 -> 2027[label="",style="dashed", color="magenta", weight=3]; 129 -> 2028[label="",style="dashed", color="magenta", weight=3]; 129 -> 2029[label="",style="dashed", color="magenta", weight=3]; 130[label="LT",fontsize=16,color="green",shape="box"];131[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];131 -> 188[label="",style="solid", color="black", weight=3]; 132[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];132 -> 189[label="",style="solid", color="black", weight=3]; 183 -> 2023[label="",style="dashed", color="red", weight=0]; 183[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];183 -> 2030[label="",style="dashed", color="magenta", weight=3]; 183 -> 2031[label="",style="dashed", color="magenta", weight=3]; 183 -> 2032[label="",style="dashed", color="magenta", weight=3]; 184[label="LT",fontsize=16,color="green",shape="box"];185[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];185 -> 198[label="",style="solid", color="black", weight=3]; 186[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];186 -> 199[label="",style="solid", color="black", weight=3]; 89 -> 225[label="",style="dashed", color="red", weight=0]; 89[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (Nothing > Nothing)",fontsize=16,color="magenta"];89 -> 226[label="",style="dashed", color="magenta", weight=3]; 2024[label="Nothing",fontsize=16,color="green",shape="box"];2025[label="False",fontsize=16,color="green",shape="box"];2026[label="Just xuu600",fontsize=16,color="green",shape="box"];2023[label="compare2 xuu330 xuu340 xuu111",fontsize=16,color="burlywood",shape="triangle"];4080[label="xuu111/False",fontsize=10,color="white",style="solid",shape="box"];2023 -> 4080[label="",style="solid", color="burlywood", weight=9]; 4080 -> 2058[label="",style="solid", color="burlywood", weight=3]; 4081[label="xuu111/True",fontsize=10,color="white",style="solid",shape="box"];2023 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 2059[label="",style="solid", color="burlywood", weight=3]; 109[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];4082[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];109 -> 4082[label="",style="solid", color="burlywood", weight=9]; 4082 -> 136[label="",style="solid", color="burlywood", weight=3]; 4083[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];109 -> 4083[label="",style="solid", color="burlywood", weight=9]; 4083 -> 137[label="",style="solid", color="burlywood", weight=3]; 4084[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];109 -> 4084[label="",style="solid", color="burlywood", weight=9]; 4084 -> 138[label="",style="solid", color="burlywood", weight=3]; 110[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];4085[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];110 -> 4085[label="",style="solid", color="burlywood", weight=9]; 4085 -> 139[label="",style="solid", color="burlywood", weight=3]; 4086[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];110 -> 4086[label="",style="solid", color="burlywood", weight=9]; 4086 -> 140[label="",style="solid", color="burlywood", weight=3]; 4087[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];110 -> 4087[label="",style="solid", color="burlywood", weight=9]; 4087 -> 141[label="",style="solid", color="burlywood", weight=3]; 111[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];4088[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4088[label="",style="solid", color="burlywood", weight=9]; 4088 -> 142[label="",style="solid", color="burlywood", weight=3]; 4089[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];111 -> 4089[label="",style="solid", color="burlywood", weight=9]; 4089 -> 143[label="",style="solid", color="burlywood", weight=3]; 4090[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4090[label="",style="solid", color="burlywood", weight=9]; 4090 -> 144[label="",style="solid", color="burlywood", weight=3]; 134 -> 241[label="",style="dashed", color="red", weight=0]; 134[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (Nothing > Just xuu600)",fontsize=16,color="magenta"];134 -> 242[label="",style="dashed", color="magenta", weight=3]; 135 -> 192[label="",style="dashed", color="red", weight=0]; 135[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 Nothing xuu31101) xuu64",fontsize=16,color="magenta"];135 -> 193[label="",style="dashed", color="magenta", weight=3]; 2027[label="Just xuu311000",fontsize=16,color="green",shape="box"];2028[label="False",fontsize=16,color="green",shape="box"];2029[label="Nothing",fontsize=16,color="green",shape="box"];188 -> 251[label="",style="dashed", color="red", weight=0]; 188[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (Just xuu311000 > Nothing)",fontsize=16,color="magenta"];188 -> 252[label="",style="dashed", color="magenta", weight=3]; 189 -> 202[label="",style="dashed", color="red", weight=0]; 189[label="FiniteMap.mkBalBranch Nothing xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Just xuu311000) xuu31101) xuu64",fontsize=16,color="magenta"];189 -> 203[label="",style="dashed", color="magenta", weight=3]; 2030[label="Just xuu311000",fontsize=16,color="green",shape="box"];2031[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];4091[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 2060[label="",style="solid", color="blue", weight=3]; 4092[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 2061[label="",style="solid", color="blue", weight=3]; 4093[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 2062[label="",style="solid", color="blue", weight=3]; 4094[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 2063[label="",style="solid", color="blue", weight=3]; 4095[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 2064[label="",style="solid", color="blue", weight=3]; 4096[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 2065[label="",style="solid", color="blue", weight=3]; 4097[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 2066[label="",style="solid", color="blue", weight=3]; 4098[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 2067[label="",style="solid", color="blue", weight=3]; 4099[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 2068[label="",style="solid", color="blue", weight=3]; 4100[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 2069[label="",style="solid", color="blue", weight=3]; 4101[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 2070[label="",style="solid", color="blue", weight=3]; 4102[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 2071[label="",style="solid", color="blue", weight=3]; 4103[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 2072[label="",style="solid", color="blue", weight=3]; 4104[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 2073[label="",style="solid", color="blue", weight=3]; 2032[label="Just xuu600",fontsize=16,color="green",shape="box"];198 -> 279[label="",style="dashed", color="red", weight=0]; 198[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 (Just xuu22 > Just xuu17)",fontsize=16,color="magenta"];198 -> 280[label="",style="dashed", color="magenta", weight=3]; 199 -> 192[label="",style="dashed", color="red", weight=0]; 199[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Just xuu22) xuu23) xuu21",fontsize=16,color="magenta"];199 -> 221[label="",style="dashed", color="magenta", weight=3]; 199 -> 222[label="",style="dashed", color="magenta", weight=3]; 199 -> 223[label="",style="dashed", color="magenta", weight=3]; 199 -> 224[label="",style="dashed", color="magenta", weight=3]; 226[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];226 -> 228[label="",style="solid", color="black", weight=3]; 225[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu37",fontsize=16,color="burlywood",shape="triangle"];4105[label="xuu37/False",fontsize=10,color="white",style="solid",shape="box"];225 -> 4105[label="",style="solid", color="burlywood", weight=9]; 4105 -> 229[label="",style="solid", color="burlywood", weight=3]; 4106[label="xuu37/True",fontsize=10,color="white",style="solid",shape="box"];225 -> 4106[label="",style="solid", color="burlywood", weight=9]; 4106 -> 230[label="",style="solid", color="burlywood", weight=3]; 2058[label="compare2 xuu330 xuu340 False",fontsize=16,color="black",shape="box"];2058 -> 2080[label="",style="solid", color="black", weight=3]; 2059[label="compare2 xuu330 xuu340 True",fontsize=16,color="black",shape="box"];2059 -> 2081[label="",style="solid", color="black", weight=3]; 136[label="LT == LT",fontsize=16,color="black",shape="box"];136 -> 232[label="",style="solid", color="black", weight=3]; 137[label="LT == EQ",fontsize=16,color="black",shape="box"];137 -> 233[label="",style="solid", color="black", weight=3]; 138[label="LT == GT",fontsize=16,color="black",shape="box"];138 -> 234[label="",style="solid", color="black", weight=3]; 139[label="EQ == LT",fontsize=16,color="black",shape="box"];139 -> 235[label="",style="solid", color="black", weight=3]; 140[label="EQ == EQ",fontsize=16,color="black",shape="box"];140 -> 236[label="",style="solid", color="black", weight=3]; 141[label="EQ == GT",fontsize=16,color="black",shape="box"];141 -> 237[label="",style="solid", color="black", weight=3]; 142[label="GT == LT",fontsize=16,color="black",shape="box"];142 -> 238[label="",style="solid", color="black", weight=3]; 143[label="GT == EQ",fontsize=16,color="black",shape="box"];143 -> 239[label="",style="solid", color="black", weight=3]; 144[label="GT == GT",fontsize=16,color="black",shape="box"];144 -> 240[label="",style="solid", color="black", weight=3]; 242[label="Nothing > Just xuu600",fontsize=16,color="black",shape="box"];242 -> 244[label="",style="solid", color="black", weight=3]; 241[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu38",fontsize=16,color="burlywood",shape="triangle"];4107[label="xuu38/False",fontsize=10,color="white",style="solid",shape="box"];241 -> 4107[label="",style="solid", color="burlywood", weight=9]; 4107 -> 245[label="",style="solid", color="burlywood", weight=3]; 4108[label="xuu38/True",fontsize=10,color="white",style="solid",shape="box"];241 -> 4108[label="",style="solid", color="burlywood", weight=9]; 4108 -> 246[label="",style="solid", color="burlywood", weight=3]; 193 -> 35[label="",style="dashed", color="red", weight=0]; 193[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 Nothing xuu31101",fontsize=16,color="magenta"];193 -> 247[label="",style="dashed", color="magenta", weight=3]; 193 -> 248[label="",style="dashed", color="magenta", weight=3]; 192[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];192 -> 249[label="",style="solid", color="black", weight=3]; 252[label="Just xuu311000 > Nothing",fontsize=16,color="black",shape="box"];252 -> 254[label="",style="solid", color="black", weight=3]; 251[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 xuu39",fontsize=16,color="burlywood",shape="triangle"];4109[label="xuu39/False",fontsize=10,color="white",style="solid",shape="box"];251 -> 4109[label="",style="solid", color="burlywood", weight=9]; 4109 -> 255[label="",style="solid", color="burlywood", weight=3]; 4110[label="xuu39/True",fontsize=10,color="white",style="solid",shape="box"];251 -> 4110[label="",style="solid", color="burlywood", weight=9]; 4110 -> 256[label="",style="solid", color="burlywood", weight=3]; 203 -> 35[label="",style="dashed", color="red", weight=0]; 203[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Just xuu311000) xuu31101",fontsize=16,color="magenta"];203 -> 257[label="",style="dashed", color="magenta", weight=3]; 203 -> 258[label="",style="dashed", color="magenta", weight=3]; 202[label="FiniteMap.mkBalBranch Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];202 -> 259[label="",style="solid", color="black", weight=3]; 2060[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4111[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];2060 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 2082[label="",style="solid", color="burlywood", weight=3]; 2061[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2061 -> 2083[label="",style="solid", color="black", weight=3]; 2062[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4112[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];2062 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 2084[label="",style="solid", color="burlywood", weight=3]; 2063[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4113[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];2063 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 2085[label="",style="solid", color="burlywood", weight=3]; 2064[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2064 -> 2086[label="",style="solid", color="black", weight=3]; 2065[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2065 -> 2087[label="",style="solid", color="black", weight=3]; 2066[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4114[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 2088[label="",style="solid", color="burlywood", weight=3]; 4115[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];2066 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 2089[label="",style="solid", color="burlywood", weight=3]; 2067[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4116[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4116[label="",style="solid", color="burlywood", weight=9]; 4116 -> 2090[label="",style="solid", color="burlywood", weight=3]; 4117[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4117[label="",style="solid", color="burlywood", weight=9]; 4117 -> 2091[label="",style="solid", color="burlywood", weight=3]; 2068[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2068 -> 2092[label="",style="solid", color="black", weight=3]; 2069[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4118[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 2093[label="",style="solid", color="burlywood", weight=3]; 2070[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4119[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 2094[label="",style="solid", color="burlywood", weight=3]; 4120[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];2070 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 2095[label="",style="solid", color="burlywood", weight=3]; 2071[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4121[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2071 -> 4121[label="",style="solid", color="burlywood", weight=9]; 4121 -> 2096[label="",style="solid", color="burlywood", weight=3]; 2072[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4122[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2072 -> 4122[label="",style="solid", color="burlywood", weight=9]; 4122 -> 2097[label="",style="solid", color="burlywood", weight=3]; 4123[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2072 -> 4123[label="",style="solid", color="burlywood", weight=9]; 4123 -> 2098[label="",style="solid", color="burlywood", weight=3]; 2073 -> 86[label="",style="dashed", color="red", weight=0]; 2073[label="xuu311000 == xuu600",fontsize=16,color="magenta"];280[label="Just xuu22 > Just xuu17",fontsize=16,color="black",shape="box"];280 -> 282[label="",style="solid", color="black", weight=3]; 279[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu40",fontsize=16,color="burlywood",shape="triangle"];4124[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];279 -> 4124[label="",style="solid", color="burlywood", weight=9]; 4124 -> 283[label="",style="solid", color="burlywood", weight=3]; 4125[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];279 -> 4125[label="",style="solid", color="burlywood", weight=9]; 4125 -> 284[label="",style="solid", color="burlywood", weight=3]; 221[label="xuu18",fontsize=16,color="green",shape="box"];222[label="xuu21",fontsize=16,color="green",shape="box"];223[label="xuu17",fontsize=16,color="green",shape="box"];224 -> 35[label="",style="dashed", color="red", weight=0]; 224[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Just xuu22) xuu23",fontsize=16,color="magenta"];224 -> 285[label="",style="dashed", color="magenta", weight=3]; 224 -> 286[label="",style="dashed", color="magenta", weight=3]; 224 -> 287[label="",style="dashed", color="magenta", weight=3]; 228 -> 86[label="",style="dashed", color="red", weight=0]; 228[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];228 -> 288[label="",style="dashed", color="magenta", weight=3]; 228 -> 289[label="",style="dashed", color="magenta", weight=3]; 229[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];229 -> 290[label="",style="solid", color="black", weight=3]; 230[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];230 -> 291[label="",style="solid", color="black", weight=3]; 2080[label="compare1 xuu330 xuu340 (xuu330 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4126[label="xuu330/Nothing",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4126[label="",style="solid", color="burlywood", weight=9]; 4126 -> 2125[label="",style="solid", color="burlywood", weight=3]; 4127[label="xuu330/Just xuu3300",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4127[label="",style="solid", color="burlywood", weight=9]; 4127 -> 2126[label="",style="solid", color="burlywood", weight=3]; 2081[label="EQ",fontsize=16,color="green",shape="box"];232[label="True",fontsize=16,color="green",shape="box"];233[label="False",fontsize=16,color="green",shape="box"];234[label="False",fontsize=16,color="green",shape="box"];235[label="False",fontsize=16,color="green",shape="box"];236[label="True",fontsize=16,color="green",shape="box"];237[label="False",fontsize=16,color="green",shape="box"];238[label="False",fontsize=16,color="green",shape="box"];239[label="False",fontsize=16,color="green",shape="box"];240[label="True",fontsize=16,color="green",shape="box"];244 -> 86[label="",style="dashed", color="red", weight=0]; 244[label="compare Nothing (Just xuu600) == GT",fontsize=16,color="magenta"];244 -> 292[label="",style="dashed", color="magenta", weight=3]; 244 -> 293[label="",style="dashed", color="magenta", weight=3]; 245[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];245 -> 294[label="",style="solid", color="black", weight=3]; 246[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];246 -> 295[label="",style="solid", color="black", weight=3]; 247[label="Nothing",fontsize=16,color="green",shape="box"];248[label="xuu63",fontsize=16,color="green",shape="box"];249[label="FiniteMap.mkBalBranch6 (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="box"];249 -> 296[label="",style="solid", color="black", weight=3]; 254 -> 86[label="",style="dashed", color="red", weight=0]; 254[label="compare (Just xuu311000) Nothing == GT",fontsize=16,color="magenta"];254 -> 298[label="",style="dashed", color="magenta", weight=3]; 254 -> 299[label="",style="dashed", color="magenta", weight=3]; 255[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];255 -> 300[label="",style="solid", color="black", weight=3]; 256[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];256 -> 301[label="",style="solid", color="black", weight=3]; 257[label="Just xuu311000",fontsize=16,color="green",shape="box"];258[label="xuu63",fontsize=16,color="green",shape="box"];259[label="FiniteMap.mkBalBranch6 Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="box"];259 -> 302[label="",style="solid", color="black", weight=3]; 2082[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];4128[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];2082 -> 4128[label="",style="solid", color="burlywood", weight=9]; 4128 -> 2127[label="",style="solid", color="burlywood", weight=3]; 2083[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4129[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4129[label="",style="solid", color="burlywood", weight=9]; 4129 -> 2128[label="",style="solid", color="burlywood", weight=3]; 2084[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];4130[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];2084 -> 4130[label="",style="solid", color="burlywood", weight=9]; 4130 -> 2129[label="",style="solid", color="burlywood", weight=3]; 2085[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];4131[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];2085 -> 4131[label="",style="solid", color="burlywood", weight=9]; 4131 -> 2130[label="",style="solid", color="burlywood", weight=3]; 2086[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4132[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2086 -> 4132[label="",style="solid", color="burlywood", weight=9]; 4132 -> 2131[label="",style="solid", color="burlywood", weight=3]; 2087[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];4133[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2087 -> 4133[label="",style="solid", color="burlywood", weight=9]; 4133 -> 2132[label="",style="solid", color="burlywood", weight=3]; 4134[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2087 -> 4134[label="",style="solid", color="burlywood", weight=9]; 4134 -> 2133[label="",style="solid", color="burlywood", weight=3]; 2088[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];4135[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4135[label="",style="solid", color="burlywood", weight=9]; 4135 -> 2134[label="",style="solid", color="burlywood", weight=3]; 4136[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4136[label="",style="solid", color="burlywood", weight=9]; 4136 -> 2135[label="",style="solid", color="burlywood", weight=3]; 2089[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];4137[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4137[label="",style="solid", color="burlywood", weight=9]; 4137 -> 2136[label="",style="solid", color="burlywood", weight=3]; 4138[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2089 -> 4138[label="",style="solid", color="burlywood", weight=9]; 4138 -> 2137[label="",style="solid", color="burlywood", weight=3]; 2090[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4139[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4139[label="",style="solid", color="burlywood", weight=9]; 4139 -> 2138[label="",style="solid", color="burlywood", weight=3]; 4140[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2090 -> 4140[label="",style="solid", color="burlywood", weight=9]; 4140 -> 2139[label="",style="solid", color="burlywood", weight=3]; 2091[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4141[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4141[label="",style="solid", color="burlywood", weight=9]; 4141 -> 2140[label="",style="solid", color="burlywood", weight=3]; 4142[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2091 -> 4142[label="",style="solid", color="burlywood", weight=9]; 4142 -> 2141[label="",style="solid", color="burlywood", weight=3]; 2092[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4143[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2092 -> 4143[label="",style="solid", color="burlywood", weight=9]; 4143 -> 2142[label="",style="solid", color="burlywood", weight=3]; 2093[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4144[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];2093 -> 4144[label="",style="solid", color="burlywood", weight=9]; 4144 -> 2143[label="",style="solid", color="burlywood", weight=3]; 2094[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4145[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4145[label="",style="solid", color="burlywood", weight=9]; 4145 -> 2144[label="",style="solid", color="burlywood", weight=3]; 4146[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4146[label="",style="solid", color="burlywood", weight=9]; 4146 -> 2145[label="",style="solid", color="burlywood", weight=3]; 2095[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];4147[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4147[label="",style="solid", color="burlywood", weight=9]; 4147 -> 2146[label="",style="solid", color="burlywood", weight=3]; 4148[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4148[label="",style="solid", color="burlywood", weight=9]; 4148 -> 2147[label="",style="solid", color="burlywood", weight=3]; 2096[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4149[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];2096 -> 4149[label="",style="solid", color="burlywood", weight=9]; 4149 -> 2148[label="",style="solid", color="burlywood", weight=3]; 2097[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];4150[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4150[label="",style="solid", color="burlywood", weight=9]; 4150 -> 2149[label="",style="solid", color="burlywood", weight=3]; 4151[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 4151[label="",style="solid", color="burlywood", weight=9]; 4151 -> 2150[label="",style="solid", color="burlywood", weight=3]; 2098[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4152[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2098 -> 4152[label="",style="solid", color="burlywood", weight=9]; 4152 -> 2151[label="",style="solid", color="burlywood", weight=3]; 4153[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2098 -> 4153[label="",style="solid", color="burlywood", weight=9]; 4153 -> 2152[label="",style="solid", color="burlywood", weight=3]; 282 -> 86[label="",style="dashed", color="red", weight=0]; 282[label="compare (Just xuu22) (Just xuu17) == GT",fontsize=16,color="magenta"];282 -> 330[label="",style="dashed", color="magenta", weight=3]; 282 -> 331[label="",style="dashed", color="magenta", weight=3]; 283[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];283 -> 332[label="",style="solid", color="black", weight=3]; 284[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];284 -> 333[label="",style="solid", color="black", weight=3]; 285[label="Just xuu22",fontsize=16,color="green",shape="box"];286[label="xuu23",fontsize=16,color="green",shape="box"];287[label="xuu20",fontsize=16,color="green",shape="box"];288[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];288 -> 334[label="",style="solid", color="black", weight=3]; 289[label="GT",fontsize=16,color="green",shape="box"];290[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 otherwise",fontsize=16,color="black",shape="box"];290 -> 335[label="",style="solid", color="black", weight=3]; 291 -> 202[label="",style="dashed", color="red", weight=0]; 291[label="FiniteMap.mkBalBranch Nothing xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101)",fontsize=16,color="magenta"];291 -> 336[label="",style="dashed", color="magenta", weight=3]; 291 -> 337[label="",style="dashed", color="magenta", weight=3]; 2125[label="compare1 Nothing xuu340 (Nothing <= xuu340)",fontsize=16,color="burlywood",shape="box"];4154[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4154[label="",style="solid", color="burlywood", weight=9]; 4154 -> 2215[label="",style="solid", color="burlywood", weight=3]; 4155[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2125 -> 4155[label="",style="solid", color="burlywood", weight=9]; 4155 -> 2216[label="",style="solid", color="burlywood", weight=3]; 2126[label="compare1 (Just xuu3300) xuu340 (Just xuu3300 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4156[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2126 -> 4156[label="",style="solid", color="burlywood", weight=9]; 4156 -> 2217[label="",style="solid", color="burlywood", weight=3]; 4157[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2126 -> 4157[label="",style="solid", color="burlywood", weight=9]; 4157 -> 2218[label="",style="solid", color="burlywood", weight=3]; 292[label="compare Nothing (Just xuu600)",fontsize=16,color="black",shape="box"];292 -> 338[label="",style="solid", color="black", weight=3]; 293[label="GT",fontsize=16,color="green",shape="box"];294[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 otherwise",fontsize=16,color="black",shape="box"];294 -> 339[label="",style="solid", color="black", weight=3]; 295 -> 192[label="",style="dashed", color="red", weight=0]; 295[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101)",fontsize=16,color="magenta"];295 -> 340[label="",style="dashed", color="magenta", weight=3]; 295 -> 341[label="",style="dashed", color="magenta", weight=3]; 296 -> 401[label="",style="dashed", color="red", weight=0]; 296[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];296 -> 402[label="",style="dashed", color="magenta", weight=3]; 298[label="compare (Just xuu311000) Nothing",fontsize=16,color="black",shape="box"];298 -> 344[label="",style="solid", color="black", weight=3]; 299[label="GT",fontsize=16,color="green",shape="box"];300[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 otherwise",fontsize=16,color="black",shape="box"];300 -> 345[label="",style="solid", color="black", weight=3]; 301 -> 202[label="",style="dashed", color="red", weight=0]; 301[label="FiniteMap.mkBalBranch Nothing xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Just xuu311000) xuu31101)",fontsize=16,color="magenta"];301 -> 346[label="",style="dashed", color="magenta", weight=3]; 301 -> 347[label="",style="dashed", color="magenta", weight=3]; 302 -> 411[label="",style="dashed", color="red", weight=0]; 302[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];302 -> 412[label="",style="dashed", color="magenta", weight=3]; 2127[label="() == ()",fontsize=16,color="black",shape="box"];2127 -> 2219[label="",style="solid", color="black", weight=3]; 2128[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4158[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];2128 -> 4158[label="",style="solid", color="burlywood", weight=9]; 4158 -> 2220[label="",style="solid", color="burlywood", weight=3]; 2129[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];2129 -> 2221[label="",style="solid", color="black", weight=3]; 2130[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];2130 -> 2222[label="",style="solid", color="black", weight=3]; 2131[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4159[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2131 -> 4159[label="",style="solid", color="burlywood", weight=9]; 4159 -> 2223[label="",style="solid", color="burlywood", weight=3]; 2132[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4160[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4160[label="",style="solid", color="burlywood", weight=9]; 4160 -> 2224[label="",style="solid", color="burlywood", weight=3]; 4161[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2132 -> 4161[label="",style="solid", color="burlywood", weight=9]; 4161 -> 2225[label="",style="solid", color="burlywood", weight=3]; 2133[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4162[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4162[label="",style="solid", color="burlywood", weight=9]; 4162 -> 2226[label="",style="solid", color="burlywood", weight=3]; 4163[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2133 -> 4163[label="",style="solid", color="burlywood", weight=9]; 4163 -> 2227[label="",style="solid", color="burlywood", weight=3]; 2134[label="False == False",fontsize=16,color="black",shape="box"];2134 -> 2228[label="",style="solid", color="black", weight=3]; 2135[label="False == True",fontsize=16,color="black",shape="box"];2135 -> 2229[label="",style="solid", color="black", weight=3]; 2136[label="True == False",fontsize=16,color="black",shape="box"];2136 -> 2230[label="",style="solid", color="black", weight=3]; 2137[label="True == True",fontsize=16,color="black",shape="box"];2137 -> 2231[label="",style="solid", color="black", weight=3]; 2138[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2138 -> 2232[label="",style="solid", color="black", weight=3]; 2139[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2139 -> 2233[label="",style="solid", color="black", weight=3]; 2140[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2140 -> 2234[label="",style="solid", color="black", weight=3]; 2141[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2141 -> 2235[label="",style="solid", color="black", weight=3]; 2142[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4164[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2142 -> 4164[label="",style="solid", color="burlywood", weight=9]; 4164 -> 2236[label="",style="solid", color="burlywood", weight=3]; 2143[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];2143 -> 2237[label="",style="solid", color="black", weight=3]; 2144[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2144 -> 2238[label="",style="solid", color="black", weight=3]; 2145[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];2145 -> 2239[label="",style="solid", color="black", weight=3]; 2146[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2146 -> 2240[label="",style="solid", color="black", weight=3]; 2147[label="[] == []",fontsize=16,color="black",shape="box"];2147 -> 2241[label="",style="solid", color="black", weight=3]; 2148[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];2148 -> 2242[label="",style="solid", color="black", weight=3]; 2149[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2149 -> 2243[label="",style="solid", color="black", weight=3]; 2150[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];2150 -> 2244[label="",style="solid", color="black", weight=3]; 2151[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];2151 -> 2245[label="",style="solid", color="black", weight=3]; 2152[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];2152 -> 2246[label="",style="solid", color="black", weight=3]; 330[label="compare (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];330 -> 387[label="",style="solid", color="black", weight=3]; 331[label="GT",fontsize=16,color="green",shape="box"];332[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 otherwise",fontsize=16,color="black",shape="box"];332 -> 388[label="",style="solid", color="black", weight=3]; 333 -> 192[label="",style="dashed", color="red", weight=0]; 333[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Just xuu22) xuu23)",fontsize=16,color="magenta"];333 -> 389[label="",style="dashed", color="magenta", weight=3]; 333 -> 390[label="",style="dashed", color="magenta", weight=3]; 333 -> 391[label="",style="dashed", color="magenta", weight=3]; 333 -> 392[label="",style="dashed", color="magenta", weight=3]; 334[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];334 -> 393[label="",style="solid", color="black", weight=3]; 335[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];335 -> 394[label="",style="solid", color="black", weight=3]; 336 -> 35[label="",style="dashed", color="red", weight=0]; 336[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101",fontsize=16,color="magenta"];336 -> 395[label="",style="dashed", color="magenta", weight=3]; 336 -> 396[label="",style="dashed", color="magenta", weight=3]; 337[label="xuu63",fontsize=16,color="green",shape="box"];2215[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2215 -> 2274[label="",style="solid", color="black", weight=3]; 2216[label="compare1 Nothing (Just xuu3400) (Nothing <= Just xuu3400)",fontsize=16,color="black",shape="box"];2216 -> 2275[label="",style="solid", color="black", weight=3]; 2217[label="compare1 (Just xuu3300) Nothing (Just xuu3300 <= Nothing)",fontsize=16,color="black",shape="box"];2217 -> 2276[label="",style="solid", color="black", weight=3]; 2218[label="compare1 (Just xuu3300) (Just xuu3400) (Just xuu3300 <= Just xuu3400)",fontsize=16,color="black",shape="box"];2218 -> 2277[label="",style="solid", color="black", weight=3]; 338[label="compare3 Nothing (Just xuu600)",fontsize=16,color="black",shape="box"];338 -> 397[label="",style="solid", color="black", weight=3]; 339[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];339 -> 398[label="",style="solid", color="black", weight=3]; 340 -> 35[label="",style="dashed", color="red", weight=0]; 340[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101",fontsize=16,color="magenta"];340 -> 399[label="",style="dashed", color="magenta", weight=3]; 340 -> 400[label="",style="dashed", color="magenta", weight=3]; 341[label="xuu63",fontsize=16,color="green",shape="box"];402[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];402 -> 404[label="",style="solid", color="black", weight=3]; 401[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu48",fontsize=16,color="burlywood",shape="triangle"];4165[label="xuu48/False",fontsize=10,color="white",style="solid",shape="box"];401 -> 4165[label="",style="solid", color="burlywood", weight=9]; 4165 -> 405[label="",style="solid", color="burlywood", weight=3]; 4166[label="xuu48/True",fontsize=10,color="white",style="solid",shape="box"];401 -> 4166[label="",style="solid", color="burlywood", weight=9]; 4166 -> 406[label="",style="solid", color="burlywood", weight=3]; 344[label="compare3 (Just xuu311000) Nothing",fontsize=16,color="black",shape="box"];344 -> 407[label="",style="solid", color="black", weight=3]; 345[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];345 -> 408[label="",style="solid", color="black", weight=3]; 346 -> 35[label="",style="dashed", color="red", weight=0]; 346[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Just xuu311000) xuu31101",fontsize=16,color="magenta"];346 -> 409[label="",style="dashed", color="magenta", weight=3]; 346 -> 410[label="",style="dashed", color="magenta", weight=3]; 347[label="xuu63",fontsize=16,color="green",shape="box"];412[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];412 -> 414[label="",style="solid", color="black", weight=3]; 411[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu49",fontsize=16,color="burlywood",shape="triangle"];4167[label="xuu49/False",fontsize=10,color="white",style="solid",shape="box"];411 -> 4167[label="",style="solid", color="burlywood", weight=9]; 4167 -> 415[label="",style="solid", color="burlywood", weight=3]; 4168[label="xuu49/True",fontsize=10,color="white",style="solid",shape="box"];411 -> 4168[label="",style="solid", color="burlywood", weight=9]; 4168 -> 416[label="",style="solid", color="burlywood", weight=3]; 2219[label="True",fontsize=16,color="green",shape="box"];2220[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];2220 -> 2278[label="",style="solid", color="black", weight=3]; 2221 -> 2377[label="",style="dashed", color="red", weight=0]; 2221[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2221 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2377[label="",style="dashed", color="red", weight=0]; 2222[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2222 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2223[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2223 -> 2300[label="",style="solid", color="black", weight=3]; 2224[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4169[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4169[label="",style="solid", color="burlywood", weight=9]; 4169 -> 2301[label="",style="solid", color="burlywood", weight=3]; 4170[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2224 -> 4170[label="",style="solid", color="burlywood", weight=9]; 4170 -> 2302[label="",style="solid", color="burlywood", weight=3]; 2225[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4171[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4171[label="",style="solid", color="burlywood", weight=9]; 4171 -> 2303[label="",style="solid", color="burlywood", weight=3]; 4172[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4172[label="",style="solid", color="burlywood", weight=9]; 4172 -> 2304[label="",style="solid", color="burlywood", weight=3]; 2226[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4173[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 4173[label="",style="solid", color="burlywood", weight=9]; 4173 -> 2305[label="",style="solid", color="burlywood", weight=3]; 4174[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 4174[label="",style="solid", color="burlywood", weight=9]; 4174 -> 2306[label="",style="solid", color="burlywood", weight=3]; 2227[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4175[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4175[label="",style="solid", color="burlywood", weight=9]; 4175 -> 2307[label="",style="solid", color="burlywood", weight=3]; 4176[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2227 -> 4176[label="",style="solid", color="burlywood", weight=9]; 4176 -> 2308[label="",style="solid", color="burlywood", weight=3]; 2228[label="True",fontsize=16,color="green",shape="box"];2229[label="False",fontsize=16,color="green",shape="box"];2230[label="False",fontsize=16,color="green",shape="box"];2231[label="True",fontsize=16,color="green",shape="box"];2232[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4177[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 2309[label="",style="solid", color="blue", weight=3]; 4178[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 2310[label="",style="solid", color="blue", weight=3]; 4179[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 2311[label="",style="solid", color="blue", weight=3]; 4180[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 2312[label="",style="solid", color="blue", weight=3]; 4181[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 2313[label="",style="solid", color="blue", weight=3]; 4182[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 2314[label="",style="solid", color="blue", weight=3]; 4183[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 2315[label="",style="solid", color="blue", weight=3]; 4184[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 2316[label="",style="solid", color="blue", weight=3]; 4185[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 2317[label="",style="solid", color="blue", weight=3]; 4186[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 2318[label="",style="solid", color="blue", weight=3]; 4187[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 2319[label="",style="solid", color="blue", weight=3]; 4188[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 2320[label="",style="solid", color="blue", weight=3]; 4189[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 2321[label="",style="solid", color="blue", weight=3]; 4190[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 2322[label="",style="solid", color="blue", weight=3]; 2233[label="False",fontsize=16,color="green",shape="box"];2234[label="False",fontsize=16,color="green",shape="box"];2235[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4191[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 2323[label="",style="solid", color="blue", weight=3]; 4192[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 2324[label="",style="solid", color="blue", weight=3]; 4193[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 2325[label="",style="solid", color="blue", weight=3]; 4194[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 2326[label="",style="solid", color="blue", weight=3]; 4195[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 2327[label="",style="solid", color="blue", weight=3]; 4196[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 2328[label="",style="solid", color="blue", weight=3]; 4197[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 2329[label="",style="solid", color="blue", weight=3]; 4198[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 2330[label="",style="solid", color="blue", weight=3]; 4199[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 2331[label="",style="solid", color="blue", weight=3]; 4200[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 2332[label="",style="solid", color="blue", weight=3]; 4201[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 2333[label="",style="solid", color="blue", weight=3]; 4202[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 2334[label="",style="solid", color="blue", weight=3]; 4203[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 2335[label="",style="solid", color="blue", weight=3]; 4204[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 2336[label="",style="solid", color="blue", weight=3]; 2236[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2236 -> 2337[label="",style="solid", color="black", weight=3]; 2237 -> 2377[label="",style="dashed", color="red", weight=0]; 2237[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2237 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2237 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2377[label="",style="dashed", color="red", weight=0]; 2238[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2238 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2239[label="False",fontsize=16,color="green",shape="box"];2240[label="False",fontsize=16,color="green",shape="box"];2241[label="True",fontsize=16,color="green",shape="box"];2242 -> 2087[label="",style="dashed", color="red", weight=0]; 2242[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];2242 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2243[label="True",fontsize=16,color="green",shape="box"];2244[label="False",fontsize=16,color="green",shape="box"];2245[label="False",fontsize=16,color="green",shape="box"];2246[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4205[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 2340[label="",style="solid", color="blue", weight=3]; 4206[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4206[label="",style="solid", color="blue", weight=9]; 4206 -> 2341[label="",style="solid", color="blue", weight=3]; 4207[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4207[label="",style="solid", color="blue", weight=9]; 4207 -> 2342[label="",style="solid", color="blue", weight=3]; 4208[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 2343[label="",style="solid", color="blue", weight=3]; 4209[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 2344[label="",style="solid", color="blue", weight=3]; 4210[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 2345[label="",style="solid", color="blue", weight=3]; 4211[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 2346[label="",style="solid", color="blue", weight=3]; 4212[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4212[label="",style="solid", color="blue", weight=9]; 4212 -> 2347[label="",style="solid", color="blue", weight=3]; 4213[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4213[label="",style="solid", color="blue", weight=9]; 4213 -> 2348[label="",style="solid", color="blue", weight=3]; 4214[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 2349[label="",style="solid", color="blue", weight=3]; 4215[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 2350[label="",style="solid", color="blue", weight=3]; 4216[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 2351[label="",style="solid", color="blue", weight=3]; 4217[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 2352[label="",style="solid", color="blue", weight=3]; 4218[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 2353[label="",style="solid", color="blue", weight=3]; 387[label="compare3 (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];387 -> 509[label="",style="solid", color="black", weight=3]; 388[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];388 -> 510[label="",style="solid", color="black", weight=3]; 389[label="xuu18",fontsize=16,color="green",shape="box"];390 -> 35[label="",style="dashed", color="red", weight=0]; 390[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Just xuu22) xuu23",fontsize=16,color="magenta"];390 -> 511[label="",style="dashed", color="magenta", weight=3]; 390 -> 512[label="",style="dashed", color="magenta", weight=3]; 390 -> 513[label="",style="dashed", color="magenta", weight=3]; 391[label="xuu17",fontsize=16,color="green",shape="box"];392[label="xuu20",fontsize=16,color="green",shape="box"];393 -> 2023[label="",style="dashed", color="red", weight=0]; 393[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];393 -> 2042[label="",style="dashed", color="magenta", weight=3]; 393 -> 2043[label="",style="dashed", color="magenta", weight=3]; 393 -> 2044[label="",style="dashed", color="magenta", weight=3]; 394[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];394 -> 516[label="",style="dashed", color="green", weight=3]; 395[label="Nothing",fontsize=16,color="green",shape="box"];396[label="xuu64",fontsize=16,color="green",shape="box"];2274[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2274 -> 2354[label="",style="solid", color="black", weight=3]; 2275[label="compare1 Nothing (Just xuu3400) True",fontsize=16,color="black",shape="box"];2275 -> 2355[label="",style="solid", color="black", weight=3]; 2276[label="compare1 (Just xuu3300) Nothing False",fontsize=16,color="black",shape="box"];2276 -> 2356[label="",style="solid", color="black", weight=3]; 2277 -> 2357[label="",style="dashed", color="red", weight=0]; 2277[label="compare1 (Just xuu3300) (Just xuu3400) (xuu3300 <= xuu3400)",fontsize=16,color="magenta"];2277 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2360[label="",style="dashed", color="magenta", weight=3]; 397 -> 2023[label="",style="dashed", color="red", weight=0]; 397[label="compare2 Nothing (Just xuu600) (Nothing == Just xuu600)",fontsize=16,color="magenta"];397 -> 2045[label="",style="dashed", color="magenta", weight=3]; 397 -> 2046[label="",style="dashed", color="magenta", weight=3]; 397 -> 2047[label="",style="dashed", color="magenta", weight=3]; 398[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];398 -> 522[label="",style="dashed", color="green", weight=3]; 399[label="Nothing",fontsize=16,color="green",shape="box"];400[label="xuu64",fontsize=16,color="green",shape="box"];404 -> 86[label="",style="dashed", color="red", weight=0]; 404[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];404 -> 523[label="",style="dashed", color="magenta", weight=3]; 404 -> 524[label="",style="dashed", color="magenta", weight=3]; 405[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];405 -> 525[label="",style="solid", color="black", weight=3]; 406[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];406 -> 526[label="",style="solid", color="black", weight=3]; 407 -> 2023[label="",style="dashed", color="red", weight=0]; 407[label="compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing)",fontsize=16,color="magenta"];407 -> 2048[label="",style="dashed", color="magenta", weight=3]; 407 -> 2049[label="",style="dashed", color="magenta", weight=3]; 407 -> 2050[label="",style="dashed", color="magenta", weight=3]; 408[label="FiniteMap.Branch (Just xuu311000) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];408 -> 534[label="",style="dashed", color="green", weight=3]; 409[label="Just xuu311000",fontsize=16,color="green",shape="box"];410[label="xuu64",fontsize=16,color="green",shape="box"];414 -> 86[label="",style="dashed", color="red", weight=0]; 414[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];414 -> 535[label="",style="dashed", color="magenta", weight=3]; 414 -> 536[label="",style="dashed", color="magenta", weight=3]; 415[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];415 -> 537[label="",style="solid", color="black", weight=3]; 416[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];416 -> 538[label="",style="solid", color="black", weight=3]; 2278[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4219[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4219[label="",style="solid", color="burlywood", weight=9]; 4219 -> 2361[label="",style="solid", color="burlywood", weight=3]; 4220[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2278 -> 4220[label="",style="solid", color="burlywood", weight=9]; 4220 -> 2362[label="",style="solid", color="burlywood", weight=3]; 2378[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4221[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 2390[label="",style="solid", color="blue", weight=3]; 4222[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 2391[label="",style="solid", color="blue", weight=3]; 4223[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 2392[label="",style="solid", color="blue", weight=3]; 4224[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 2393[label="",style="solid", color="blue", weight=3]; 4225[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 2394[label="",style="solid", color="blue", weight=3]; 4226[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 2395[label="",style="solid", color="blue", weight=3]; 4227[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 2396[label="",style="solid", color="blue", weight=3]; 4228[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 2397[label="",style="solid", color="blue", weight=3]; 4229[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 2398[label="",style="solid", color="blue", weight=3]; 4230[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 2399[label="",style="solid", color="blue", weight=3]; 4231[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 2400[label="",style="solid", color="blue", weight=3]; 4232[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 2401[label="",style="solid", color="blue", weight=3]; 4233[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 2402[label="",style="solid", color="blue", weight=3]; 4234[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2378 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 2403[label="",style="solid", color="blue", weight=3]; 2379[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4235[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 2404[label="",style="solid", color="blue", weight=3]; 4236[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 2405[label="",style="solid", color="blue", weight=3]; 4237[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 2406[label="",style="solid", color="blue", weight=3]; 4238[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 2407[label="",style="solid", color="blue", weight=3]; 4239[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 2408[label="",style="solid", color="blue", weight=3]; 4240[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 2409[label="",style="solid", color="blue", weight=3]; 4241[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 2410[label="",style="solid", color="blue", weight=3]; 4242[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 2411[label="",style="solid", color="blue", weight=3]; 4243[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 2412[label="",style="solid", color="blue", weight=3]; 4244[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 2413[label="",style="solid", color="blue", weight=3]; 4245[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 2414[label="",style="solid", color="blue", weight=3]; 4246[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 2415[label="",style="solid", color="blue", weight=3]; 4247[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 2416[label="",style="solid", color="blue", weight=3]; 4248[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 2417[label="",style="solid", color="blue", weight=3]; 2377[label="xuu138 && xuu139",fontsize=16,color="burlywood",shape="triangle"];4249[label="xuu138/False",fontsize=10,color="white",style="solid",shape="box"];2377 -> 4249[label="",style="solid", color="burlywood", weight=9]; 4249 -> 2418[label="",style="solid", color="burlywood", weight=3]; 4250[label="xuu138/True",fontsize=10,color="white",style="solid",shape="box"];2377 -> 4250[label="",style="solid", color="burlywood", weight=9]; 4250 -> 2419[label="",style="solid", color="burlywood", weight=3]; 2380 -> 2377[label="",style="dashed", color="red", weight=0]; 2380[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2380 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2381[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4251[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 2422[label="",style="solid", color="blue", weight=3]; 4252[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 2423[label="",style="solid", color="blue", weight=3]; 4253[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 2424[label="",style="solid", color="blue", weight=3]; 4254[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 2425[label="",style="solid", color="blue", weight=3]; 4255[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 2426[label="",style="solid", color="blue", weight=3]; 4256[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 2427[label="",style="solid", color="blue", weight=3]; 4257[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 2428[label="",style="solid", color="blue", weight=3]; 4258[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 2429[label="",style="solid", color="blue", weight=3]; 4259[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 2430[label="",style="solid", color="blue", weight=3]; 4260[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 2431[label="",style="solid", color="blue", weight=3]; 4261[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4261[label="",style="solid", color="blue", weight=9]; 4261 -> 2432[label="",style="solid", color="blue", weight=3]; 4262[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 2433[label="",style="solid", color="blue", weight=3]; 4263[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 2434[label="",style="solid", color="blue", weight=3]; 4264[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 2435[label="",style="solid", color="blue", weight=3]; 2300 -> 2065[label="",style="dashed", color="red", weight=0]; 2300[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2300 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2301[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4265[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2301 -> 4265[label="",style="solid", color="burlywood", weight=9]; 4265 -> 2438[label="",style="solid", color="burlywood", weight=3]; 4266[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2301 -> 4266[label="",style="solid", color="burlywood", weight=9]; 4266 -> 2439[label="",style="solid", color="burlywood", weight=3]; 2302[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];2302 -> 2440[label="",style="solid", color="black", weight=3]; 2303[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4267[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2303 -> 4267[label="",style="solid", color="burlywood", weight=9]; 4267 -> 2441[label="",style="solid", color="burlywood", weight=3]; 4268[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2303 -> 4268[label="",style="solid", color="burlywood", weight=9]; 4268 -> 2442[label="",style="solid", color="burlywood", weight=3]; 2304[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4269[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2304 -> 4269[label="",style="solid", color="burlywood", weight=9]; 4269 -> 2443[label="",style="solid", color="burlywood", weight=3]; 4270[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2304 -> 4270[label="",style="solid", color="burlywood", weight=9]; 4270 -> 2444[label="",style="solid", color="burlywood", weight=3]; 2305[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];2305 -> 2445[label="",style="solid", color="black", weight=3]; 2306[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4271[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2306 -> 4271[label="",style="solid", color="burlywood", weight=9]; 4271 -> 2446[label="",style="solid", color="burlywood", weight=3]; 4272[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2306 -> 4272[label="",style="solid", color="burlywood", weight=9]; 4272 -> 2447[label="",style="solid", color="burlywood", weight=3]; 2307[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4273[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 2448[label="",style="solid", color="burlywood", weight=3]; 4274[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 2449[label="",style="solid", color="burlywood", weight=3]; 2308[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4275[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2308 -> 4275[label="",style="solid", color="burlywood", weight=9]; 4275 -> 2450[label="",style="solid", color="burlywood", weight=3]; 4276[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2308 -> 4276[label="",style="solid", color="burlywood", weight=9]; 4276 -> 2451[label="",style="solid", color="burlywood", weight=3]; 2309 -> 2060[label="",style="dashed", color="red", weight=0]; 2309[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2309 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2061[label="",style="dashed", color="red", weight=0]; 2310[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2310 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2062[label="",style="dashed", color="red", weight=0]; 2311[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2311 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2063[label="",style="dashed", color="red", weight=0]; 2312[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2312 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2064[label="",style="dashed", color="red", weight=0]; 2313[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2313 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2065[label="",style="dashed", color="red", weight=0]; 2314[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2314 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2066[label="",style="dashed", color="red", weight=0]; 2315[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2315 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2067[label="",style="dashed", color="red", weight=0]; 2316[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2316 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2068[label="",style="dashed", color="red", weight=0]; 2317[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2317 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2069[label="",style="dashed", color="red", weight=0]; 2318[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2318 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2070[label="",style="dashed", color="red", weight=0]; 2319[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2319 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2071[label="",style="dashed", color="red", weight=0]; 2320[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2320 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2072[label="",style="dashed", color="red", weight=0]; 2321[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2321 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2322 -> 86[label="",style="dashed", color="red", weight=0]; 2322[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2322 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2060[label="",style="dashed", color="red", weight=0]; 2323[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2323 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2061[label="",style="dashed", color="red", weight=0]; 2324[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2324 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2062[label="",style="dashed", color="red", weight=0]; 2325[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2325 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2063[label="",style="dashed", color="red", weight=0]; 2326[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2326 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2064[label="",style="dashed", color="red", weight=0]; 2327[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2327 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2065[label="",style="dashed", color="red", weight=0]; 2328[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2328 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2066[label="",style="dashed", color="red", weight=0]; 2329[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2329 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2067[label="",style="dashed", color="red", weight=0]; 2330[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2330 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2068[label="",style="dashed", color="red", weight=0]; 2331[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2331 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2069[label="",style="dashed", color="red", weight=0]; 2332[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2332 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2070[label="",style="dashed", color="red", weight=0]; 2333[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2333 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2071[label="",style="dashed", color="red", weight=0]; 2334[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2334 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2072[label="",style="dashed", color="red", weight=0]; 2335[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2335 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2336 -> 86[label="",style="dashed", color="red", weight=0]; 2336[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2336 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2065[label="",style="dashed", color="red", weight=0]; 2337[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2337 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2382[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4277[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 2510[label="",style="solid", color="blue", weight=3]; 4278[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 2511[label="",style="solid", color="blue", weight=3]; 2383[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4279[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2383 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 2512[label="",style="solid", color="blue", weight=3]; 4280[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2383 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 2513[label="",style="solid", color="blue", weight=3]; 2384 -> 2070[label="",style="dashed", color="red", weight=0]; 2384[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2384 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2385[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4281[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 2516[label="",style="solid", color="blue", weight=3]; 4282[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4282[label="",style="solid", color="blue", weight=9]; 4282 -> 2517[label="",style="solid", color="blue", weight=3]; 4283[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4283[label="",style="solid", color="blue", weight=9]; 4283 -> 2518[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"];2385 -> 4284[label="",style="solid", color="blue", weight=9]; 4284 -> 2519[label="",style="solid", color="blue", weight=3]; 4285[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4285[label="",style="solid", color="blue", weight=9]; 4285 -> 2520[label="",style="solid", color="blue", weight=3]; 4286[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4286[label="",style="solid", color="blue", weight=9]; 4286 -> 2521[label="",style="solid", color="blue", weight=3]; 4287[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4287[label="",style="solid", color="blue", weight=9]; 4287 -> 2522[label="",style="solid", color="blue", weight=3]; 4288[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 2523[label="",style="solid", color="blue", weight=3]; 4289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 2524[label="",style="solid", color="blue", weight=3]; 4290[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4290[label="",style="solid", color="blue", weight=9]; 4290 -> 2525[label="",style="solid", color="blue", weight=3]; 4291[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4291[label="",style="solid", color="blue", weight=9]; 4291 -> 2526[label="",style="solid", color="blue", weight=3]; 4292[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4292[label="",style="solid", color="blue", weight=9]; 4292 -> 2527[label="",style="solid", color="blue", weight=3]; 4293[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 2528[label="",style="solid", color="blue", weight=3]; 4294[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2385 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 2529[label="",style="solid", color="blue", weight=3]; 2338[label="xuu3110000",fontsize=16,color="green",shape="box"];2339[label="xuu6000",fontsize=16,color="green",shape="box"];2340 -> 2060[label="",style="dashed", color="red", weight=0]; 2340[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2340 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2061[label="",style="dashed", color="red", weight=0]; 2341[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2341 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2062[label="",style="dashed", color="red", weight=0]; 2342[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2342 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2063[label="",style="dashed", color="red", weight=0]; 2343[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2343 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2064[label="",style="dashed", color="red", weight=0]; 2344[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2344 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2065[label="",style="dashed", color="red", weight=0]; 2345[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2345 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2066[label="",style="dashed", color="red", weight=0]; 2346[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2346 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2067[label="",style="dashed", color="red", weight=0]; 2347[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2347 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2068[label="",style="dashed", color="red", weight=0]; 2348[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2348 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2069[label="",style="dashed", color="red", weight=0]; 2349[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2349 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2070[label="",style="dashed", color="red", weight=0]; 2350[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2350 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2071[label="",style="dashed", color="red", weight=0]; 2351[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2351 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2072[label="",style="dashed", color="red", weight=0]; 2352[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2352 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2353 -> 86[label="",style="dashed", color="red", weight=0]; 2353[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2353 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2557[label="",style="dashed", color="magenta", weight=3]; 509 -> 2023[label="",style="dashed", color="red", weight=0]; 509[label="compare2 (Just xuu22) (Just xuu17) (Just xuu22 == Just xuu17)",fontsize=16,color="magenta"];509 -> 2051[label="",style="dashed", color="magenta", weight=3]; 509 -> 2052[label="",style="dashed", color="magenta", weight=3]; 509 -> 2053[label="",style="dashed", color="magenta", weight=3]; 510[label="FiniteMap.Branch (Just xuu22) (FiniteMap.addListToFM0 xuu18 xuu23) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];510 -> 762[label="",style="dashed", color="green", weight=3]; 511[label="Just xuu22",fontsize=16,color="green",shape="box"];512[label="xuu23",fontsize=16,color="green",shape="box"];513[label="xuu21",fontsize=16,color="green",shape="box"];2042[label="Nothing",fontsize=16,color="green",shape="box"];2043[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2043 -> 2074[label="",style="solid", color="black", weight=3]; 2044[label="Nothing",fontsize=16,color="green",shape="box"];516[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="black",shape="triangle"];516 -> 767[label="",style="solid", color="black", weight=3]; 2354[label="LT",fontsize=16,color="green",shape="box"];2355[label="LT",fontsize=16,color="green",shape="box"];2356[label="compare0 (Just xuu3300) Nothing otherwise",fontsize=16,color="black",shape="box"];2356 -> 2558[label="",style="solid", color="black", weight=3]; 2358[label="xuu3400",fontsize=16,color="green",shape="box"];2359[label="xuu3300",fontsize=16,color="green",shape="box"];2360[label="xuu3300 <= xuu3400",fontsize=16,color="blue",shape="box"];4295[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 2559[label="",style="solid", color="blue", weight=3]; 4296[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 2560[label="",style="solid", color="blue", weight=3]; 4297[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 2561[label="",style="solid", color="blue", weight=3]; 4298[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 2562[label="",style="solid", color="blue", weight=3]; 4299[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 2563[label="",style="solid", color="blue", weight=3]; 4300[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 2564[label="",style="solid", color="blue", weight=3]; 4301[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 2565[label="",style="solid", color="blue", weight=3]; 4302[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 2566[label="",style="solid", color="blue", weight=3]; 4303[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 2567[label="",style="solid", color="blue", weight=3]; 4304[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 2568[label="",style="solid", color="blue", weight=3]; 4305[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 2569[label="",style="solid", color="blue", weight=3]; 4306[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 2570[label="",style="solid", color="blue", weight=3]; 4307[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 2571[label="",style="solid", color="blue", weight=3]; 4308[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 2572[label="",style="solid", color="blue", weight=3]; 2357[label="compare1 (Just xuu132) (Just xuu133) xuu134",fontsize=16,color="burlywood",shape="triangle"];4309[label="xuu134/False",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4309[label="",style="solid", color="burlywood", weight=9]; 4309 -> 2573[label="",style="solid", color="burlywood", weight=3]; 4310[label="xuu134/True",fontsize=10,color="white",style="solid",shape="box"];2357 -> 4310[label="",style="solid", color="burlywood", weight=9]; 4310 -> 2574[label="",style="solid", color="burlywood", weight=3]; 2045[label="Nothing",fontsize=16,color="green",shape="box"];2046[label="Nothing == Just xuu600",fontsize=16,color="black",shape="box"];2046 -> 2075[label="",style="solid", color="black", weight=3]; 2047[label="Just xuu600",fontsize=16,color="green",shape="box"];522 -> 516[label="",style="dashed", color="red", weight=0]; 522[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];523[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];523 -> 770[label="",style="solid", color="black", weight=3]; 524[label="LT",fontsize=16,color="green",shape="box"];525 -> 997[label="",style="dashed", color="red", weight=0]; 525[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64)",fontsize=16,color="magenta"];525 -> 998[label="",style="dashed", color="magenta", weight=3]; 526 -> 3832[label="",style="dashed", color="red", weight=0]; 526[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];526 -> 3833[label="",style="dashed", color="magenta", weight=3]; 526 -> 3834[label="",style="dashed", color="magenta", weight=3]; 526 -> 3835[label="",style="dashed", color="magenta", weight=3]; 526 -> 3836[label="",style="dashed", color="magenta", weight=3]; 526 -> 3837[label="",style="dashed", color="magenta", weight=3]; 2048[label="Just xuu311000",fontsize=16,color="green",shape="box"];2049[label="Just xuu311000 == Nothing",fontsize=16,color="black",shape="box"];2049 -> 2076[label="",style="solid", color="black", weight=3]; 2050[label="Nothing",fontsize=16,color="green",shape="box"];534 -> 516[label="",style="dashed", color="red", weight=0]; 534[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];535[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];535 -> 775[label="",style="solid", color="black", weight=3]; 536[label="LT",fontsize=16,color="green",shape="box"];537 -> 1027[label="",style="dashed", color="red", weight=0]; 537[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64)",fontsize=16,color="magenta"];537 -> 1028[label="",style="dashed", color="magenta", weight=3]; 538 -> 3832[label="",style="dashed", color="red", weight=0]; 538[label="FiniteMap.mkBranch (Pos (Succ Zero)) Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];538 -> 3838[label="",style="dashed", color="magenta", weight=3]; 538 -> 3839[label="",style="dashed", color="magenta", weight=3]; 538 -> 3840[label="",style="dashed", color="magenta", weight=3]; 538 -> 3841[label="",style="dashed", color="magenta", weight=3]; 538 -> 3842[label="",style="dashed", color="magenta", weight=3]; 2361[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4311[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4311[label="",style="solid", color="burlywood", weight=9]; 4311 -> 2575[label="",style="solid", color="burlywood", weight=3]; 4312[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2361 -> 4312[label="",style="solid", color="burlywood", weight=9]; 4312 -> 2576[label="",style="solid", color="burlywood", weight=3]; 2362[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];4313[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4313[label="",style="solid", color="burlywood", weight=9]; 4313 -> 2577[label="",style="solid", color="burlywood", weight=3]; 4314[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2362 -> 4314[label="",style="solid", color="burlywood", weight=9]; 4314 -> 2578[label="",style="solid", color="burlywood", weight=3]; 2390 -> 2060[label="",style="dashed", color="red", weight=0]; 2390[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2390 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2390 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2061[label="",style="dashed", color="red", weight=0]; 2391[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2391 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2062[label="",style="dashed", color="red", weight=0]; 2392[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2392 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2063[label="",style="dashed", color="red", weight=0]; 2393[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2393 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2064[label="",style="dashed", color="red", weight=0]; 2394[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2394 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2065[label="",style="dashed", color="red", weight=0]; 2395[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2395 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2396 -> 2066[label="",style="dashed", color="red", weight=0]; 2396[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2396 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2396 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2067[label="",style="dashed", color="red", weight=0]; 2397[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2397 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2398 -> 2068[label="",style="dashed", color="red", weight=0]; 2398[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2398 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2398 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2399 -> 2069[label="",style="dashed", color="red", weight=0]; 2399[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2399 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2399 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2400 -> 2070[label="",style="dashed", color="red", weight=0]; 2400[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2400 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2400 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2401 -> 2071[label="",style="dashed", color="red", weight=0]; 2401[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2401 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2401 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2072[label="",style="dashed", color="red", weight=0]; 2402[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2402 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2403 -> 86[label="",style="dashed", color="red", weight=0]; 2403[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2403 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2060[label="",style="dashed", color="red", weight=0]; 2404[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2404 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2061[label="",style="dashed", color="red", weight=0]; 2405[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2405 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2062[label="",style="dashed", color="red", weight=0]; 2406[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2406 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2063[label="",style="dashed", color="red", weight=0]; 2407[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2407 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2408 -> 2064[label="",style="dashed", color="red", weight=0]; 2408[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2408 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2408 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2065[label="",style="dashed", color="red", weight=0]; 2409[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2409 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2066[label="",style="dashed", color="red", weight=0]; 2410[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2410 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2411 -> 2067[label="",style="dashed", color="red", weight=0]; 2411[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2411 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2411 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2068[label="",style="dashed", color="red", weight=0]; 2412[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2412 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2069[label="",style="dashed", color="red", weight=0]; 2413[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2413 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2070[label="",style="dashed", color="red", weight=0]; 2414[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2414 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2071[label="",style="dashed", color="red", weight=0]; 2415[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2415 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2072[label="",style="dashed", color="red", weight=0]; 2416[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2416 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2417 -> 86[label="",style="dashed", color="red", weight=0]; 2417[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2417 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2418[label="False && xuu139",fontsize=16,color="black",shape="box"];2418 -> 2656[label="",style="solid", color="black", weight=3]; 2419[label="True && xuu139",fontsize=16,color="black",shape="box"];2419 -> 2657[label="",style="solid", color="black", weight=3]; 2420[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];4315[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 2658[label="",style="solid", color="blue", weight=3]; 4316[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 2659[label="",style="solid", color="blue", weight=3]; 4317[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 2660[label="",style="solid", color="blue", weight=3]; 4318[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 2661[label="",style="solid", color="blue", weight=3]; 4319[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 2662[label="",style="solid", color="blue", weight=3]; 4320[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 2663[label="",style="solid", color="blue", weight=3]; 4321[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 2664[label="",style="solid", color="blue", weight=3]; 4322[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 2665[label="",style="solid", color="blue", weight=3]; 4323[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4323[label="",style="solid", color="blue", weight=9]; 4323 -> 2666[label="",style="solid", color="blue", weight=3]; 4324[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 2667[label="",style="solid", color="blue", weight=3]; 4325[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 2668[label="",style="solid", color="blue", weight=3]; 4326[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 2669[label="",style="solid", color="blue", weight=3]; 4327[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 2670[label="",style="solid", color="blue", weight=3]; 4328[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 2671[label="",style="solid", color="blue", weight=3]; 2421[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4329[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 2672[label="",style="solid", color="blue", weight=3]; 4330[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 2673[label="",style="solid", color="blue", weight=3]; 4331[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 2674[label="",style="solid", color="blue", weight=3]; 4332[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 2675[label="",style="solid", color="blue", weight=3]; 4333[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4333[label="",style="solid", color="blue", weight=9]; 4333 -> 2676[label="",style="solid", color="blue", weight=3]; 4334[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4334[label="",style="solid", color="blue", weight=9]; 4334 -> 2677[label="",style="solid", color="blue", weight=3]; 4335[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4335[label="",style="solid", color="blue", weight=9]; 4335 -> 2678[label="",style="solid", color="blue", weight=3]; 4336[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4336[label="",style="solid", color="blue", weight=9]; 4336 -> 2679[label="",style="solid", color="blue", weight=3]; 4337[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4337[label="",style="solid", color="blue", weight=9]; 4337 -> 2680[label="",style="solid", color="blue", weight=3]; 4338[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4338[label="",style="solid", color="blue", weight=9]; 4338 -> 2681[label="",style="solid", color="blue", weight=3]; 4339[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4339[label="",style="solid", color="blue", weight=9]; 4339 -> 2682[label="",style="solid", color="blue", weight=3]; 4340[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4340[label="",style="solid", color="blue", weight=9]; 4340 -> 2683[label="",style="solid", color="blue", weight=3]; 4341[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4341[label="",style="solid", color="blue", weight=9]; 4341 -> 2684[label="",style="solid", color="blue", weight=3]; 4342[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2421 -> 4342[label="",style="solid", color="blue", weight=9]; 4342 -> 2685[label="",style="solid", color="blue", weight=3]; 2422 -> 2060[label="",style="dashed", color="red", weight=0]; 2422[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2422 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2061[label="",style="dashed", color="red", weight=0]; 2423[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2423 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2062[label="",style="dashed", color="red", weight=0]; 2424[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2424 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2063[label="",style="dashed", color="red", weight=0]; 2425[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2425 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2064[label="",style="dashed", color="red", weight=0]; 2426[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2426 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2065[label="",style="dashed", color="red", weight=0]; 2427[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2427 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2066[label="",style="dashed", color="red", weight=0]; 2428[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2428 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2067[label="",style="dashed", color="red", weight=0]; 2429[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2429 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2068[label="",style="dashed", color="red", weight=0]; 2430[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2430 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2069[label="",style="dashed", color="red", weight=0]; 2431[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2431 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2070[label="",style="dashed", color="red", weight=0]; 2432[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2432 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2071[label="",style="dashed", color="red", weight=0]; 2433[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2433 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2072[label="",style="dashed", color="red", weight=0]; 2434[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2434 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2435 -> 86[label="",style="dashed", color="red", weight=0]; 2435[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2435 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2436 -> 617[label="",style="dashed", color="red", weight=0]; 2436[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2437 -> 617[label="",style="dashed", color="red", weight=0]; 2437[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2437 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2438[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2438 -> 2716[label="",style="solid", color="black", weight=3]; 2439[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2439 -> 2717[label="",style="solid", color="black", weight=3]; 2440[label="False",fontsize=16,color="green",shape="box"];2441[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2441 -> 2718[label="",style="solid", color="black", weight=3]; 2442[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2442 -> 2719[label="",style="solid", color="black", weight=3]; 2443[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2443 -> 2720[label="",style="solid", color="black", weight=3]; 2444[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2444 -> 2721[label="",style="solid", color="black", weight=3]; 2445[label="False",fontsize=16,color="green",shape="box"];2446[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2446 -> 2722[label="",style="solid", color="black", weight=3]; 2447[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2447 -> 2723[label="",style="solid", color="black", weight=3]; 2448[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2448 -> 2724[label="",style="solid", color="black", weight=3]; 2449[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2449 -> 2725[label="",style="solid", color="black", weight=3]; 2450[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2450 -> 2726[label="",style="solid", color="black", weight=3]; 2451[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2451 -> 2727[label="",style="solid", color="black", weight=3]; 2452[label="xuu3110000",fontsize=16,color="green",shape="box"];2453[label="xuu6000",fontsize=16,color="green",shape="box"];2454[label="xuu3110000",fontsize=16,color="green",shape="box"];2455[label="xuu6000",fontsize=16,color="green",shape="box"];2456[label="xuu3110000",fontsize=16,color="green",shape="box"];2457[label="xuu6000",fontsize=16,color="green",shape="box"];2458[label="xuu3110000",fontsize=16,color="green",shape="box"];2459[label="xuu6000",fontsize=16,color="green",shape="box"];2460[label="xuu3110000",fontsize=16,color="green",shape="box"];2461[label="xuu6000",fontsize=16,color="green",shape="box"];2462[label="xuu3110000",fontsize=16,color="green",shape="box"];2463[label="xuu6000",fontsize=16,color="green",shape="box"];2464[label="xuu3110000",fontsize=16,color="green",shape="box"];2465[label="xuu6000",fontsize=16,color="green",shape="box"];2466[label="xuu3110000",fontsize=16,color="green",shape="box"];2467[label="xuu6000",fontsize=16,color="green",shape="box"];2468[label="xuu3110000",fontsize=16,color="green",shape="box"];2469[label="xuu6000",fontsize=16,color="green",shape="box"];2470[label="xuu3110000",fontsize=16,color="green",shape="box"];2471[label="xuu6000",fontsize=16,color="green",shape="box"];2472[label="xuu3110000",fontsize=16,color="green",shape="box"];2473[label="xuu6000",fontsize=16,color="green",shape="box"];2474[label="xuu3110000",fontsize=16,color="green",shape="box"];2475[label="xuu6000",fontsize=16,color="green",shape="box"];2476[label="xuu3110000",fontsize=16,color="green",shape="box"];2477[label="xuu6000",fontsize=16,color="green",shape="box"];2478[label="xuu3110000",fontsize=16,color="green",shape="box"];2479[label="xuu6000",fontsize=16,color="green",shape="box"];2480[label="xuu3110000",fontsize=16,color="green",shape="box"];2481[label="xuu6000",fontsize=16,color="green",shape="box"];2482[label="xuu3110000",fontsize=16,color="green",shape="box"];2483[label="xuu6000",fontsize=16,color="green",shape="box"];2484[label="xuu3110000",fontsize=16,color="green",shape="box"];2485[label="xuu6000",fontsize=16,color="green",shape="box"];2486[label="xuu3110000",fontsize=16,color="green",shape="box"];2487[label="xuu6000",fontsize=16,color="green",shape="box"];2488[label="xuu3110000",fontsize=16,color="green",shape="box"];2489[label="xuu6000",fontsize=16,color="green",shape="box"];2490[label="xuu3110000",fontsize=16,color="green",shape="box"];2491[label="xuu6000",fontsize=16,color="green",shape="box"];2492[label="xuu3110000",fontsize=16,color="green",shape="box"];2493[label="xuu6000",fontsize=16,color="green",shape="box"];2494[label="xuu3110000",fontsize=16,color="green",shape="box"];2495[label="xuu6000",fontsize=16,color="green",shape="box"];2496[label="xuu3110000",fontsize=16,color="green",shape="box"];2497[label="xuu6000",fontsize=16,color="green",shape="box"];2498[label="xuu3110000",fontsize=16,color="green",shape="box"];2499[label="xuu6000",fontsize=16,color="green",shape="box"];2500[label="xuu3110000",fontsize=16,color="green",shape="box"];2501[label="xuu6000",fontsize=16,color="green",shape="box"];2502[label="xuu3110000",fontsize=16,color="green",shape="box"];2503[label="xuu6000",fontsize=16,color="green",shape="box"];2504[label="xuu3110000",fontsize=16,color="green",shape="box"];2505[label="xuu6000",fontsize=16,color="green",shape="box"];2506[label="xuu3110000",fontsize=16,color="green",shape="box"];2507[label="xuu6000",fontsize=16,color="green",shape="box"];2508 -> 617[label="",style="dashed", color="red", weight=0]; 2508[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2508 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2509 -> 617[label="",style="dashed", color="red", weight=0]; 2509[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2509 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2065[label="",style="dashed", color="red", weight=0]; 2510[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2510 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2071[label="",style="dashed", color="red", weight=0]; 2511[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2511 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2065[label="",style="dashed", color="red", weight=0]; 2512[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2512 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2071[label="",style="dashed", color="red", weight=0]; 2513[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2513 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2514[label="xuu3110001",fontsize=16,color="green",shape="box"];2515[label="xuu6001",fontsize=16,color="green",shape="box"];2516 -> 2060[label="",style="dashed", color="red", weight=0]; 2516[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2516 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2061[label="",style="dashed", color="red", weight=0]; 2517[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2517 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2062[label="",style="dashed", color="red", weight=0]; 2518[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2518 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2063[label="",style="dashed", color="red", weight=0]; 2519[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2519 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2064[label="",style="dashed", color="red", weight=0]; 2520[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2520 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2065[label="",style="dashed", color="red", weight=0]; 2521[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2521 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2066[label="",style="dashed", color="red", weight=0]; 2522[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2522 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2067[label="",style="dashed", color="red", weight=0]; 2523[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2523 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2068[label="",style="dashed", color="red", weight=0]; 2524[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2524 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2069[label="",style="dashed", color="red", weight=0]; 2525[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2525 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2070[label="",style="dashed", color="red", weight=0]; 2526[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2526 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2071[label="",style="dashed", color="red", weight=0]; 2527[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2527 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2072[label="",style="dashed", color="red", weight=0]; 2528[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2528 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2529 -> 86[label="",style="dashed", color="red", weight=0]; 2529[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2529 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2530[label="xuu3110000",fontsize=16,color="green",shape="box"];2531[label="xuu6000",fontsize=16,color="green",shape="box"];2532[label="xuu3110000",fontsize=16,color="green",shape="box"];2533[label="xuu6000",fontsize=16,color="green",shape="box"];2534[label="xuu3110000",fontsize=16,color="green",shape="box"];2535[label="xuu6000",fontsize=16,color="green",shape="box"];2536[label="xuu3110000",fontsize=16,color="green",shape="box"];2537[label="xuu6000",fontsize=16,color="green",shape="box"];2538[label="xuu3110000",fontsize=16,color="green",shape="box"];2539[label="xuu6000",fontsize=16,color="green",shape="box"];2540[label="xuu3110000",fontsize=16,color="green",shape="box"];2541[label="xuu6000",fontsize=16,color="green",shape="box"];2542[label="xuu3110000",fontsize=16,color="green",shape="box"];2543[label="xuu6000",fontsize=16,color="green",shape="box"];2544[label="xuu3110000",fontsize=16,color="green",shape="box"];2545[label="xuu6000",fontsize=16,color="green",shape="box"];2546[label="xuu3110000",fontsize=16,color="green",shape="box"];2547[label="xuu6000",fontsize=16,color="green",shape="box"];2548[label="xuu3110000",fontsize=16,color="green",shape="box"];2549[label="xuu6000",fontsize=16,color="green",shape="box"];2550[label="xuu3110000",fontsize=16,color="green",shape="box"];2551[label="xuu6000",fontsize=16,color="green",shape="box"];2552[label="xuu3110000",fontsize=16,color="green",shape="box"];2553[label="xuu6000",fontsize=16,color="green",shape="box"];2554[label="xuu3110000",fontsize=16,color="green",shape="box"];2555[label="xuu6000",fontsize=16,color="green",shape="box"];2556[label="xuu3110000",fontsize=16,color="green",shape="box"];2557[label="xuu6000",fontsize=16,color="green",shape="box"];2051[label="Just xuu22",fontsize=16,color="green",shape="box"];2052[label="Just xuu22 == Just xuu17",fontsize=16,color="black",shape="box"];2052 -> 2077[label="",style="solid", color="black", weight=3]; 2053[label="Just xuu17",fontsize=16,color="green",shape="box"];762 -> 516[label="",style="dashed", color="red", weight=0]; 762[label="FiniteMap.addListToFM0 xuu18 xuu23",fontsize=16,color="magenta"];762 -> 992[label="",style="dashed", color="magenta", weight=3]; 762 -> 993[label="",style="dashed", color="magenta", weight=3]; 2074[label="True",fontsize=16,color="green",shape="box"];767[label="xuu31101",fontsize=16,color="green",shape="box"];2558[label="compare0 (Just xuu3300) Nothing True",fontsize=16,color="black",shape="box"];2558 -> 2768[label="",style="solid", color="black", weight=3]; 2559[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4343[label="xuu3300/Left xuu33000",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4343[label="",style="solid", color="burlywood", weight=9]; 4343 -> 2769[label="",style="solid", color="burlywood", weight=3]; 4344[label="xuu3300/Right xuu33000",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4344[label="",style="solid", color="burlywood", weight=9]; 4344 -> 2770[label="",style="solid", color="burlywood", weight=3]; 2560[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2560 -> 2771[label="",style="solid", color="black", weight=3]; 2561[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4345[label="xuu3300/(xuu33000,xuu33001,xuu33002)",fontsize=10,color="white",style="solid",shape="box"];2561 -> 4345[label="",style="solid", color="burlywood", weight=9]; 4345 -> 2772[label="",style="solid", color="burlywood", weight=3]; 2562[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2562 -> 2773[label="",style="solid", color="black", weight=3]; 2563[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2563 -> 2774[label="",style="solid", color="black", weight=3]; 2564[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2564 -> 2775[label="",style="solid", color="black", weight=3]; 2565[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4346[label="xuu3300/LT",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4346[label="",style="solid", color="burlywood", weight=9]; 4346 -> 2776[label="",style="solid", color="burlywood", weight=3]; 4347[label="xuu3300/EQ",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4347[label="",style="solid", color="burlywood", weight=9]; 4347 -> 2777[label="",style="solid", color="burlywood", weight=3]; 4348[label="xuu3300/GT",fontsize=10,color="white",style="solid",shape="box"];2565 -> 4348[label="",style="solid", color="burlywood", weight=9]; 4348 -> 2778[label="",style="solid", color="burlywood", weight=3]; 2566[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2566 -> 2779[label="",style="solid", color="black", weight=3]; 2567[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4349[label="xuu3300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2567 -> 4349[label="",style="solid", color="burlywood", weight=9]; 4349 -> 2780[label="",style="solid", color="burlywood", weight=3]; 4350[label="xuu3300/Just xuu33000",fontsize=10,color="white",style="solid",shape="box"];2567 -> 4350[label="",style="solid", color="burlywood", weight=9]; 4350 -> 2781[label="",style="solid", color="burlywood", weight=3]; 2568[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4351[label="xuu3300/(xuu33000,xuu33001)",fontsize=10,color="white",style="solid",shape="box"];2568 -> 4351[label="",style="solid", color="burlywood", weight=9]; 4351 -> 2782[label="",style="solid", color="burlywood", weight=3]; 2569[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2569 -> 2783[label="",style="solid", color="black", weight=3]; 2570[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4352[label="xuu3300/False",fontsize=10,color="white",style="solid",shape="box"];2570 -> 4352[label="",style="solid", color="burlywood", weight=9]; 4352 -> 2784[label="",style="solid", color="burlywood", weight=3]; 4353[label="xuu3300/True",fontsize=10,color="white",style="solid",shape="box"];2570 -> 4353[label="",style="solid", color="burlywood", weight=9]; 4353 -> 2785[label="",style="solid", color="burlywood", weight=3]; 2571[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2571 -> 2786[label="",style="solid", color="black", weight=3]; 2572[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2572 -> 2787[label="",style="solid", color="black", weight=3]; 2573[label="compare1 (Just xuu132) (Just xuu133) False",fontsize=16,color="black",shape="box"];2573 -> 2788[label="",style="solid", color="black", weight=3]; 2574[label="compare1 (Just xuu132) (Just xuu133) True",fontsize=16,color="black",shape="box"];2574 -> 2789[label="",style="solid", color="black", weight=3]; 2075[label="False",fontsize=16,color="green",shape="box"];770[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];770 -> 996[label="",style="solid", color="black", weight=3]; 998 -> 1515[label="",style="dashed", color="red", weight=0]; 998[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];998 -> 1516[label="",style="dashed", color="magenta", weight=3]; 998 -> 1517[label="",style="dashed", color="magenta", weight=3]; 997[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu67",fontsize=16,color="burlywood",shape="triangle"];4354[label="xuu67/False",fontsize=10,color="white",style="solid",shape="box"];997 -> 4354[label="",style="solid", color="burlywood", weight=9]; 4354 -> 1009[label="",style="solid", color="burlywood", weight=3]; 4355[label="xuu67/True",fontsize=10,color="white",style="solid",shape="box"];997 -> 4355[label="",style="solid", color="burlywood", weight=9]; 4355 -> 1010[label="",style="solid", color="burlywood", weight=3]; 3833[label="xuu61",fontsize=16,color="green",shape="box"];3834[label="xuu64",fontsize=16,color="green",shape="box"];3835[label="Zero",fontsize=16,color="green",shape="box"];3836[label="Just xuu600",fontsize=16,color="green",shape="box"];3837[label="xuu28",fontsize=16,color="green",shape="box"];3832[label="FiniteMap.mkBranch (Pos (Succ xuu208)) xuu209 xuu210 xuu211 xuu212",fontsize=16,color="black",shape="triangle"];3832 -> 3963[label="",style="solid", color="black", weight=3]; 2076[label="False",fontsize=16,color="green",shape="box"];775[label="primCmpInt (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];775 -> 1026[label="",style="solid", color="black", weight=3]; 1028 -> 1515[label="",style="dashed", color="red", weight=0]; 1028[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1028 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1027[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu70",fontsize=16,color="burlywood",shape="triangle"];4356[label="xuu70/False",fontsize=10,color="white",style="solid",shape="box"];1027 -> 4356[label="",style="solid", color="burlywood", weight=9]; 4356 -> 1033[label="",style="solid", color="burlywood", weight=3]; 4357[label="xuu70/True",fontsize=10,color="white",style="solid",shape="box"];1027 -> 4357[label="",style="solid", color="burlywood", weight=9]; 4357 -> 1034[label="",style="solid", color="burlywood", weight=3]; 3838[label="xuu61",fontsize=16,color="green",shape="box"];3839[label="xuu64",fontsize=16,color="green",shape="box"];3840[label="Zero",fontsize=16,color="green",shape="box"];3841[label="Nothing",fontsize=16,color="green",shape="box"];3842[label="xuu36",fontsize=16,color="green",shape="box"];2575[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];2575 -> 2790[label="",style="solid", color="black", weight=3]; 2576[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2576 -> 2791[label="",style="solid", color="black", weight=3]; 2577[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];2577 -> 2792[label="",style="solid", color="black", weight=3]; 2578[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2578 -> 2793[label="",style="solid", color="black", weight=3]; 2600[label="xuu3110001",fontsize=16,color="green",shape="box"];2601[label="xuu6001",fontsize=16,color="green",shape="box"];2602[label="xuu3110001",fontsize=16,color="green",shape="box"];2603[label="xuu6001",fontsize=16,color="green",shape="box"];2604[label="xuu3110001",fontsize=16,color="green",shape="box"];2605[label="xuu6001",fontsize=16,color="green",shape="box"];2606[label="xuu3110001",fontsize=16,color="green",shape="box"];2607[label="xuu6001",fontsize=16,color="green",shape="box"];2608[label="xuu3110001",fontsize=16,color="green",shape="box"];2609[label="xuu6001",fontsize=16,color="green",shape="box"];2610[label="xuu3110001",fontsize=16,color="green",shape="box"];2611[label="xuu6001",fontsize=16,color="green",shape="box"];2612[label="xuu3110001",fontsize=16,color="green",shape="box"];2613[label="xuu6001",fontsize=16,color="green",shape="box"];2614[label="xuu3110001",fontsize=16,color="green",shape="box"];2615[label="xuu6001",fontsize=16,color="green",shape="box"];2616[label="xuu3110001",fontsize=16,color="green",shape="box"];2617[label="xuu6001",fontsize=16,color="green",shape="box"];2618[label="xuu3110001",fontsize=16,color="green",shape="box"];2619[label="xuu6001",fontsize=16,color="green",shape="box"];2620[label="xuu3110001",fontsize=16,color="green",shape="box"];2621[label="xuu6001",fontsize=16,color="green",shape="box"];2622[label="xuu3110001",fontsize=16,color="green",shape="box"];2623[label="xuu6001",fontsize=16,color="green",shape="box"];2624[label="xuu3110001",fontsize=16,color="green",shape="box"];2625[label="xuu6001",fontsize=16,color="green",shape="box"];2626[label="xuu3110001",fontsize=16,color="green",shape="box"];2627[label="xuu6001",fontsize=16,color="green",shape="box"];2628[label="xuu3110000",fontsize=16,color="green",shape="box"];2629[label="xuu6000",fontsize=16,color="green",shape="box"];2630[label="xuu3110000",fontsize=16,color="green",shape="box"];2631[label="xuu6000",fontsize=16,color="green",shape="box"];2632[label="xuu3110000",fontsize=16,color="green",shape="box"];2633[label="xuu6000",fontsize=16,color="green",shape="box"];2634[label="xuu3110000",fontsize=16,color="green",shape="box"];2635[label="xuu6000",fontsize=16,color="green",shape="box"];2636[label="xuu3110000",fontsize=16,color="green",shape="box"];2637[label="xuu6000",fontsize=16,color="green",shape="box"];2638[label="xuu3110000",fontsize=16,color="green",shape="box"];2639[label="xuu6000",fontsize=16,color="green",shape="box"];2640[label="xuu3110000",fontsize=16,color="green",shape="box"];2641[label="xuu6000",fontsize=16,color="green",shape="box"];2642[label="xuu3110000",fontsize=16,color="green",shape="box"];2643[label="xuu6000",fontsize=16,color="green",shape="box"];2644[label="xuu3110000",fontsize=16,color="green",shape="box"];2645[label="xuu6000",fontsize=16,color="green",shape="box"];2646[label="xuu3110000",fontsize=16,color="green",shape="box"];2647[label="xuu6000",fontsize=16,color="green",shape="box"];2648[label="xuu3110000",fontsize=16,color="green",shape="box"];2649[label="xuu6000",fontsize=16,color="green",shape="box"];2650[label="xuu3110000",fontsize=16,color="green",shape="box"];2651[label="xuu6000",fontsize=16,color="green",shape="box"];2652[label="xuu3110000",fontsize=16,color="green",shape="box"];2653[label="xuu6000",fontsize=16,color="green",shape="box"];2654[label="xuu3110000",fontsize=16,color="green",shape="box"];2655[label="xuu6000",fontsize=16,color="green",shape="box"];2656[label="False",fontsize=16,color="green",shape="box"];2657[label="xuu139",fontsize=16,color="green",shape="box"];2658 -> 2060[label="",style="dashed", color="red", weight=0]; 2658[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2658 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2061[label="",style="dashed", color="red", weight=0]; 2659[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2659 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2062[label="",style="dashed", color="red", weight=0]; 2660[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2660 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2063[label="",style="dashed", color="red", weight=0]; 2661[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2661 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2064[label="",style="dashed", color="red", weight=0]; 2662[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2662 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2065[label="",style="dashed", color="red", weight=0]; 2663[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2663 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2066[label="",style="dashed", color="red", weight=0]; 2664[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2664 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2067[label="",style="dashed", color="red", weight=0]; 2665[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2665 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2068[label="",style="dashed", color="red", weight=0]; 2666[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2666 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2069[label="",style="dashed", color="red", weight=0]; 2667[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2667 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2070[label="",style="dashed", color="red", weight=0]; 2668[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2668 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2071[label="",style="dashed", color="red", weight=0]; 2669[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2669 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2670 -> 2072[label="",style="dashed", color="red", weight=0]; 2670[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2670 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2670 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2671 -> 86[label="",style="dashed", color="red", weight=0]; 2671[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2671 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2671 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2060[label="",style="dashed", color="red", weight=0]; 2672[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2672 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2061[label="",style="dashed", color="red", weight=0]; 2673[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2673 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2062[label="",style="dashed", color="red", weight=0]; 2674[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2674 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2063[label="",style="dashed", color="red", weight=0]; 2675[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2675 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2064[label="",style="dashed", color="red", weight=0]; 2676[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2676 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2065[label="",style="dashed", color="red", weight=0]; 2677[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2677 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2066[label="",style="dashed", color="red", weight=0]; 2678[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2678 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2067[label="",style="dashed", color="red", weight=0]; 2679[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2679 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2068[label="",style="dashed", color="red", weight=0]; 2680[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2680 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2069[label="",style="dashed", color="red", weight=0]; 2681[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2681 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2070[label="",style="dashed", color="red", weight=0]; 2682[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2682 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2071[label="",style="dashed", color="red", weight=0]; 2683[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2683 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2072[label="",style="dashed", color="red", weight=0]; 2684[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2684 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2685 -> 86[label="",style="dashed", color="red", weight=0]; 2685[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2685 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2686[label="xuu3110000",fontsize=16,color="green",shape="box"];2687[label="xuu6000",fontsize=16,color="green",shape="box"];2688[label="xuu3110000",fontsize=16,color="green",shape="box"];2689[label="xuu6000",fontsize=16,color="green",shape="box"];2690[label="xuu3110000",fontsize=16,color="green",shape="box"];2691[label="xuu6000",fontsize=16,color="green",shape="box"];2692[label="xuu3110000",fontsize=16,color="green",shape="box"];2693[label="xuu6000",fontsize=16,color="green",shape="box"];2694[label="xuu3110000",fontsize=16,color="green",shape="box"];2695[label="xuu6000",fontsize=16,color="green",shape="box"];2696[label="xuu3110000",fontsize=16,color="green",shape="box"];2697[label="xuu6000",fontsize=16,color="green",shape="box"];2698[label="xuu3110000",fontsize=16,color="green",shape="box"];2699[label="xuu6000",fontsize=16,color="green",shape="box"];2700[label="xuu3110000",fontsize=16,color="green",shape="box"];2701[label="xuu6000",fontsize=16,color="green",shape="box"];2702[label="xuu3110000",fontsize=16,color="green",shape="box"];2703[label="xuu6000",fontsize=16,color="green",shape="box"];2704[label="xuu3110000",fontsize=16,color="green",shape="box"];2705[label="xuu6000",fontsize=16,color="green",shape="box"];2706[label="xuu3110000",fontsize=16,color="green",shape="box"];2707[label="xuu6000",fontsize=16,color="green",shape="box"];2708[label="xuu3110000",fontsize=16,color="green",shape="box"];2709[label="xuu6000",fontsize=16,color="green",shape="box"];2710[label="xuu3110000",fontsize=16,color="green",shape="box"];2711[label="xuu6000",fontsize=16,color="green",shape="box"];2712[label="xuu3110000",fontsize=16,color="green",shape="box"];2713[label="xuu6000",fontsize=16,color="green",shape="box"];617[label="xuu3110000 * xuu6001",fontsize=16,color="black",shape="triangle"];617 -> 903[label="",style="solid", color="black", weight=3]; 2714[label="xuu3110001",fontsize=16,color="green",shape="box"];2715[label="xuu6000",fontsize=16,color="green",shape="box"];2716 -> 2278[label="",style="dashed", color="red", weight=0]; 2716[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2716 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2717[label="False",fontsize=16,color="green",shape="box"];2718[label="False",fontsize=16,color="green",shape="box"];2719[label="True",fontsize=16,color="green",shape="box"];2720[label="False",fontsize=16,color="green",shape="box"];2721[label="True",fontsize=16,color="green",shape="box"];2722 -> 2278[label="",style="dashed", color="red", weight=0]; 2722[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2722 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2723[label="False",fontsize=16,color="green",shape="box"];2724[label="False",fontsize=16,color="green",shape="box"];2725[label="True",fontsize=16,color="green",shape="box"];2726[label="False",fontsize=16,color="green",shape="box"];2727[label="True",fontsize=16,color="green",shape="box"];2728[label="xuu3110000",fontsize=16,color="green",shape="box"];2729[label="xuu6001",fontsize=16,color="green",shape="box"];2730[label="xuu3110001",fontsize=16,color="green",shape="box"];2731[label="xuu6000",fontsize=16,color="green",shape="box"];2732[label="xuu3110001",fontsize=16,color="green",shape="box"];2733[label="xuu6001",fontsize=16,color="green",shape="box"];2734[label="xuu3110001",fontsize=16,color="green",shape="box"];2735[label="xuu6001",fontsize=16,color="green",shape="box"];2736[label="xuu3110000",fontsize=16,color="green",shape="box"];2737[label="xuu6000",fontsize=16,color="green",shape="box"];2738[label="xuu3110000",fontsize=16,color="green",shape="box"];2739[label="xuu6000",fontsize=16,color="green",shape="box"];2740[label="xuu3110000",fontsize=16,color="green",shape="box"];2741[label="xuu6000",fontsize=16,color="green",shape="box"];2742[label="xuu3110000",fontsize=16,color="green",shape="box"];2743[label="xuu6000",fontsize=16,color="green",shape="box"];2744[label="xuu3110000",fontsize=16,color="green",shape="box"];2745[label="xuu6000",fontsize=16,color="green",shape="box"];2746[label="xuu3110000",fontsize=16,color="green",shape="box"];2747[label="xuu6000",fontsize=16,color="green",shape="box"];2748[label="xuu3110000",fontsize=16,color="green",shape="box"];2749[label="xuu6000",fontsize=16,color="green",shape="box"];2750[label="xuu3110000",fontsize=16,color="green",shape="box"];2751[label="xuu6000",fontsize=16,color="green",shape="box"];2752[label="xuu3110000",fontsize=16,color="green",shape="box"];2753[label="xuu6000",fontsize=16,color="green",shape="box"];2754[label="xuu3110000",fontsize=16,color="green",shape="box"];2755[label="xuu6000",fontsize=16,color="green",shape="box"];2756[label="xuu3110000",fontsize=16,color="green",shape="box"];2757[label="xuu6000",fontsize=16,color="green",shape="box"];2758[label="xuu3110000",fontsize=16,color="green",shape="box"];2759[label="xuu6000",fontsize=16,color="green",shape="box"];2760[label="xuu3110000",fontsize=16,color="green",shape="box"];2761[label="xuu6000",fontsize=16,color="green",shape="box"];2762[label="xuu3110000",fontsize=16,color="green",shape="box"];2763[label="xuu6000",fontsize=16,color="green",shape="box"];2764[label="xuu3110000",fontsize=16,color="green",shape="box"];2765[label="xuu6000",fontsize=16,color="green",shape="box"];2766[label="xuu3110000",fontsize=16,color="green",shape="box"];2767[label="xuu6000",fontsize=16,color="green",shape="box"];2077[label="xuu22 == xuu17",fontsize=16,color="blue",shape="box"];4358[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 2099[label="",style="solid", color="blue", weight=3]; 4359[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 2100[label="",style="solid", color="blue", weight=3]; 4360[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 2101[label="",style="solid", color="blue", weight=3]; 4361[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4361[label="",style="solid", color="blue", weight=9]; 4361 -> 2102[label="",style="solid", color="blue", weight=3]; 4362[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4362[label="",style="solid", color="blue", weight=9]; 4362 -> 2103[label="",style="solid", color="blue", weight=3]; 4363[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 2104[label="",style="solid", color="blue", weight=3]; 4364[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 2105[label="",style="solid", color="blue", weight=3]; 4365[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 2106[label="",style="solid", color="blue", weight=3]; 4366[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4366[label="",style="solid", color="blue", weight=9]; 4366 -> 2107[label="",style="solid", color="blue", weight=3]; 4367[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4367[label="",style="solid", color="blue", weight=9]; 4367 -> 2108[label="",style="solid", color="blue", weight=3]; 4368[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4368[label="",style="solid", color="blue", weight=9]; 4368 -> 2109[label="",style="solid", color="blue", weight=3]; 4369[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4369[label="",style="solid", color="blue", weight=9]; 4369 -> 2110[label="",style="solid", color="blue", weight=3]; 4370[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4370[label="",style="solid", color="blue", weight=9]; 4370 -> 2111[label="",style="solid", color="blue", weight=3]; 4371[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4371[label="",style="solid", color="blue", weight=9]; 4371 -> 2112[label="",style="solid", color="blue", weight=3]; 992[label="xuu18",fontsize=16,color="green",shape="box"];993[label="xuu23",fontsize=16,color="green",shape="box"];2768[label="GT",fontsize=16,color="green",shape="box"];2769[label="Left xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4372[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2769 -> 4372[label="",style="solid", color="burlywood", weight=9]; 4372 -> 2868[label="",style="solid", color="burlywood", weight=3]; 4373[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2769 -> 4373[label="",style="solid", color="burlywood", weight=9]; 4373 -> 2869[label="",style="solid", color="burlywood", weight=3]; 2770[label="Right xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4374[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4374[label="",style="solid", color="burlywood", weight=9]; 4374 -> 2870[label="",style="solid", color="burlywood", weight=3]; 4375[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4375[label="",style="solid", color="burlywood", weight=9]; 4375 -> 2871[label="",style="solid", color="burlywood", weight=3]; 2771 -> 2872[label="",style="dashed", color="red", weight=0]; 2771[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2771 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2772[label="(xuu33000,xuu33001,xuu33002) <= xuu3400",fontsize=16,color="burlywood",shape="box"];4376[label="xuu3400/(xuu34000,xuu34001,xuu34002)",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4376[label="",style="solid", color="burlywood", weight=9]; 4376 -> 2881[label="",style="solid", color="burlywood", weight=3]; 2773 -> 2872[label="",style="dashed", color="red", weight=0]; 2773[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2773 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2872[label="",style="dashed", color="red", weight=0]; 2774[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2774 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2872[label="",style="dashed", color="red", weight=0]; 2775[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2775 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2776[label="LT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4377[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4377[label="",style="solid", color="burlywood", weight=9]; 4377 -> 2882[label="",style="solid", color="burlywood", weight=3]; 4378[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 2883[label="",style="solid", color="burlywood", weight=3]; 4379[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4379[label="",style="solid", color="burlywood", weight=9]; 4379 -> 2884[label="",style="solid", color="burlywood", weight=3]; 2777[label="EQ <= xuu3400",fontsize=16,color="burlywood",shape="box"];4380[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4380[label="",style="solid", color="burlywood", weight=9]; 4380 -> 2885[label="",style="solid", color="burlywood", weight=3]; 4381[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4381[label="",style="solid", color="burlywood", weight=9]; 4381 -> 2886[label="",style="solid", color="burlywood", weight=3]; 4382[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2777 -> 4382[label="",style="solid", color="burlywood", weight=9]; 4382 -> 2887[label="",style="solid", color="burlywood", weight=3]; 2778[label="GT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4383[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4383[label="",style="solid", color="burlywood", weight=9]; 4383 -> 2888[label="",style="solid", color="burlywood", weight=3]; 4384[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4384[label="",style="solid", color="burlywood", weight=9]; 4384 -> 2889[label="",style="solid", color="burlywood", weight=3]; 4385[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4385[label="",style="solid", color="burlywood", weight=9]; 4385 -> 2890[label="",style="solid", color="burlywood", weight=3]; 2779 -> 2872[label="",style="dashed", color="red", weight=0]; 2779[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2779 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2780[label="Nothing <= xuu3400",fontsize=16,color="burlywood",shape="box"];4386[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4386[label="",style="solid", color="burlywood", weight=9]; 4386 -> 2891[label="",style="solid", color="burlywood", weight=3]; 4387[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2780 -> 4387[label="",style="solid", color="burlywood", weight=9]; 4387 -> 2892[label="",style="solid", color="burlywood", weight=3]; 2781[label="Just xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4388[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2781 -> 4388[label="",style="solid", color="burlywood", weight=9]; 4388 -> 2893[label="",style="solid", color="burlywood", weight=3]; 4389[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2781 -> 4389[label="",style="solid", color="burlywood", weight=9]; 4389 -> 2894[label="",style="solid", color="burlywood", weight=3]; 2782[label="(xuu33000,xuu33001) <= xuu3400",fontsize=16,color="burlywood",shape="box"];4390[label="xuu3400/(xuu34000,xuu34001)",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4390[label="",style="solid", color="burlywood", weight=9]; 4390 -> 2895[label="",style="solid", color="burlywood", weight=3]; 2783 -> 2872[label="",style="dashed", color="red", weight=0]; 2783[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2783 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2784[label="False <= xuu3400",fontsize=16,color="burlywood",shape="box"];4391[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4391[label="",style="solid", color="burlywood", weight=9]; 4391 -> 2896[label="",style="solid", color="burlywood", weight=3]; 4392[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2784 -> 4392[label="",style="solid", color="burlywood", weight=9]; 4392 -> 2897[label="",style="solid", color="burlywood", weight=3]; 2785[label="True <= xuu3400",fontsize=16,color="burlywood",shape="box"];4393[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 2898[label="",style="solid", color="burlywood", weight=3]; 4394[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 2899[label="",style="solid", color="burlywood", weight=3]; 2786 -> 2872[label="",style="dashed", color="red", weight=0]; 2786[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2786 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2872[label="",style="dashed", color="red", weight=0]; 2787[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2787 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2788[label="compare0 (Just xuu132) (Just xuu133) otherwise",fontsize=16,color="black",shape="box"];2788 -> 2900[label="",style="solid", color="black", weight=3]; 2789[label="LT",fontsize=16,color="green",shape="box"];996[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];996 -> 1132[label="",style="solid", color="black", weight=3]; 1516[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];1516 -> 1526[label="",style="solid", color="black", weight=3]; 1517 -> 617[label="",style="dashed", color="red", weight=0]; 1517[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1517 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1515[label="xuu91 > xuu90",fontsize=16,color="black",shape="triangle"];1515 -> 1529[label="",style="solid", color="black", weight=3]; 1009[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];1009 -> 1136[label="",style="solid", color="black", weight=3]; 1010[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1010 -> 1137[label="",style="solid", color="black", weight=3]; 3963[label="FiniteMap.mkBranchResult xuu209 xuu210 xuu212 xuu211",fontsize=16,color="black",shape="box"];3963 -> 4034[label="",style="solid", color="black", weight=3]; 1026[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1026 -> 1167[label="",style="solid", color="black", weight=3]; 1518[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];1518 -> 1530[label="",style="solid", color="black", weight=3]; 1519 -> 617[label="",style="dashed", color="red", weight=0]; 1519[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1519 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1033[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];1033 -> 1171[label="",style="solid", color="black", weight=3]; 1034[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1034 -> 1172[label="",style="solid", color="black", weight=3]; 2790 -> 2278[label="",style="dashed", color="red", weight=0]; 2790[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2790 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2791[label="False",fontsize=16,color="green",shape="box"];2792[label="False",fontsize=16,color="green",shape="box"];2793[label="True",fontsize=16,color="green",shape="box"];2808[label="xuu3110002",fontsize=16,color="green",shape="box"];2809[label="xuu6002",fontsize=16,color="green",shape="box"];2810[label="xuu3110002",fontsize=16,color="green",shape="box"];2811[label="xuu6002",fontsize=16,color="green",shape="box"];2812[label="xuu3110002",fontsize=16,color="green",shape="box"];2813[label="xuu6002",fontsize=16,color="green",shape="box"];2814[label="xuu3110002",fontsize=16,color="green",shape="box"];2815[label="xuu6002",fontsize=16,color="green",shape="box"];2816[label="xuu3110002",fontsize=16,color="green",shape="box"];2817[label="xuu6002",fontsize=16,color="green",shape="box"];2818[label="xuu3110002",fontsize=16,color="green",shape="box"];2819[label="xuu6002",fontsize=16,color="green",shape="box"];2820[label="xuu3110002",fontsize=16,color="green",shape="box"];2821[label="xuu6002",fontsize=16,color="green",shape="box"];2822[label="xuu3110002",fontsize=16,color="green",shape="box"];2823[label="xuu6002",fontsize=16,color="green",shape="box"];2824[label="xuu3110002",fontsize=16,color="green",shape="box"];2825[label="xuu6002",fontsize=16,color="green",shape="box"];2826[label="xuu3110002",fontsize=16,color="green",shape="box"];2827[label="xuu6002",fontsize=16,color="green",shape="box"];2828[label="xuu3110002",fontsize=16,color="green",shape="box"];2829[label="xuu6002",fontsize=16,color="green",shape="box"];2830[label="xuu3110002",fontsize=16,color="green",shape="box"];2831[label="xuu6002",fontsize=16,color="green",shape="box"];2832[label="xuu3110002",fontsize=16,color="green",shape="box"];2833[label="xuu6002",fontsize=16,color="green",shape="box"];2834[label="xuu3110002",fontsize=16,color="green",shape="box"];2835[label="xuu6002",fontsize=16,color="green",shape="box"];2836[label="xuu3110001",fontsize=16,color="green",shape="box"];2837[label="xuu6001",fontsize=16,color="green",shape="box"];2838[label="xuu3110001",fontsize=16,color="green",shape="box"];2839[label="xuu6001",fontsize=16,color="green",shape="box"];2840[label="xuu3110001",fontsize=16,color="green",shape="box"];2841[label="xuu6001",fontsize=16,color="green",shape="box"];2842[label="xuu3110001",fontsize=16,color="green",shape="box"];2843[label="xuu6001",fontsize=16,color="green",shape="box"];2844[label="xuu3110001",fontsize=16,color="green",shape="box"];2845[label="xuu6001",fontsize=16,color="green",shape="box"];2846[label="xuu3110001",fontsize=16,color="green",shape="box"];2847[label="xuu6001",fontsize=16,color="green",shape="box"];2848[label="xuu3110001",fontsize=16,color="green",shape="box"];2849[label="xuu6001",fontsize=16,color="green",shape="box"];2850[label="xuu3110001",fontsize=16,color="green",shape="box"];2851[label="xuu6001",fontsize=16,color="green",shape="box"];2852[label="xuu3110001",fontsize=16,color="green",shape="box"];2853[label="xuu6001",fontsize=16,color="green",shape="box"];2854[label="xuu3110001",fontsize=16,color="green",shape="box"];2855[label="xuu6001",fontsize=16,color="green",shape="box"];2856[label="xuu3110001",fontsize=16,color="green",shape="box"];2857[label="xuu6001",fontsize=16,color="green",shape="box"];2858[label="xuu3110001",fontsize=16,color="green",shape="box"];2859[label="xuu6001",fontsize=16,color="green",shape="box"];2860[label="xuu3110001",fontsize=16,color="green",shape="box"];2861[label="xuu6001",fontsize=16,color="green",shape="box"];2862[label="xuu3110001",fontsize=16,color="green",shape="box"];2863[label="xuu6001",fontsize=16,color="green",shape="box"];903[label="primMulInt xuu3110000 xuu6001",fontsize=16,color="burlywood",shape="triangle"];4395[label="xuu3110000/Pos xuu31100000",fontsize=10,color="white",style="solid",shape="box"];903 -> 4395[label="",style="solid", color="burlywood", weight=9]; 4395 -> 1096[label="",style="solid", color="burlywood", weight=3]; 4396[label="xuu3110000/Neg xuu31100000",fontsize=10,color="white",style="solid",shape="box"];903 -> 4396[label="",style="solid", color="burlywood", weight=9]; 4396 -> 1097[label="",style="solid", color="burlywood", weight=3]; 2864[label="xuu31100000",fontsize=16,color="green",shape="box"];2865[label="xuu60000",fontsize=16,color="green",shape="box"];2866[label="xuu31100000",fontsize=16,color="green",shape="box"];2867[label="xuu60000",fontsize=16,color="green",shape="box"];2099 -> 2060[label="",style="dashed", color="red", weight=0]; 2099[label="xuu22 == xuu17",fontsize=16,color="magenta"];2099 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2061[label="",style="dashed", color="red", weight=0]; 2100[label="xuu22 == xuu17",fontsize=16,color="magenta"];2100 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2062[label="",style="dashed", color="red", weight=0]; 2101[label="xuu22 == xuu17",fontsize=16,color="magenta"];2101 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2063[label="",style="dashed", color="red", weight=0]; 2102[label="xuu22 == xuu17",fontsize=16,color="magenta"];2102 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2064[label="",style="dashed", color="red", weight=0]; 2103[label="xuu22 == xuu17",fontsize=16,color="magenta"];2103 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2065[label="",style="dashed", color="red", weight=0]; 2104[label="xuu22 == xuu17",fontsize=16,color="magenta"];2104 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2066[label="",style="dashed", color="red", weight=0]; 2105[label="xuu22 == xuu17",fontsize=16,color="magenta"];2105 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2067[label="",style="dashed", color="red", weight=0]; 2106[label="xuu22 == xuu17",fontsize=16,color="magenta"];2106 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2068[label="",style="dashed", color="red", weight=0]; 2107[label="xuu22 == xuu17",fontsize=16,color="magenta"];2107 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2069[label="",style="dashed", color="red", weight=0]; 2108[label="xuu22 == xuu17",fontsize=16,color="magenta"];2108 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2070[label="",style="dashed", color="red", weight=0]; 2109[label="xuu22 == xuu17",fontsize=16,color="magenta"];2109 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2071[label="",style="dashed", color="red", weight=0]; 2110[label="xuu22 == xuu17",fontsize=16,color="magenta"];2110 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2072[label="",style="dashed", color="red", weight=0]; 2111[label="xuu22 == xuu17",fontsize=16,color="magenta"];2111 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2112 -> 86[label="",style="dashed", color="red", weight=0]; 2112[label="xuu22 == xuu17",fontsize=16,color="magenta"];2112 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2868[label="Left xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2868 -> 2903[label="",style="solid", color="black", weight=3]; 2869[label="Left xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2869 -> 2904[label="",style="solid", color="black", weight=3]; 2870[label="Right xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2870 -> 2905[label="",style="solid", color="black", weight=3]; 2871[label="Right xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2871 -> 2906[label="",style="solid", color="black", weight=3]; 2873 -> 1208[label="",style="dashed", color="red", weight=0]; 2873[label="compare xuu3300 xuu3400",fontsize=16,color="magenta"];2873 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2872[label="xuu149 /= GT",fontsize=16,color="black",shape="triangle"];2872 -> 2909[label="",style="solid", color="black", weight=3]; 2881[label="(xuu33000,xuu33001,xuu33002) <= (xuu34000,xuu34001,xuu34002)",fontsize=16,color="black",shape="box"];2881 -> 2931[label="",style="solid", color="black", weight=3]; 2874[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2874 -> 2910[label="",style="solid", color="black", weight=3]; 2875[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4397[label="xuu3300/Integer xuu33000",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4397[label="",style="solid", color="burlywood", weight=9]; 4397 -> 2911[label="",style="solid", color="burlywood", weight=3]; 2876[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2876 -> 2912[label="",style="solid", color="black", weight=3]; 2882[label="LT <= LT",fontsize=16,color="black",shape="box"];2882 -> 2932[label="",style="solid", color="black", weight=3]; 2883[label="LT <= EQ",fontsize=16,color="black",shape="box"];2883 -> 2933[label="",style="solid", color="black", weight=3]; 2884[label="LT <= GT",fontsize=16,color="black",shape="box"];2884 -> 2934[label="",style="solid", color="black", weight=3]; 2885[label="EQ <= LT",fontsize=16,color="black",shape="box"];2885 -> 2935[label="",style="solid", color="black", weight=3]; 2886[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2886 -> 2936[label="",style="solid", color="black", weight=3]; 2887[label="EQ <= GT",fontsize=16,color="black",shape="box"];2887 -> 2937[label="",style="solid", color="black", weight=3]; 2888[label="GT <= LT",fontsize=16,color="black",shape="box"];2888 -> 2938[label="",style="solid", color="black", weight=3]; 2889[label="GT <= EQ",fontsize=16,color="black",shape="box"];2889 -> 2939[label="",style="solid", color="black", weight=3]; 2890[label="GT <= GT",fontsize=16,color="black",shape="box"];2890 -> 2940[label="",style="solid", color="black", weight=3]; 2877[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4398[label="xuu3300/xuu33000 : xuu33001",fontsize=10,color="white",style="solid",shape="box"];2877 -> 4398[label="",style="solid", color="burlywood", weight=9]; 4398 -> 2913[label="",style="solid", color="burlywood", weight=3]; 4399[label="xuu3300/[]",fontsize=10,color="white",style="solid",shape="box"];2877 -> 4399[label="",style="solid", color="burlywood", weight=9]; 4399 -> 2914[label="",style="solid", color="burlywood", weight=3]; 2891[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2891 -> 2941[label="",style="solid", color="black", weight=3]; 2892[label="Nothing <= Just xuu34000",fontsize=16,color="black",shape="box"];2892 -> 2942[label="",style="solid", color="black", weight=3]; 2893[label="Just xuu33000 <= Nothing",fontsize=16,color="black",shape="box"];2893 -> 2943[label="",style="solid", color="black", weight=3]; 2894[label="Just xuu33000 <= Just xuu34000",fontsize=16,color="black",shape="box"];2894 -> 2944[label="",style="solid", color="black", weight=3]; 2895[label="(xuu33000,xuu33001) <= (xuu34000,xuu34001)",fontsize=16,color="black",shape="box"];2895 -> 2945[label="",style="solid", color="black", weight=3]; 2878[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4400[label="xuu3300/xuu33000 :% xuu33001",fontsize=10,color="white",style="solid",shape="box"];2878 -> 4400[label="",style="solid", color="burlywood", weight=9]; 4400 -> 2915[label="",style="solid", color="burlywood", weight=3]; 2896[label="False <= False",fontsize=16,color="black",shape="box"];2896 -> 2946[label="",style="solid", color="black", weight=3]; 2897[label="False <= True",fontsize=16,color="black",shape="box"];2897 -> 2947[label="",style="solid", color="black", weight=3]; 2898[label="True <= False",fontsize=16,color="black",shape="box"];2898 -> 2948[label="",style="solid", color="black", weight=3]; 2899[label="True <= True",fontsize=16,color="black",shape="box"];2899 -> 2949[label="",style="solid", color="black", weight=3]; 2879[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2879 -> 2916[label="",style="solid", color="black", weight=3]; 2880[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4401[label="xuu3300/()",fontsize=10,color="white",style="solid",shape="box"];2880 -> 4401[label="",style="solid", color="burlywood", weight=9]; 4401 -> 2917[label="",style="solid", color="burlywood", weight=3]; 2900[label="compare0 (Just xuu132) (Just xuu133) True",fontsize=16,color="black",shape="box"];2900 -> 2950[label="",style="solid", color="black", weight=3]; 1132[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu28) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4402[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4402[label="",style="solid", color="burlywood", weight=9]; 4402 -> 1235[label="",style="solid", color="burlywood", weight=3]; 4403[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4403[label="",style="solid", color="burlywood", weight=9]; 4403 -> 1236[label="",style="solid", color="burlywood", weight=3]; 1526[label="FiniteMap.sizeFM xuu64",fontsize=16,color="burlywood",shape="triangle"];4404[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4404[label="",style="solid", color="burlywood", weight=9]; 4404 -> 1549[label="",style="solid", color="burlywood", weight=3]; 4405[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1526 -> 4405[label="",style="solid", color="burlywood", weight=9]; 4405 -> 1550[label="",style="solid", color="burlywood", weight=3]; 1527[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1527 -> 1551[label="",style="solid", color="black", weight=3]; 1528 -> 1524[label="",style="dashed", color="red", weight=0]; 1528[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1529 -> 86[label="",style="dashed", color="red", weight=0]; 1529[label="compare xuu91 xuu90 == GT",fontsize=16,color="magenta"];1529 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1511[label="",style="dashed", color="red", weight=0]; 1136[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)",fontsize=16,color="magenta"];1136 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1137[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 xuu64 xuu28 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4406[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1137 -> 4406[label="",style="solid", color="burlywood", weight=9]; 4406 -> 1244[label="",style="solid", color="burlywood", weight=3]; 4407[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1137 -> 4407[label="",style="solid", color="burlywood", weight=9]; 4407 -> 1245[label="",style="solid", color="burlywood", weight=3]; 4034[label="FiniteMap.Branch xuu209 xuu210 (FiniteMap.mkBranchUnbox xuu212 xuu209 xuu211 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211 + FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211)) xuu211 xuu212",fontsize=16,color="green",shape="box"];4034 -> 4040[label="",style="dashed", color="green", weight=3]; 1167[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu36) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4408[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4408[label="",style="solid", color="burlywood", weight=9]; 4408 -> 1247[label="",style="solid", color="burlywood", weight=3]; 4409[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1167 -> 4409[label="",style="solid", color="burlywood", weight=9]; 4409 -> 1248[label="",style="solid", color="burlywood", weight=3]; 1530 -> 1526[label="",style="dashed", color="red", weight=0]; 1530[label="FiniteMap.sizeFM xuu64",fontsize=16,color="magenta"];1531 -> 1527[label="",style="dashed", color="red", weight=0]; 1531[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1532[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];1532 -> 1554[label="",style="solid", color="black", weight=3]; 1171 -> 1545[label="",style="dashed", color="red", weight=0]; 1171[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)",fontsize=16,color="magenta"];1171 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1172[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 xuu64 xuu36 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4410[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4410[label="",style="solid", color="burlywood", weight=9]; 4410 -> 1255[label="",style="solid", color="burlywood", weight=3]; 4411[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1172 -> 4411[label="",style="solid", color="burlywood", weight=9]; 4411 -> 1256[label="",style="solid", color="burlywood", weight=3]; 2901[label="xuu31100000",fontsize=16,color="green",shape="box"];2902[label="xuu60000",fontsize=16,color="green",shape="box"];1096[label="primMulInt (Pos xuu31100000) xuu6001",fontsize=16,color="burlywood",shape="box"];4412[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];1096 -> 4412[label="",style="solid", color="burlywood", weight=9]; 4412 -> 1176[label="",style="solid", color="burlywood", weight=3]; 4413[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];1096 -> 4413[label="",style="solid", color="burlywood", weight=9]; 4413 -> 1177[label="",style="solid", color="burlywood", weight=3]; 1097[label="primMulInt (Neg xuu31100000) xuu6001",fontsize=16,color="burlywood",shape="box"];4414[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];1097 -> 4414[label="",style="solid", color="burlywood", weight=9]; 4414 -> 1178[label="",style="solid", color="burlywood", weight=3]; 4415[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];1097 -> 4415[label="",style="solid", color="burlywood", weight=9]; 4415 -> 1179[label="",style="solid", color="burlywood", weight=3]; 2153[label="xuu22",fontsize=16,color="green",shape="box"];2154[label="xuu17",fontsize=16,color="green",shape="box"];2155[label="xuu22",fontsize=16,color="green",shape="box"];2156[label="xuu17",fontsize=16,color="green",shape="box"];2157[label="xuu22",fontsize=16,color="green",shape="box"];2158[label="xuu17",fontsize=16,color="green",shape="box"];2159[label="xuu22",fontsize=16,color="green",shape="box"];2160[label="xuu17",fontsize=16,color="green",shape="box"];2161[label="xuu22",fontsize=16,color="green",shape="box"];2162[label="xuu17",fontsize=16,color="green",shape="box"];2163[label="xuu22",fontsize=16,color="green",shape="box"];2164[label="xuu17",fontsize=16,color="green",shape="box"];2165[label="xuu22",fontsize=16,color="green",shape="box"];2166[label="xuu17",fontsize=16,color="green",shape="box"];2167[label="xuu22",fontsize=16,color="green",shape="box"];2168[label="xuu17",fontsize=16,color="green",shape="box"];2169[label="xuu22",fontsize=16,color="green",shape="box"];2170[label="xuu17",fontsize=16,color="green",shape="box"];2171[label="xuu22",fontsize=16,color="green",shape="box"];2172[label="xuu17",fontsize=16,color="green",shape="box"];2173[label="xuu22",fontsize=16,color="green",shape="box"];2174[label="xuu17",fontsize=16,color="green",shape="box"];2175[label="xuu22",fontsize=16,color="green",shape="box"];2176[label="xuu17",fontsize=16,color="green",shape="box"];2177[label="xuu22",fontsize=16,color="green",shape="box"];2178[label="xuu17",fontsize=16,color="green",shape="box"];2179[label="xuu22",fontsize=16,color="green",shape="box"];2180[label="xuu17",fontsize=16,color="green",shape="box"];2903[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4416[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 2951[label="",style="solid", color="blue", weight=3]; 4417[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4417[label="",style="solid", color="blue", weight=9]; 4417 -> 2952[label="",style="solid", color="blue", weight=3]; 4418[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4418[label="",style="solid", color="blue", weight=9]; 4418 -> 2953[label="",style="solid", color="blue", weight=3]; 4419[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 2954[label="",style="solid", color="blue", weight=3]; 4420[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2955[label="",style="solid", color="blue", weight=3]; 4421[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2956[label="",style="solid", color="blue", weight=3]; 4422[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2957[label="",style="solid", color="blue", weight=3]; 4423[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 2958[label="",style="solid", color="blue", weight=3]; 4424[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 2959[label="",style="solid", color="blue", weight=3]; 4425[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2960[label="",style="solid", color="blue", weight=3]; 4426[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2961[label="",style="solid", color="blue", weight=3]; 4427[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2962[label="",style="solid", color="blue", weight=3]; 4428[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2963[label="",style="solid", color="blue", weight=3]; 4429[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2964[label="",style="solid", color="blue", weight=3]; 2904[label="True",fontsize=16,color="green",shape="box"];2905[label="False",fontsize=16,color="green",shape="box"];2906[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4430[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2965[label="",style="solid", color="blue", weight=3]; 4431[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2966[label="",style="solid", color="blue", weight=3]; 4432[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2967[label="",style="solid", color="blue", weight=3]; 4433[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2968[label="",style="solid", color="blue", weight=3]; 4434[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2969[label="",style="solid", color="blue", weight=3]; 4435[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2970[label="",style="solid", color="blue", weight=3]; 4436[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2971[label="",style="solid", color="blue", weight=3]; 4437[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2972[label="",style="solid", color="blue", weight=3]; 4438[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2973[label="",style="solid", color="blue", weight=3]; 4439[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 2974[label="",style="solid", color="blue", weight=3]; 4440[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 2975[label="",style="solid", color="blue", weight=3]; 4441[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4441[label="",style="solid", color="blue", weight=9]; 4441 -> 2976[label="",style="solid", color="blue", weight=3]; 4442[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4442[label="",style="solid", color="blue", weight=9]; 4442 -> 2977[label="",style="solid", color="blue", weight=3]; 4443[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4443[label="",style="solid", color="blue", weight=9]; 4443 -> 2978[label="",style="solid", color="blue", weight=3]; 2907[label="xuu3300",fontsize=16,color="green",shape="box"];2908[label="xuu3400",fontsize=16,color="green",shape="box"];1208[label="compare xuu33 xuu34",fontsize=16,color="black",shape="triangle"];1208 -> 1318[label="",style="solid", color="black", weight=3]; 2909 -> 2979[label="",style="dashed", color="red", weight=0]; 2909[label="not (xuu149 == GT)",fontsize=16,color="magenta"];2909 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3072[label="",style="dashed", color="red", weight=0]; 2931[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];2931 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2910[label="primCmpDouble xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4444[label="xuu3300/Double xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2910 -> 4444[label="",style="solid", color="burlywood", weight=9]; 4444 -> 2986[label="",style="solid", color="burlywood", weight=3]; 2911[label="compare (Integer xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4445[label="xuu3400/Integer xuu34000",fontsize=10,color="white",style="solid",shape="box"];2911 -> 4445[label="",style="solid", color="burlywood", weight=9]; 4445 -> 2987[label="",style="solid", color="burlywood", weight=3]; 2912[label="primCmpFloat xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4446[label="xuu3300/Float xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4446[label="",style="solid", color="burlywood", weight=9]; 4446 -> 2988[label="",style="solid", color="burlywood", weight=3]; 2932[label="True",fontsize=16,color="green",shape="box"];2933[label="True",fontsize=16,color="green",shape="box"];2934[label="True",fontsize=16,color="green",shape="box"];2935[label="False",fontsize=16,color="green",shape="box"];2936[label="True",fontsize=16,color="green",shape="box"];2937[label="True",fontsize=16,color="green",shape="box"];2938[label="False",fontsize=16,color="green",shape="box"];2939[label="False",fontsize=16,color="green",shape="box"];2940[label="True",fontsize=16,color="green",shape="box"];2913[label="compare (xuu33000 : xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4447[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4447[label="",style="solid", color="burlywood", weight=9]; 4447 -> 2989[label="",style="solid", color="burlywood", weight=3]; 4448[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4448[label="",style="solid", color="burlywood", weight=9]; 4448 -> 2990[label="",style="solid", color="burlywood", weight=3]; 2914[label="compare [] xuu3400",fontsize=16,color="burlywood",shape="box"];4449[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4449[label="",style="solid", color="burlywood", weight=9]; 4449 -> 2991[label="",style="solid", color="burlywood", weight=3]; 4450[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4450[label="",style="solid", color="burlywood", weight=9]; 4450 -> 2992[label="",style="solid", color="burlywood", weight=3]; 2941[label="True",fontsize=16,color="green",shape="box"];2942[label="True",fontsize=16,color="green",shape="box"];2943[label="False",fontsize=16,color="green",shape="box"];2944[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4451[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 2993[label="",style="solid", color="blue", weight=3]; 4452[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 2994[label="",style="solid", color="blue", weight=3]; 4453[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 2995[label="",style="solid", color="blue", weight=3]; 4454[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 2996[label="",style="solid", color="blue", weight=3]; 4455[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 2997[label="",style="solid", color="blue", weight=3]; 4456[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 2998[label="",style="solid", color="blue", weight=3]; 4457[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 2999[label="",style="solid", color="blue", weight=3]; 4458[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 3000[label="",style="solid", color="blue", weight=3]; 4459[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 3001[label="",style="solid", color="blue", weight=3]; 4460[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 3002[label="",style="solid", color="blue", weight=3]; 4461[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4461[label="",style="solid", color="blue", weight=9]; 4461 -> 3003[label="",style="solid", color="blue", weight=3]; 4462[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 3004[label="",style="solid", color="blue", weight=3]; 4463[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 3005[label="",style="solid", color="blue", weight=3]; 4464[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2944 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 3006[label="",style="solid", color="blue", weight=3]; 2945 -> 3072[label="",style="dashed", color="red", weight=0]; 2945[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];2945 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2915[label="compare (xuu33000 :% xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4465[label="xuu3400/xuu34000 :% xuu34001",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4465[label="",style="solid", color="burlywood", weight=9]; 4465 -> 3007[label="",style="solid", color="burlywood", weight=3]; 2946[label="True",fontsize=16,color="green",shape="box"];2947[label="True",fontsize=16,color="green",shape="box"];2948[label="False",fontsize=16,color="green",shape="box"];2949[label="True",fontsize=16,color="green",shape="box"];2916[label="primCmpChar xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4466[label="xuu3300/Char xuu33000",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4466[label="",style="solid", color="burlywood", weight=9]; 4466 -> 3008[label="",style="solid", color="burlywood", weight=3]; 2917[label="compare () xuu3400",fontsize=16,color="burlywood",shape="box"];4467[label="xuu3400/()",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4467[label="",style="solid", color="burlywood", weight=9]; 4467 -> 3009[label="",style="solid", color="burlywood", weight=3]; 2950[label="GT",fontsize=16,color="green",shape="box"];1235[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1235 -> 1376[label="",style="solid", color="black", weight=3]; 1236[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1236 -> 1377[label="",style="solid", color="black", weight=3]; 1549[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1549 -> 1717[label="",style="solid", color="black", weight=3]; 1550[label="FiniteMap.sizeFM (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1550 -> 1718[label="",style="solid", color="black", weight=3]; 1551[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1524[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];1524 -> 1535[label="",style="solid", color="black", weight=3]; 1552 -> 1208[label="",style="dashed", color="red", weight=0]; 1552[label="compare xuu91 xuu90",fontsize=16,color="magenta"];1552 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1553[label="GT",fontsize=16,color="green",shape="box"];1512 -> 1515[label="",style="dashed", color="red", weight=0]; 1512[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1512 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1511[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu88",fontsize=16,color="burlywood",shape="triangle"];4468[label="xuu88/False",fontsize=10,color="white",style="solid",shape="box"];1511 -> 4468[label="",style="solid", color="burlywood", weight=9]; 4468 -> 1533[label="",style="solid", color="burlywood", weight=3]; 4469[label="xuu88/True",fontsize=10,color="white",style="solid",shape="box"];1511 -> 4469[label="",style="solid", color="burlywood", weight=9]; 4469 -> 1534[label="",style="solid", color="burlywood", weight=3]; 1244[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 FiniteMap.EmptyFM xuu28 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1244 -> 1385[label="",style="solid", color="black", weight=3]; 1245[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1245 -> 1386[label="",style="solid", color="black", weight=3]; 4040[label="FiniteMap.mkBranchUnbox xuu212 xuu209 xuu211 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211 + FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211)",fontsize=16,color="black",shape="box"];4040 -> 4046[label="",style="solid", color="black", weight=3]; 1247[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1247 -> 1388[label="",style="solid", color="black", weight=3]; 1248[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1248 -> 1389[label="",style="solid", color="black", weight=3]; 1554 -> 1526[label="",style="dashed", color="red", weight=0]; 1554[label="FiniteMap.sizeFM xuu36",fontsize=16,color="magenta"];1554 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1515[label="",style="dashed", color="red", weight=0]; 1546[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1546 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1545[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu94",fontsize=16,color="burlywood",shape="triangle"];4470[label="xuu94/False",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4470[label="",style="solid", color="burlywood", weight=9]; 4470 -> 1557[label="",style="solid", color="burlywood", weight=3]; 4471[label="xuu94/True",fontsize=10,color="white",style="solid",shape="box"];1545 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 1558[label="",style="solid", color="burlywood", weight=3]; 1255[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 FiniteMap.EmptyFM xuu36 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1255 -> 1396[label="",style="solid", color="black", weight=3]; 1256[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1256 -> 1397[label="",style="solid", color="black", weight=3]; 1176[label="primMulInt (Pos xuu31100000) (Pos xuu60010)",fontsize=16,color="black",shape="box"];1176 -> 1258[label="",style="solid", color="black", weight=3]; 1177[label="primMulInt (Pos xuu31100000) (Neg xuu60010)",fontsize=16,color="black",shape="box"];1177 -> 1259[label="",style="solid", color="black", weight=3]; 1178[label="primMulInt (Neg xuu31100000) (Pos xuu60010)",fontsize=16,color="black",shape="box"];1178 -> 1260[label="",style="solid", color="black", weight=3]; 1179[label="primMulInt (Neg xuu31100000) (Neg xuu60010)",fontsize=16,color="black",shape="box"];1179 -> 1261[label="",style="solid", color="black", weight=3]; 2951 -> 2559[label="",style="dashed", color="red", weight=0]; 2951[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2951 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2951 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2952 -> 2560[label="",style="dashed", color="red", weight=0]; 2952[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2952 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2953 -> 2561[label="",style="dashed", color="red", weight=0]; 2953[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2953 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2954 -> 2562[label="",style="dashed", color="red", weight=0]; 2954[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2954 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2955 -> 2563[label="",style="dashed", color="red", weight=0]; 2955[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2955 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2955 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2956 -> 2564[label="",style="dashed", color="red", weight=0]; 2956[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2956 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2956 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2957 -> 2565[label="",style="dashed", color="red", weight=0]; 2957[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2957 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2957 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2958 -> 2566[label="",style="dashed", color="red", weight=0]; 2958[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2958 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2958 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2959 -> 2567[label="",style="dashed", color="red", weight=0]; 2959[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2959 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2959 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2960 -> 2568[label="",style="dashed", color="red", weight=0]; 2960[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2960 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2960 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2961 -> 2569[label="",style="dashed", color="red", weight=0]; 2961[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2961 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2961 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2962 -> 2570[label="",style="dashed", color="red", weight=0]; 2962[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2962 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2962 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2963 -> 2571[label="",style="dashed", color="red", weight=0]; 2963[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2963 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2963 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2964 -> 2572[label="",style="dashed", color="red", weight=0]; 2964[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2964 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2964 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2965 -> 2559[label="",style="dashed", color="red", weight=0]; 2965[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2965 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2965 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2966 -> 2560[label="",style="dashed", color="red", weight=0]; 2966[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2966 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2966 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2967 -> 2561[label="",style="dashed", color="red", weight=0]; 2967[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2967 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2967 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2968 -> 2562[label="",style="dashed", color="red", weight=0]; 2968[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2968 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2968 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2969 -> 2563[label="",style="dashed", color="red", weight=0]; 2969[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2969 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2969 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2970 -> 2564[label="",style="dashed", color="red", weight=0]; 2970[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2970 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2971 -> 2565[label="",style="dashed", color="red", weight=0]; 2971[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2971 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2971 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2972 -> 2566[label="",style="dashed", color="red", weight=0]; 2972[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2972 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2973 -> 2567[label="",style="dashed", color="red", weight=0]; 2973[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2973 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2973 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2974 -> 2568[label="",style="dashed", color="red", weight=0]; 2974[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2974 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2974 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2975 -> 2569[label="",style="dashed", color="red", weight=0]; 2975[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2975 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2975 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2976 -> 2570[label="",style="dashed", color="red", weight=0]; 2976[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2976 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2976 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2977 -> 2571[label="",style="dashed", color="red", weight=0]; 2977[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2977 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2977 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2978 -> 2572[label="",style="dashed", color="red", weight=0]; 2978[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2978 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2978 -> 3065[label="",style="dashed", color="magenta", weight=3]; 1318[label="primCmpInt xuu33 xuu34",fontsize=16,color="burlywood",shape="triangle"];4472[label="xuu33/Pos xuu330",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4472[label="",style="solid", color="burlywood", weight=9]; 4472 -> 1403[label="",style="solid", color="burlywood", weight=3]; 4473[label="xuu33/Neg xuu330",fontsize=10,color="white",style="solid",shape="box"];1318 -> 4473[label="",style="solid", color="burlywood", weight=9]; 4473 -> 1404[label="",style="solid", color="burlywood", weight=3]; 2980 -> 86[label="",style="dashed", color="red", weight=0]; 2980[label="xuu149 == GT",fontsize=16,color="magenta"];2980 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2980 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2979[label="not xuu158",fontsize=16,color="burlywood",shape="triangle"];4474[label="xuu158/False",fontsize=10,color="white",style="solid",shape="box"];2979 -> 4474[label="",style="solid", color="burlywood", weight=9]; 4474 -> 3068[label="",style="solid", color="burlywood", weight=3]; 4475[label="xuu158/True",fontsize=10,color="white",style="solid",shape="box"];2979 -> 4475[label="",style="solid", color="burlywood", weight=9]; 4475 -> 3069[label="",style="solid", color="burlywood", weight=3]; 3073 -> 2377[label="",style="dashed", color="red", weight=0]; 3073[label="xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];3073 -> 3081[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3082[label="",style="dashed", color="magenta", weight=3]; 3074[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4476[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 3083[label="",style="solid", color="blue", weight=3]; 4477[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 3084[label="",style="solid", color="blue", weight=3]; 4478[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 3085[label="",style="solid", color="blue", weight=3]; 4479[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 3086[label="",style="solid", color="blue", weight=3]; 4480[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 3087[label="",style="solid", color="blue", weight=3]; 4481[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 3088[label="",style="solid", color="blue", weight=3]; 4482[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 3089[label="",style="solid", color="blue", weight=3]; 4483[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 3090[label="",style="solid", color="blue", weight=3]; 4484[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 3091[label="",style="solid", color="blue", weight=3]; 4485[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 3092[label="",style="solid", color="blue", weight=3]; 4486[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 3093[label="",style="solid", color="blue", weight=3]; 4487[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 3094[label="",style="solid", color="blue", weight=3]; 4488[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 3095[label="",style="solid", color="blue", weight=3]; 4489[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 3096[label="",style="solid", color="blue", weight=3]; 3072[label="xuu164 || xuu165",fontsize=16,color="burlywood",shape="triangle"];4490[label="xuu164/False",fontsize=10,color="white",style="solid",shape="box"];3072 -> 4490[label="",style="solid", color="burlywood", weight=9]; 4490 -> 3097[label="",style="solid", color="burlywood", weight=3]; 4491[label="xuu164/True",fontsize=10,color="white",style="solid",shape="box"];3072 -> 4491[label="",style="solid", color="burlywood", weight=9]; 4491 -> 3098[label="",style="solid", color="burlywood", weight=3]; 2986[label="primCmpDouble (Double xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4492[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2986 -> 4492[label="",style="solid", color="burlywood", weight=9]; 4492 -> 3099[label="",style="solid", color="burlywood", weight=3]; 4493[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2986 -> 4493[label="",style="solid", color="burlywood", weight=9]; 4493 -> 3100[label="",style="solid", color="burlywood", weight=3]; 2987[label="compare (Integer xuu33000) (Integer xuu34000)",fontsize=16,color="black",shape="box"];2987 -> 3101[label="",style="solid", color="black", weight=3]; 2988[label="primCmpFloat (Float xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4494[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2988 -> 4494[label="",style="solid", color="burlywood", weight=9]; 4494 -> 3102[label="",style="solid", color="burlywood", weight=3]; 4495[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2988 -> 4495[label="",style="solid", color="burlywood", weight=9]; 4495 -> 3103[label="",style="solid", color="burlywood", weight=3]; 2989[label="compare (xuu33000 : xuu33001) (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2989 -> 3104[label="",style="solid", color="black", weight=3]; 2990[label="compare (xuu33000 : xuu33001) []",fontsize=16,color="black",shape="box"];2990 -> 3105[label="",style="solid", color="black", weight=3]; 2991[label="compare [] (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2991 -> 3106[label="",style="solid", color="black", weight=3]; 2992[label="compare [] []",fontsize=16,color="black",shape="box"];2992 -> 3107[label="",style="solid", color="black", weight=3]; 2993 -> 2559[label="",style="dashed", color="red", weight=0]; 2993[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2993 -> 3108[label="",style="dashed", color="magenta", weight=3]; 2993 -> 3109[label="",style="dashed", color="magenta", weight=3]; 2994 -> 2560[label="",style="dashed", color="red", weight=0]; 2994[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2994 -> 3110[label="",style="dashed", color="magenta", weight=3]; 2994 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2995 -> 2561[label="",style="dashed", color="red", weight=0]; 2995[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2995 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2995 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2996 -> 2562[label="",style="dashed", color="red", weight=0]; 2996[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2996 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2996 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2997 -> 2563[label="",style="dashed", color="red", weight=0]; 2997[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2997 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2998 -> 2564[label="",style="dashed", color="red", weight=0]; 2998[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2998 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2998 -> 3119[label="",style="dashed", color="magenta", weight=3]; 2999 -> 2565[label="",style="dashed", color="red", weight=0]; 2999[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2999 -> 3120[label="",style="dashed", color="magenta", weight=3]; 2999 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3000 -> 2566[label="",style="dashed", color="red", weight=0]; 3000[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3000 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3000 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3001 -> 2567[label="",style="dashed", color="red", weight=0]; 3001[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3001 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3001 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3002 -> 2568[label="",style="dashed", color="red", weight=0]; 3002[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3002 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3003 -> 2569[label="",style="dashed", color="red", weight=0]; 3003[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3003 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3004 -> 2570[label="",style="dashed", color="red", weight=0]; 3004[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3004 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3005 -> 2571[label="",style="dashed", color="red", weight=0]; 3005[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3005 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3006 -> 2572[label="",style="dashed", color="red", weight=0]; 3006[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3006 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3075 -> 2377[label="",style="dashed", color="red", weight=0]; 3075[label="xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];3075 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3075 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3076[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4496[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 3138[label="",style="solid", color="blue", weight=3]; 4497[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 3139[label="",style="solid", color="blue", weight=3]; 4498[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 3140[label="",style="solid", color="blue", weight=3]; 4499[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 3141[label="",style="solid", color="blue", weight=3]; 4500[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 3142[label="",style="solid", color="blue", weight=3]; 4501[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 3143[label="",style="solid", color="blue", weight=3]; 4502[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 3144[label="",style="solid", color="blue", weight=3]; 4503[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 3145[label="",style="solid", color="blue", weight=3]; 4504[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 3146[label="",style="solid", color="blue", weight=3]; 4505[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 3147[label="",style="solid", color="blue", weight=3]; 4506[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 3148[label="",style="solid", color="blue", weight=3]; 4507[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 3149[label="",style="solid", color="blue", weight=3]; 4508[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 3150[label="",style="solid", color="blue", weight=3]; 4509[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3076 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 3151[label="",style="solid", color="blue", weight=3]; 3007[label="compare (xuu33000 :% xuu33001) (xuu34000 :% xuu34001)",fontsize=16,color="black",shape="box"];3007 -> 3152[label="",style="solid", color="black", weight=3]; 3008[label="primCmpChar (Char xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4510[label="xuu3400/Char xuu34000",fontsize=10,color="white",style="solid",shape="box"];3008 -> 4510[label="",style="solid", color="burlywood", weight=9]; 4510 -> 3153[label="",style="solid", color="burlywood", weight=3]; 3009[label="compare () ()",fontsize=16,color="black",shape="box"];3009 -> 3154[label="",style="solid", color="black", weight=3]; 1376 -> 1318[label="",style="dashed", color="red", weight=0]; 1376[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1376 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1318[label="",style="dashed", color="red", weight=0]; 1377[label="primCmpInt (primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1377 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1717[label="Pos Zero",fontsize=16,color="green",shape="box"];1718[label="xuu642",fontsize=16,color="green",shape="box"];1535 -> 1526[label="",style="dashed", color="red", weight=0]; 1535[label="FiniteMap.sizeFM xuu28",fontsize=16,color="magenta"];1535 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1719[label="xuu91",fontsize=16,color="green",shape="box"];1720[label="xuu90",fontsize=16,color="green",shape="box"];1525 -> 617[label="",style="dashed", color="red", weight=0]; 1525[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1525 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1533[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];1533 -> 1559[label="",style="solid", color="black", weight=3]; 1534[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1534 -> 1560[label="",style="solid", color="black", weight=3]; 1385[label="error []",fontsize=16,color="red",shape="box"];1386[label="FiniteMap.mkBalBranch6MkBalBranch02 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1386 -> 1538[label="",style="solid", color="black", weight=3]; 4046[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211 + FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4046 -> 4047[label="",style="solid", color="black", weight=3]; 1388 -> 1318[label="",style="dashed", color="red", weight=0]; 1388[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1388 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1318[label="",style="dashed", color="red", weight=0]; 1389[label="primCmpInt (primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1389 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1721[label="xuu36",fontsize=16,color="green",shape="box"];1555 -> 1532[label="",style="dashed", color="red", weight=0]; 1555[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1556 -> 617[label="",style="dashed", color="red", weight=0]; 1556[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1556 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1557[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];1557 -> 1725[label="",style="solid", color="black", weight=3]; 1558[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1558 -> 1726[label="",style="solid", color="black", weight=3]; 1396[label="error []",fontsize=16,color="red",shape="box"];1397[label="FiniteMap.mkBalBranch6MkBalBranch02 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1397 -> 1561[label="",style="solid", color="black", weight=3]; 1258[label="Pos (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1258 -> 1399[label="",style="dashed", color="green", weight=3]; 1259[label="Neg (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1259 -> 1400[label="",style="dashed", color="green", weight=3]; 1260[label="Neg (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1260 -> 1401[label="",style="dashed", color="green", weight=3]; 1261[label="Pos (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1261 -> 1402[label="",style="dashed", color="green", weight=3]; 3010[label="xuu33000",fontsize=16,color="green",shape="box"];3011[label="xuu34000",fontsize=16,color="green",shape="box"];3012[label="xuu33000",fontsize=16,color="green",shape="box"];3013[label="xuu34000",fontsize=16,color="green",shape="box"];3014[label="xuu33000",fontsize=16,color="green",shape="box"];3015[label="xuu34000",fontsize=16,color="green",shape="box"];3016[label="xuu33000",fontsize=16,color="green",shape="box"];3017[label="xuu34000",fontsize=16,color="green",shape="box"];3018[label="xuu33000",fontsize=16,color="green",shape="box"];3019[label="xuu34000",fontsize=16,color="green",shape="box"];3020[label="xuu33000",fontsize=16,color="green",shape="box"];3021[label="xuu34000",fontsize=16,color="green",shape="box"];3022[label="xuu33000",fontsize=16,color="green",shape="box"];3023[label="xuu34000",fontsize=16,color="green",shape="box"];3024[label="xuu33000",fontsize=16,color="green",shape="box"];3025[label="xuu34000",fontsize=16,color="green",shape="box"];3026[label="xuu33000",fontsize=16,color="green",shape="box"];3027[label="xuu34000",fontsize=16,color="green",shape="box"];3028[label="xuu33000",fontsize=16,color="green",shape="box"];3029[label="xuu34000",fontsize=16,color="green",shape="box"];3030[label="xuu33000",fontsize=16,color="green",shape="box"];3031[label="xuu34000",fontsize=16,color="green",shape="box"];3032[label="xuu33000",fontsize=16,color="green",shape="box"];3033[label="xuu34000",fontsize=16,color="green",shape="box"];3034[label="xuu33000",fontsize=16,color="green",shape="box"];3035[label="xuu34000",fontsize=16,color="green",shape="box"];3036[label="xuu33000",fontsize=16,color="green",shape="box"];3037[label="xuu34000",fontsize=16,color="green",shape="box"];3038[label="xuu33000",fontsize=16,color="green",shape="box"];3039[label="xuu34000",fontsize=16,color="green",shape="box"];3040[label="xuu33000",fontsize=16,color="green",shape="box"];3041[label="xuu34000",fontsize=16,color="green",shape="box"];3042[label="xuu33000",fontsize=16,color="green",shape="box"];3043[label="xuu34000",fontsize=16,color="green",shape="box"];3044[label="xuu33000",fontsize=16,color="green",shape="box"];3045[label="xuu34000",fontsize=16,color="green",shape="box"];3046[label="xuu33000",fontsize=16,color="green",shape="box"];3047[label="xuu34000",fontsize=16,color="green",shape="box"];3048[label="xuu33000",fontsize=16,color="green",shape="box"];3049[label="xuu34000",fontsize=16,color="green",shape="box"];3050[label="xuu33000",fontsize=16,color="green",shape="box"];3051[label="xuu34000",fontsize=16,color="green",shape="box"];3052[label="xuu33000",fontsize=16,color="green",shape="box"];3053[label="xuu34000",fontsize=16,color="green",shape="box"];3054[label="xuu33000",fontsize=16,color="green",shape="box"];3055[label="xuu34000",fontsize=16,color="green",shape="box"];3056[label="xuu33000",fontsize=16,color="green",shape="box"];3057[label="xuu34000",fontsize=16,color="green",shape="box"];3058[label="xuu33000",fontsize=16,color="green",shape="box"];3059[label="xuu34000",fontsize=16,color="green",shape="box"];3060[label="xuu33000",fontsize=16,color="green",shape="box"];3061[label="xuu34000",fontsize=16,color="green",shape="box"];3062[label="xuu33000",fontsize=16,color="green",shape="box"];3063[label="xuu34000",fontsize=16,color="green",shape="box"];3064[label="xuu33000",fontsize=16,color="green",shape="box"];3065[label="xuu34000",fontsize=16,color="green",shape="box"];1403[label="primCmpInt (Pos xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4511[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4511[label="",style="solid", color="burlywood", weight=9]; 4511 -> 1569[label="",style="solid", color="burlywood", weight=3]; 4512[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4512[label="",style="solid", color="burlywood", weight=9]; 4512 -> 1570[label="",style="solid", color="burlywood", weight=3]; 1404[label="primCmpInt (Neg xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4513[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1404 -> 4513[label="",style="solid", color="burlywood", weight=9]; 4513 -> 1571[label="",style="solid", color="burlywood", weight=3]; 4514[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1404 -> 4514[label="",style="solid", color="burlywood", weight=9]; 4514 -> 1572[label="",style="solid", color="burlywood", weight=3]; 3066[label="xuu149",fontsize=16,color="green",shape="box"];3067[label="GT",fontsize=16,color="green",shape="box"];3068[label="not False",fontsize=16,color="black",shape="box"];3068 -> 3155[label="",style="solid", color="black", weight=3]; 3069[label="not True",fontsize=16,color="black",shape="box"];3069 -> 3156[label="",style="solid", color="black", weight=3]; 3081 -> 3072[label="",style="dashed", color="red", weight=0]; 3081[label="xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3081 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3081 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3082[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4515[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 3183[label="",style="solid", color="blue", weight=3]; 4516[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 3184[label="",style="solid", color="blue", weight=3]; 4517[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 3185[label="",style="solid", color="blue", weight=3]; 4518[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 3186[label="",style="solid", color="blue", weight=3]; 4519[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 3187[label="",style="solid", color="blue", weight=3]; 4520[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4520[label="",style="solid", color="blue", weight=9]; 4520 -> 3188[label="",style="solid", color="blue", weight=3]; 4521[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4521[label="",style="solid", color="blue", weight=9]; 4521 -> 3189[label="",style="solid", color="blue", weight=3]; 4522[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 3190[label="",style="solid", color="blue", weight=3]; 4523[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 3191[label="",style="solid", color="blue", weight=3]; 4524[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4524[label="",style="solid", color="blue", weight=9]; 4524 -> 3192[label="",style="solid", color="blue", weight=3]; 4525[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4525[label="",style="solid", color="blue", weight=9]; 4525 -> 3193[label="",style="solid", color="blue", weight=3]; 4526[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4526[label="",style="solid", color="blue", weight=9]; 4526 -> 3194[label="",style="solid", color="blue", weight=3]; 4527[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4527[label="",style="solid", color="blue", weight=9]; 4527 -> 3195[label="",style="solid", color="blue", weight=3]; 4528[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3082 -> 4528[label="",style="solid", color="blue", weight=9]; 4528 -> 3196[label="",style="solid", color="blue", weight=3]; 3083[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3083 -> 3197[label="",style="solid", color="black", weight=3]; 3084 -> 1333[label="",style="dashed", color="red", weight=0]; 3084[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3084 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3085[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3085 -> 3200[label="",style="solid", color="black", weight=3]; 3086[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3086 -> 3201[label="",style="solid", color="black", weight=3]; 3087[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3087 -> 3202[label="",style="solid", color="black", weight=3]; 3088[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3088 -> 3203[label="",style="solid", color="black", weight=3]; 3089[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3089 -> 3204[label="",style="solid", color="black", weight=3]; 3090[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3090 -> 3205[label="",style="solid", color="black", weight=3]; 3091[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3091 -> 3206[label="",style="solid", color="black", weight=3]; 3092[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3092 -> 3207[label="",style="solid", color="black", weight=3]; 3093[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3093 -> 3208[label="",style="solid", color="black", weight=3]; 3094[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3094 -> 3209[label="",style="solid", color="black", weight=3]; 3095[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3095 -> 3210[label="",style="solid", color="black", weight=3]; 3096[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];3096 -> 3211[label="",style="solid", color="black", weight=3]; 3097[label="False || xuu165",fontsize=16,color="black",shape="box"];3097 -> 3212[label="",style="solid", color="black", weight=3]; 3098[label="True || xuu165",fontsize=16,color="black",shape="box"];3098 -> 3213[label="",style="solid", color="black", weight=3]; 3099[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4529[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3099 -> 4529[label="",style="solid", color="burlywood", weight=9]; 4529 -> 3214[label="",style="solid", color="burlywood", weight=3]; 3100[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4530[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3100 -> 4530[label="",style="solid", color="burlywood", weight=9]; 4530 -> 3215[label="",style="solid", color="burlywood", weight=3]; 3101 -> 1318[label="",style="dashed", color="red", weight=0]; 3101[label="primCmpInt xuu33000 xuu34000",fontsize=16,color="magenta"];3101 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3101 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3102[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4531[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3102 -> 4531[label="",style="solid", color="burlywood", weight=9]; 4531 -> 3218[label="",style="solid", color="burlywood", weight=3]; 3103[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4532[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3103 -> 4532[label="",style="solid", color="burlywood", weight=9]; 4532 -> 3219[label="",style="solid", color="burlywood", weight=3]; 3104 -> 3220[label="",style="dashed", color="red", weight=0]; 3104[label="primCompAux xuu33000 xuu34000 (compare xuu33001 xuu34001)",fontsize=16,color="magenta"];3104 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3105[label="GT",fontsize=16,color="green",shape="box"];3106[label="LT",fontsize=16,color="green",shape="box"];3107[label="EQ",fontsize=16,color="green",shape="box"];3108[label="xuu33000",fontsize=16,color="green",shape="box"];3109[label="xuu34000",fontsize=16,color="green",shape="box"];3110[label="xuu33000",fontsize=16,color="green",shape="box"];3111[label="xuu34000",fontsize=16,color="green",shape="box"];3112[label="xuu33000",fontsize=16,color="green",shape="box"];3113[label="xuu34000",fontsize=16,color="green",shape="box"];3114[label="xuu33000",fontsize=16,color="green",shape="box"];3115[label="xuu34000",fontsize=16,color="green",shape="box"];3116[label="xuu33000",fontsize=16,color="green",shape="box"];3117[label="xuu34000",fontsize=16,color="green",shape="box"];3118[label="xuu33000",fontsize=16,color="green",shape="box"];3119[label="xuu34000",fontsize=16,color="green",shape="box"];3120[label="xuu33000",fontsize=16,color="green",shape="box"];3121[label="xuu34000",fontsize=16,color="green",shape="box"];3122[label="xuu33000",fontsize=16,color="green",shape="box"];3123[label="xuu34000",fontsize=16,color="green",shape="box"];3124[label="xuu33000",fontsize=16,color="green",shape="box"];3125[label="xuu34000",fontsize=16,color="green",shape="box"];3126[label="xuu33000",fontsize=16,color="green",shape="box"];3127[label="xuu34000",fontsize=16,color="green",shape="box"];3128[label="xuu33000",fontsize=16,color="green",shape="box"];3129[label="xuu34000",fontsize=16,color="green",shape="box"];3130[label="xuu33000",fontsize=16,color="green",shape="box"];3131[label="xuu34000",fontsize=16,color="green",shape="box"];3132[label="xuu33000",fontsize=16,color="green",shape="box"];3133[label="xuu34000",fontsize=16,color="green",shape="box"];3134[label="xuu33000",fontsize=16,color="green",shape="box"];3135[label="xuu34000",fontsize=16,color="green",shape="box"];3136[label="xuu33001 <= xuu34001",fontsize=16,color="blue",shape="box"];4533[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 3222[label="",style="solid", color="blue", weight=3]; 4534[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 3223[label="",style="solid", color="blue", weight=3]; 4535[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 3224[label="",style="solid", color="blue", weight=3]; 4536[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 3225[label="",style="solid", color="blue", weight=3]; 4537[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 3226[label="",style="solid", color="blue", weight=3]; 4538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 3227[label="",style="solid", color="blue", weight=3]; 4539[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 3228[label="",style="solid", color="blue", weight=3]; 4540[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 3229[label="",style="solid", color="blue", weight=3]; 4541[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 3230[label="",style="solid", color="blue", weight=3]; 4542[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 3231[label="",style="solid", color="blue", weight=3]; 4543[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 3232[label="",style="solid", color="blue", weight=3]; 4544[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 3233[label="",style="solid", color="blue", weight=3]; 4545[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 3234[label="",style="solid", color="blue", weight=3]; 4546[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3136 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 3235[label="",style="solid", color="blue", weight=3]; 3137[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4547[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 3236[label="",style="solid", color="blue", weight=3]; 4548[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 3237[label="",style="solid", color="blue", weight=3]; 4549[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 3238[label="",style="solid", color="blue", weight=3]; 4550[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 3239[label="",style="solid", color="blue", weight=3]; 4551[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 3240[label="",style="solid", color="blue", weight=3]; 4552[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 3241[label="",style="solid", color="blue", weight=3]; 4553[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 3242[label="",style="solid", color="blue", weight=3]; 4554[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 3243[label="",style="solid", color="blue", weight=3]; 4555[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 3244[label="",style="solid", color="blue", weight=3]; 4556[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4556[label="",style="solid", color="blue", weight=9]; 4556 -> 3245[label="",style="solid", color="blue", weight=3]; 4557[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4557[label="",style="solid", color="blue", weight=9]; 4557 -> 3246[label="",style="solid", color="blue", weight=3]; 4558[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4558[label="",style="solid", color="blue", weight=9]; 4558 -> 3247[label="",style="solid", color="blue", weight=3]; 4559[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4559[label="",style="solid", color="blue", weight=9]; 4559 -> 3248[label="",style="solid", color="blue", weight=3]; 4560[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3137 -> 4560[label="",style="solid", color="blue", weight=9]; 4560 -> 3249[label="",style="solid", color="blue", weight=3]; 3138 -> 3083[label="",style="dashed", color="red", weight=0]; 3138[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3138 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3139 -> 1333[label="",style="dashed", color="red", weight=0]; 3139[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3139 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3085[label="",style="dashed", color="red", weight=0]; 3140[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3140 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3086[label="",style="dashed", color="red", weight=0]; 3141[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3141 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3142 -> 3087[label="",style="dashed", color="red", weight=0]; 3142[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3142 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3142 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3088[label="",style="dashed", color="red", weight=0]; 3143[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3143 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3089[label="",style="dashed", color="red", weight=0]; 3144[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3144 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3145 -> 3090[label="",style="dashed", color="red", weight=0]; 3145[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3145 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3145 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3146 -> 3091[label="",style="dashed", color="red", weight=0]; 3146[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3146 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3146 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3092[label="",style="dashed", color="red", weight=0]; 3147[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3147 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3093[label="",style="dashed", color="red", weight=0]; 3148[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3148 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3094[label="",style="dashed", color="red", weight=0]; 3149[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3149 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3150 -> 3095[label="",style="dashed", color="red", weight=0]; 3150[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3150 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3150 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3096[label="",style="dashed", color="red", weight=0]; 3151[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3151 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3152[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="blue",shape="box"];4561[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3152 -> 4561[label="",style="solid", color="blue", weight=9]; 4561 -> 3278[label="",style="solid", color="blue", weight=3]; 4562[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3152 -> 4562[label="",style="solid", color="blue", weight=9]; 4562 -> 3279[label="",style="solid", color="blue", weight=3]; 3153[label="primCmpChar (Char xuu33000) (Char xuu34000)",fontsize=16,color="black",shape="box"];3153 -> 3280[label="",style="solid", color="black", weight=3]; 3154[label="EQ",fontsize=16,color="green",shape="box"];1504 -> 1727[label="",style="dashed", color="red", weight=0]; 1504[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)",fontsize=16,color="magenta"];1504 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1505[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1506 -> 1727[label="",style="dashed", color="red", weight=0]; 1506[label="primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)",fontsize=16,color="magenta"];1506 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1507[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1722[label="xuu28",fontsize=16,color="green",shape="box"];1536 -> 1527[label="",style="dashed", color="red", weight=0]; 1536[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1537 -> 1516[label="",style="dashed", color="red", weight=0]; 1537[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1559[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 otherwise",fontsize=16,color="black",shape="box"];1559 -> 1745[label="",style="solid", color="black", weight=3]; 1560[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 xuu28 xuu64 xuu28 xuu64 xuu28",fontsize=16,color="burlywood",shape="box"];4563[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 1746[label="",style="solid", color="burlywood", weight=3]; 4564[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1560 -> 4564[label="",style="solid", color="burlywood", weight=9]; 4564 -> 1747[label="",style="solid", color="burlywood", weight=3]; 1538 -> 1748[label="",style="dashed", color="red", weight=0]; 1538[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1538 -> 1749[label="",style="dashed", color="magenta", weight=3]; 4047 -> 1727[label="",style="dashed", color="red", weight=0]; 4047[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211) (FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211)",fontsize=16,color="magenta"];4047 -> 4048[label="",style="dashed", color="magenta", weight=3]; 4047 -> 4049[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1727[label="",style="dashed", color="red", weight=0]; 1540[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)",fontsize=16,color="magenta"];1540 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1541[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1542 -> 1727[label="",style="dashed", color="red", weight=0]; 1542[label="primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)",fontsize=16,color="magenta"];1542 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1543[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1723 -> 1527[label="",style="dashed", color="red", weight=0]; 1723[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1724 -> 1518[label="",style="dashed", color="red", weight=0]; 1724[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1725[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 otherwise",fontsize=16,color="black",shape="box"];1725 -> 1754[label="",style="solid", color="black", weight=3]; 1726[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 xuu36 xuu64 xuu36 xuu64 xuu36",fontsize=16,color="burlywood",shape="box"];4565[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1726 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 1755[label="",style="solid", color="burlywood", weight=3]; 4566[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1726 -> 4566[label="",style="solid", color="burlywood", weight=9]; 4566 -> 1756[label="",style="solid", color="burlywood", weight=3]; 1561 -> 1757[label="",style="dashed", color="red", weight=0]; 1561[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1561 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1399[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="burlywood",shape="triangle"];4567[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4567[label="",style="solid", color="burlywood", weight=9]; 4567 -> 1563[label="",style="solid", color="burlywood", weight=3]; 4568[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4568[label="",style="solid", color="burlywood", weight=9]; 4568 -> 1564[label="",style="solid", color="burlywood", weight=3]; 1400 -> 1399[label="",style="dashed", color="red", weight=0]; 1400[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1400 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1399[label="",style="dashed", color="red", weight=0]; 1401[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1401 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1399[label="",style="dashed", color="red", weight=0]; 1402[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1402 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1569[label="primCmpInt (Pos (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4569[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4569[label="",style="solid", color="burlywood", weight=9]; 4569 -> 1765[label="",style="solid", color="burlywood", weight=3]; 4570[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1569 -> 4570[label="",style="solid", color="burlywood", weight=9]; 4570 -> 1766[label="",style="solid", color="burlywood", weight=3]; 1570[label="primCmpInt (Pos Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4571[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4571[label="",style="solid", color="burlywood", weight=9]; 4571 -> 1767[label="",style="solid", color="burlywood", weight=3]; 4572[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1570 -> 4572[label="",style="solid", color="burlywood", weight=9]; 4572 -> 1768[label="",style="solid", color="burlywood", weight=3]; 1571[label="primCmpInt (Neg (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4573[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1571 -> 4573[label="",style="solid", color="burlywood", weight=9]; 4573 -> 1769[label="",style="solid", color="burlywood", weight=3]; 4574[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1571 -> 4574[label="",style="solid", color="burlywood", weight=9]; 4574 -> 1770[label="",style="solid", color="burlywood", weight=3]; 1572[label="primCmpInt (Neg Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4575[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4575[label="",style="solid", color="burlywood", weight=9]; 4575 -> 1771[label="",style="solid", color="burlywood", weight=3]; 4576[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4576[label="",style="solid", color="burlywood", weight=9]; 4576 -> 1772[label="",style="solid", color="burlywood", weight=3]; 3155[label="True",fontsize=16,color="green",shape="box"];3156[label="False",fontsize=16,color="green",shape="box"];3181 -> 2377[label="",style="dashed", color="red", weight=0]; 3181[label="xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3181 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3181 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3182[label="xuu33001 < xuu34001",fontsize=16,color="blue",shape="box"];4577[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 3283[label="",style="solid", color="blue", weight=3]; 4578[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 3284[label="",style="solid", color="blue", weight=3]; 4579[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 3285[label="",style="solid", color="blue", weight=3]; 4580[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 3286[label="",style="solid", color="blue", weight=3]; 4581[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 3287[label="",style="solid", color="blue", weight=3]; 4582[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 3288[label="",style="solid", color="blue", weight=3]; 4583[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 3289[label="",style="solid", color="blue", weight=3]; 4584[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 3290[label="",style="solid", color="blue", weight=3]; 4585[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 3291[label="",style="solid", color="blue", weight=3]; 4586[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 3292[label="",style="solid", color="blue", weight=3]; 4587[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 3293[label="",style="solid", color="blue", weight=3]; 4588[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 3294[label="",style="solid", color="blue", weight=3]; 4589[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 3295[label="",style="solid", color="blue", weight=3]; 4590[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3182 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 3296[label="",style="solid", color="blue", weight=3]; 3183 -> 2067[label="",style="dashed", color="red", weight=0]; 3183[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3183 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3184 -> 2065[label="",style="dashed", color="red", weight=0]; 3184[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3184 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3185 -> 2063[label="",style="dashed", color="red", weight=0]; 3185[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3185 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3185 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3186 -> 2068[label="",style="dashed", color="red", weight=0]; 3186[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3186 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3186 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3187 -> 2071[label="",style="dashed", color="red", weight=0]; 3187[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3187 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3187 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3188 -> 2064[label="",style="dashed", color="red", weight=0]; 3188[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3188 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3188 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3189 -> 86[label="",style="dashed", color="red", weight=0]; 3189[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3189 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3190 -> 2070[label="",style="dashed", color="red", weight=0]; 3190[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3190 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3190 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3191 -> 2072[label="",style="dashed", color="red", weight=0]; 3191[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3191 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3191 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3192 -> 2062[label="",style="dashed", color="red", weight=0]; 3192[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3192 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3193 -> 2069[label="",style="dashed", color="red", weight=0]; 3193[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3193 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3194 -> 2066[label="",style="dashed", color="red", weight=0]; 3194[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3194 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3194 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3195 -> 2061[label="",style="dashed", color="red", weight=0]; 3195[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3195 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3195 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3196 -> 2060[label="",style="dashed", color="red", weight=0]; 3196[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3196 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3196 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3197 -> 86[label="",style="dashed", color="red", weight=0]; 3197[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3197 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3197 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3198[label="xuu33000",fontsize=16,color="green",shape="box"];3199[label="xuu34000",fontsize=16,color="green",shape="box"];1333[label="xuu330 < xuu340",fontsize=16,color="black",shape="triangle"];1333 -> 1406[label="",style="solid", color="black", weight=3]; 3200 -> 86[label="",style="dashed", color="red", weight=0]; 3200[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3200 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3200 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3201 -> 86[label="",style="dashed", color="red", weight=0]; 3201[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3201 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3201 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3202 -> 86[label="",style="dashed", color="red", weight=0]; 3202[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3202 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3202 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3203 -> 86[label="",style="dashed", color="red", weight=0]; 3203[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3203 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3203 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3204 -> 86[label="",style="dashed", color="red", weight=0]; 3204[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3204 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3204 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3205 -> 86[label="",style="dashed", color="red", weight=0]; 3205[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3205 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3206 -> 86[label="",style="dashed", color="red", weight=0]; 3206[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3206 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3206 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3207 -> 86[label="",style="dashed", color="red", weight=0]; 3207[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3207 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3208 -> 86[label="",style="dashed", color="red", weight=0]; 3208[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3208 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3209 -> 86[label="",style="dashed", color="red", weight=0]; 3209[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3209 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3210 -> 86[label="",style="dashed", color="red", weight=0]; 3210[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3210 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3211 -> 86[label="",style="dashed", color="red", weight=0]; 3211[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3211 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3212[label="xuu165",fontsize=16,color="green",shape="box"];3213[label="True",fontsize=16,color="green",shape="box"];3214[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4591[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3214 -> 4591[label="",style="solid", color="burlywood", weight=9]; 4591 -> 3351[label="",style="solid", color="burlywood", weight=3]; 4592[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3214 -> 4592[label="",style="solid", color="burlywood", weight=9]; 4592 -> 3352[label="",style="solid", color="burlywood", weight=3]; 3215[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4593[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3215 -> 4593[label="",style="solid", color="burlywood", weight=9]; 4593 -> 3353[label="",style="solid", color="burlywood", weight=3]; 4594[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3215 -> 4594[label="",style="solid", color="burlywood", weight=9]; 4594 -> 3354[label="",style="solid", color="burlywood", weight=3]; 3216[label="xuu33000",fontsize=16,color="green",shape="box"];3217[label="xuu34000",fontsize=16,color="green",shape="box"];3218[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4595[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4595[label="",style="solid", color="burlywood", weight=9]; 4595 -> 3355[label="",style="solid", color="burlywood", weight=3]; 4596[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4596[label="",style="solid", color="burlywood", weight=9]; 4596 -> 3356[label="",style="solid", color="burlywood", weight=3]; 3219[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4597[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4597[label="",style="solid", color="burlywood", weight=9]; 4597 -> 3357[label="",style="solid", color="burlywood", weight=3]; 4598[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4598[label="",style="solid", color="burlywood", weight=9]; 4598 -> 3358[label="",style="solid", color="burlywood", weight=3]; 3221 -> 2877[label="",style="dashed", color="red", weight=0]; 3221[label="compare xuu33001 xuu34001",fontsize=16,color="magenta"];3221 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3220[label="primCompAux xuu33000 xuu34000 xuu176",fontsize=16,color="black",shape="triangle"];3220 -> 3361[label="",style="solid", color="black", weight=3]; 3222 -> 2559[label="",style="dashed", color="red", weight=0]; 3222[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3222 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3223 -> 2560[label="",style="dashed", color="red", weight=0]; 3223[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3223 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3224 -> 2561[label="",style="dashed", color="red", weight=0]; 3224[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3224 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3225 -> 2562[label="",style="dashed", color="red", weight=0]; 3225[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3225 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3226 -> 2563[label="",style="dashed", color="red", weight=0]; 3226[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3226 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3227 -> 2564[label="",style="dashed", color="red", weight=0]; 3227[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3227 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3228 -> 2565[label="",style="dashed", color="red", weight=0]; 3228[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3228 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3229 -> 2566[label="",style="dashed", color="red", weight=0]; 3229[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3229 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3230 -> 2567[label="",style="dashed", color="red", weight=0]; 3230[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3230 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3231 -> 2568[label="",style="dashed", color="red", weight=0]; 3231[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3231 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3231 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3232 -> 2569[label="",style="dashed", color="red", weight=0]; 3232[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3232 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3233 -> 2570[label="",style="dashed", color="red", weight=0]; 3233[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3233 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3233 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3234 -> 2571[label="",style="dashed", color="red", weight=0]; 3234[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3234 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3235 -> 2572[label="",style="dashed", color="red", weight=0]; 3235[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3235 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3235 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3236 -> 2067[label="",style="dashed", color="red", weight=0]; 3236[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3236 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3237 -> 2065[label="",style="dashed", color="red", weight=0]; 3237[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3237 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3237 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3238 -> 2063[label="",style="dashed", color="red", weight=0]; 3238[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3238 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3238 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3239 -> 2068[label="",style="dashed", color="red", weight=0]; 3239[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3239 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3239 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3240 -> 2071[label="",style="dashed", color="red", weight=0]; 3240[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3240 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3240 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3241 -> 2064[label="",style="dashed", color="red", weight=0]; 3241[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3241 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3241 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3242 -> 86[label="",style="dashed", color="red", weight=0]; 3242[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3242 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3242 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3243 -> 2070[label="",style="dashed", color="red", weight=0]; 3243[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3243 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3243 -> 3421[label="",style="dashed", color="magenta", weight=3]; 3244 -> 2072[label="",style="dashed", color="red", weight=0]; 3244[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3244 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3244 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3245 -> 2062[label="",style="dashed", color="red", weight=0]; 3245[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3245 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3245 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3246 -> 2069[label="",style="dashed", color="red", weight=0]; 3246[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3246 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3246 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3247 -> 2066[label="",style="dashed", color="red", weight=0]; 3247[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3247 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3247 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3248 -> 2061[label="",style="dashed", color="red", weight=0]; 3248[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3248 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3248 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3249 -> 2060[label="",style="dashed", color="red", weight=0]; 3249[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3249 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3249 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3250[label="xuu33000",fontsize=16,color="green",shape="box"];3251[label="xuu34000",fontsize=16,color="green",shape="box"];3252[label="xuu33000",fontsize=16,color="green",shape="box"];3253[label="xuu34000",fontsize=16,color="green",shape="box"];3254[label="xuu33000",fontsize=16,color="green",shape="box"];3255[label="xuu34000",fontsize=16,color="green",shape="box"];3256[label="xuu33000",fontsize=16,color="green",shape="box"];3257[label="xuu34000",fontsize=16,color="green",shape="box"];3258[label="xuu33000",fontsize=16,color="green",shape="box"];3259[label="xuu34000",fontsize=16,color="green",shape="box"];3260[label="xuu33000",fontsize=16,color="green",shape="box"];3261[label="xuu34000",fontsize=16,color="green",shape="box"];3262[label="xuu33000",fontsize=16,color="green",shape="box"];3263[label="xuu34000",fontsize=16,color="green",shape="box"];3264[label="xuu33000",fontsize=16,color="green",shape="box"];3265[label="xuu34000",fontsize=16,color="green",shape="box"];3266[label="xuu33000",fontsize=16,color="green",shape="box"];3267[label="xuu34000",fontsize=16,color="green",shape="box"];3268[label="xuu33000",fontsize=16,color="green",shape="box"];3269[label="xuu34000",fontsize=16,color="green",shape="box"];3270[label="xuu33000",fontsize=16,color="green",shape="box"];3271[label="xuu34000",fontsize=16,color="green",shape="box"];3272[label="xuu33000",fontsize=16,color="green",shape="box"];3273[label="xuu34000",fontsize=16,color="green",shape="box"];3274[label="xuu33000",fontsize=16,color="green",shape="box"];3275[label="xuu34000",fontsize=16,color="green",shape="box"];3276[label="xuu33000",fontsize=16,color="green",shape="box"];3277[label="xuu34000",fontsize=16,color="green",shape="box"];3278 -> 1208[label="",style="dashed", color="red", weight=0]; 3278[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3278 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3278 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3279 -> 2875[label="",style="dashed", color="red", weight=0]; 3279[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3279 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3279 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3280 -> 1861[label="",style="dashed", color="red", weight=0]; 3280[label="primCmpNat xuu33000 xuu34000",fontsize=16,color="magenta"];3280 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3280 -> 3439[label="",style="dashed", color="magenta", weight=3]; 1732[label="Pos Zero",fontsize=16,color="green",shape="box"];1733 -> 1516[label="",style="dashed", color="red", weight=0]; 1733[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64",fontsize=16,color="magenta"];1733 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1727[label="primPlusInt xuu282 xuu97",fontsize=16,color="burlywood",shape="triangle"];4599[label="xuu282/Pos xuu2820",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4599[label="",style="solid", color="burlywood", weight=9]; 4599 -> 1752[label="",style="solid", color="burlywood", weight=3]; 4600[label="xuu282/Neg xuu2820",fontsize=10,color="white",style="solid",shape="box"];1727 -> 4600[label="",style="solid", color="burlywood", weight=9]; 4600 -> 1753[label="",style="solid", color="burlywood", weight=3]; 1734 -> 1516[label="",style="dashed", color="red", weight=0]; 1734[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="magenta"];1734 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1745[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1745 -> 1864[label="",style="solid", color="black", weight=3]; 1746[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1746 -> 1865[label="",style="solid", color="black", weight=3]; 1747[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1747 -> 1866[label="",style="solid", color="black", weight=3]; 1749 -> 1333[label="",style="dashed", color="red", weight=0]; 1749[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1749 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1748[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu98",fontsize=16,color="burlywood",shape="triangle"];4601[label="xuu98/False",fontsize=10,color="white",style="solid",shape="box"];1748 -> 4601[label="",style="solid", color="burlywood", weight=9]; 4601 -> 1869[label="",style="solid", color="burlywood", weight=3]; 4602[label="xuu98/True",fontsize=10,color="white",style="solid",shape="box"];1748 -> 4602[label="",style="solid", color="burlywood", weight=9]; 4602 -> 1870[label="",style="solid", color="burlywood", weight=3]; 4048[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4048 -> 4050[label="",style="solid", color="black", weight=3]; 4049[label="FiniteMap.mkBranchRight_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4049 -> 4051[label="",style="solid", color="black", weight=3]; 1737[label="Pos Zero",fontsize=16,color="green",shape="box"];1738 -> 1518[label="",style="dashed", color="red", weight=0]; 1738[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64",fontsize=16,color="magenta"];1738 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1739[label="xuu362",fontsize=16,color="green",shape="box"];1740 -> 1518[label="",style="dashed", color="red", weight=0]; 1740[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="magenta"];1740 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1754[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1754 -> 1879[label="",style="solid", color="black", weight=3]; 1755[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1755 -> 1880[label="",style="solid", color="black", weight=3]; 1756[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1756 -> 1881[label="",style="solid", color="black", weight=3]; 1758 -> 1333[label="",style="dashed", color="red", weight=0]; 1758[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1758 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1757[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu102",fontsize=16,color="burlywood",shape="triangle"];4603[label="xuu102/False",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4603[label="",style="solid", color="burlywood", weight=9]; 4603 -> 1884[label="",style="solid", color="burlywood", weight=3]; 4604[label="xuu102/True",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4604[label="",style="solid", color="burlywood", weight=9]; 4604 -> 1885[label="",style="solid", color="burlywood", weight=3]; 1563[label="primMulNat (Succ xuu311000000) xuu60010",fontsize=16,color="burlywood",shape="box"];4605[label="xuu60010/Succ xuu600100",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4605[label="",style="solid", color="burlywood", weight=9]; 4605 -> 1761[label="",style="solid", color="burlywood", weight=3]; 4606[label="xuu60010/Zero",fontsize=10,color="white",style="solid",shape="box"];1563 -> 4606[label="",style="solid", color="burlywood", weight=9]; 4606 -> 1762[label="",style="solid", color="burlywood", weight=3]; 1564[label="primMulNat Zero xuu60010",fontsize=16,color="burlywood",shape="box"];4607[label="xuu60010/Succ xuu600100",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4607[label="",style="solid", color="burlywood", weight=9]; 4607 -> 1763[label="",style="solid", color="burlywood", weight=3]; 4608[label="xuu60010/Zero",fontsize=10,color="white",style="solid",shape="box"];1564 -> 4608[label="",style="solid", color="burlywood", weight=9]; 4608 -> 1764[label="",style="solid", color="burlywood", weight=3]; 1565[label="xuu60010",fontsize=16,color="green",shape="box"];1566[label="xuu31100000",fontsize=16,color="green",shape="box"];1567[label="xuu60010",fontsize=16,color="green",shape="box"];1568[label="xuu31100000",fontsize=16,color="green",shape="box"];1765[label="primCmpInt (Pos (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1765 -> 1892[label="",style="solid", color="black", weight=3]; 1766[label="primCmpInt (Pos (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1766 -> 1893[label="",style="solid", color="black", weight=3]; 1767[label="primCmpInt (Pos Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4609[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1767 -> 4609[label="",style="solid", color="burlywood", weight=9]; 4609 -> 1894[label="",style="solid", color="burlywood", weight=3]; 4610[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1767 -> 4610[label="",style="solid", color="burlywood", weight=9]; 4610 -> 1895[label="",style="solid", color="burlywood", weight=3]; 1768[label="primCmpInt (Pos Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4611[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1768 -> 4611[label="",style="solid", color="burlywood", weight=9]; 4611 -> 1896[label="",style="solid", color="burlywood", weight=3]; 4612[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1768 -> 4612[label="",style="solid", color="burlywood", weight=9]; 4612 -> 1897[label="",style="solid", color="burlywood", weight=3]; 1769[label="primCmpInt (Neg (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1769 -> 1898[label="",style="solid", color="black", weight=3]; 1770[label="primCmpInt (Neg (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1770 -> 1899[label="",style="solid", color="black", weight=3]; 1771[label="primCmpInt (Neg Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4613[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4613[label="",style="solid", color="burlywood", weight=9]; 4613 -> 1900[label="",style="solid", color="burlywood", weight=3]; 4614[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4614[label="",style="solid", color="burlywood", weight=9]; 4614 -> 1901[label="",style="solid", color="burlywood", weight=3]; 1772[label="primCmpInt (Neg Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4615[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4615[label="",style="solid", color="burlywood", weight=9]; 4615 -> 1902[label="",style="solid", color="burlywood", weight=3]; 4616[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4616[label="",style="solid", color="burlywood", weight=9]; 4616 -> 1903[label="",style="solid", color="burlywood", weight=3]; 3281[label="xuu33002 <= xuu34002",fontsize=16,color="blue",shape="box"];4617[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 3440[label="",style="solid", color="blue", weight=3]; 4618[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 3441[label="",style="solid", color="blue", weight=3]; 4619[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 3442[label="",style="solid", color="blue", weight=3]; 4620[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 3443[label="",style="solid", color="blue", weight=3]; 4621[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 3444[label="",style="solid", color="blue", weight=3]; 4622[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 3445[label="",style="solid", color="blue", weight=3]; 4623[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 3446[label="",style="solid", color="blue", weight=3]; 4624[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 3447[label="",style="solid", color="blue", weight=3]; 4625[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 3448[label="",style="solid", color="blue", weight=3]; 4626[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 3449[label="",style="solid", color="blue", weight=3]; 4627[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 3450[label="",style="solid", color="blue", weight=3]; 4628[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 3451[label="",style="solid", color="blue", weight=3]; 4629[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 3452[label="",style="solid", color="blue", weight=3]; 4630[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3281 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 3453[label="",style="solid", color="blue", weight=3]; 3282[label="xuu33001 == xuu34001",fontsize=16,color="blue",shape="box"];4631[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 3454[label="",style="solid", color="blue", weight=3]; 4632[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 3455[label="",style="solid", color="blue", weight=3]; 4633[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4633[label="",style="solid", color="blue", weight=9]; 4633 -> 3456[label="",style="solid", color="blue", weight=3]; 4634[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4634[label="",style="solid", color="blue", weight=9]; 4634 -> 3457[label="",style="solid", color="blue", weight=3]; 4635[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4635[label="",style="solid", color="blue", weight=9]; 4635 -> 3458[label="",style="solid", color="blue", weight=3]; 4636[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4636[label="",style="solid", color="blue", weight=9]; 4636 -> 3459[label="",style="solid", color="blue", weight=3]; 4637[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4637[label="",style="solid", color="blue", weight=9]; 4637 -> 3460[label="",style="solid", color="blue", weight=3]; 4638[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4638[label="",style="solid", color="blue", weight=9]; 4638 -> 3461[label="",style="solid", color="blue", weight=3]; 4639[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4639[label="",style="solid", color="blue", weight=9]; 4639 -> 3462[label="",style="solid", color="blue", weight=3]; 4640[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4640[label="",style="solid", color="blue", weight=9]; 4640 -> 3463[label="",style="solid", color="blue", weight=3]; 4641[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4641[label="",style="solid", color="blue", weight=9]; 4641 -> 3464[label="",style="solid", color="blue", weight=3]; 4642[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4642[label="",style="solid", color="blue", weight=9]; 4642 -> 3465[label="",style="solid", color="blue", weight=3]; 4643[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4643[label="",style="solid", color="blue", weight=9]; 4643 -> 3466[label="",style="solid", color="blue", weight=3]; 4644[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4644[label="",style="solid", color="blue", weight=9]; 4644 -> 3467[label="",style="solid", color="blue", weight=3]; 3283 -> 3083[label="",style="dashed", color="red", weight=0]; 3283[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3283 -> 3468[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3469[label="",style="dashed", color="magenta", weight=3]; 3284 -> 1333[label="",style="dashed", color="red", weight=0]; 3284[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3284 -> 3470[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3085[label="",style="dashed", color="red", weight=0]; 3285[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3285 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3473[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3086[label="",style="dashed", color="red", weight=0]; 3286[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3286 -> 3474[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3475[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3087[label="",style="dashed", color="red", weight=0]; 3287[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3287 -> 3476[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3477[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3088[label="",style="dashed", color="red", weight=0]; 3288[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3288 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3089[label="",style="dashed", color="red", weight=0]; 3289[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3289 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3090[label="",style="dashed", color="red", weight=0]; 3290[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3290 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3483[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3091[label="",style="dashed", color="red", weight=0]; 3291[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3291 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3485[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3092[label="",style="dashed", color="red", weight=0]; 3292[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3292 -> 3486[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3487[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3093[label="",style="dashed", color="red", weight=0]; 3293[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3293 -> 3488[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3489[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3094[label="",style="dashed", color="red", weight=0]; 3294[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3294 -> 3490[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3491[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3095[label="",style="dashed", color="red", weight=0]; 3295[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3295 -> 3492[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3096[label="",style="dashed", color="red", weight=0]; 3296[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3296 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3297[label="xuu33000",fontsize=16,color="green",shape="box"];3298[label="xuu34000",fontsize=16,color="green",shape="box"];3299[label="xuu33000",fontsize=16,color="green",shape="box"];3300[label="xuu34000",fontsize=16,color="green",shape="box"];3301[label="xuu33000",fontsize=16,color="green",shape="box"];3302[label="xuu34000",fontsize=16,color="green",shape="box"];3303[label="xuu33000",fontsize=16,color="green",shape="box"];3304[label="xuu34000",fontsize=16,color="green",shape="box"];3305[label="xuu33000",fontsize=16,color="green",shape="box"];3306[label="xuu34000",fontsize=16,color="green",shape="box"];3307[label="xuu33000",fontsize=16,color="green",shape="box"];3308[label="xuu34000",fontsize=16,color="green",shape="box"];3309[label="xuu33000",fontsize=16,color="green",shape="box"];3310[label="xuu34000",fontsize=16,color="green",shape="box"];3311[label="xuu33000",fontsize=16,color="green",shape="box"];3312[label="xuu34000",fontsize=16,color="green",shape="box"];3313[label="xuu33000",fontsize=16,color="green",shape="box"];3314[label="xuu34000",fontsize=16,color="green",shape="box"];3315[label="xuu33000",fontsize=16,color="green",shape="box"];3316[label="xuu34000",fontsize=16,color="green",shape="box"];3317[label="xuu33000",fontsize=16,color="green",shape="box"];3318[label="xuu34000",fontsize=16,color="green",shape="box"];3319[label="xuu33000",fontsize=16,color="green",shape="box"];3320[label="xuu34000",fontsize=16,color="green",shape="box"];3321[label="xuu33000",fontsize=16,color="green",shape="box"];3322[label="xuu34000",fontsize=16,color="green",shape="box"];3323[label="xuu33000",fontsize=16,color="green",shape="box"];3324[label="xuu34000",fontsize=16,color="green",shape="box"];3325[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3325 -> 3496[label="",style="solid", color="black", weight=3]; 3326[label="LT",fontsize=16,color="green",shape="box"];1406 -> 86[label="",style="dashed", color="red", weight=0]; 1406[label="compare xuu330 xuu340 == LT",fontsize=16,color="magenta"];1406 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1576[label="",style="dashed", color="magenta", weight=3]; 3327[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3327 -> 3497[label="",style="solid", color="black", weight=3]; 3328[label="LT",fontsize=16,color="green",shape="box"];3329 -> 2874[label="",style="dashed", color="red", weight=0]; 3329[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3329 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3329 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3330[label="LT",fontsize=16,color="green",shape="box"];3331 -> 2875[label="",style="dashed", color="red", weight=0]; 3331[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3331 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3331 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3332[label="LT",fontsize=16,color="green",shape="box"];3333 -> 2876[label="",style="dashed", color="red", weight=0]; 3333[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3333 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3333 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3334[label="LT",fontsize=16,color="green",shape="box"];3335[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3335 -> 3504[label="",style="solid", color="black", weight=3]; 3336[label="LT",fontsize=16,color="green",shape="box"];3337 -> 2877[label="",style="dashed", color="red", weight=0]; 3337[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3337 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3338[label="LT",fontsize=16,color="green",shape="box"];3339[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3339 -> 3507[label="",style="solid", color="black", weight=3]; 3340[label="LT",fontsize=16,color="green",shape="box"];3341[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3341 -> 3508[label="",style="solid", color="black", weight=3]; 3342[label="LT",fontsize=16,color="green",shape="box"];3343 -> 2878[label="",style="dashed", color="red", weight=0]; 3343[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3343 -> 3509[label="",style="dashed", color="magenta", weight=3]; 3343 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3344[label="LT",fontsize=16,color="green",shape="box"];3345[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3345 -> 3511[label="",style="solid", color="black", weight=3]; 3346[label="LT",fontsize=16,color="green",shape="box"];3347 -> 2879[label="",style="dashed", color="red", weight=0]; 3347[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3347 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3347 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3348[label="LT",fontsize=16,color="green",shape="box"];3349 -> 2880[label="",style="dashed", color="red", weight=0]; 3349[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3349 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3349 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3350[label="LT",fontsize=16,color="green",shape="box"];3351[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3351 -> 3516[label="",style="solid", color="black", weight=3]; 3352[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3352 -> 3517[label="",style="solid", color="black", weight=3]; 3353[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3353 -> 3518[label="",style="solid", color="black", weight=3]; 3354[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3354 -> 3519[label="",style="solid", color="black", weight=3]; 3355[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3355 -> 3520[label="",style="solid", color="black", weight=3]; 3356[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3356 -> 3521[label="",style="solid", color="black", weight=3]; 3357[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3357 -> 3522[label="",style="solid", color="black", weight=3]; 3358[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3358 -> 3523[label="",style="solid", color="black", weight=3]; 3359[label="xuu33001",fontsize=16,color="green",shape="box"];3360[label="xuu34001",fontsize=16,color="green",shape="box"];3361 -> 3524[label="",style="dashed", color="red", weight=0]; 3361[label="primCompAux0 xuu176 (compare xuu33000 xuu34000)",fontsize=16,color="magenta"];3361 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3361 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3378[label="xuu33001",fontsize=16,color="green",shape="box"];3379[label="xuu34001",fontsize=16,color="green",shape="box"];3380[label="xuu33001",fontsize=16,color="green",shape="box"];3381[label="xuu34001",fontsize=16,color="green",shape="box"];3382[label="xuu33001",fontsize=16,color="green",shape="box"];3383[label="xuu34001",fontsize=16,color="green",shape="box"];3384[label="xuu33001",fontsize=16,color="green",shape="box"];3385[label="xuu34001",fontsize=16,color="green",shape="box"];3386[label="xuu33001",fontsize=16,color="green",shape="box"];3387[label="xuu34001",fontsize=16,color="green",shape="box"];3388[label="xuu33001",fontsize=16,color="green",shape="box"];3389[label="xuu34001",fontsize=16,color="green",shape="box"];3390[label="xuu33001",fontsize=16,color="green",shape="box"];3391[label="xuu34001",fontsize=16,color="green",shape="box"];3392[label="xuu33001",fontsize=16,color="green",shape="box"];3393[label="xuu34001",fontsize=16,color="green",shape="box"];3394[label="xuu33001",fontsize=16,color="green",shape="box"];3395[label="xuu34001",fontsize=16,color="green",shape="box"];3396[label="xuu33001",fontsize=16,color="green",shape="box"];3397[label="xuu34001",fontsize=16,color="green",shape="box"];3398[label="xuu33001",fontsize=16,color="green",shape="box"];3399[label="xuu34001",fontsize=16,color="green",shape="box"];3400[label="xuu33001",fontsize=16,color="green",shape="box"];3401[label="xuu34001",fontsize=16,color="green",shape="box"];3402[label="xuu33001",fontsize=16,color="green",shape="box"];3403[label="xuu34001",fontsize=16,color="green",shape="box"];3404[label="xuu33001",fontsize=16,color="green",shape="box"];3405[label="xuu34001",fontsize=16,color="green",shape="box"];3406[label="xuu33000",fontsize=16,color="green",shape="box"];3407[label="xuu34000",fontsize=16,color="green",shape="box"];3408[label="xuu33000",fontsize=16,color="green",shape="box"];3409[label="xuu34000",fontsize=16,color="green",shape="box"];3410[label="xuu33000",fontsize=16,color="green",shape="box"];3411[label="xuu34000",fontsize=16,color="green",shape="box"];3412[label="xuu33000",fontsize=16,color="green",shape="box"];3413[label="xuu34000",fontsize=16,color="green",shape="box"];3414[label="xuu33000",fontsize=16,color="green",shape="box"];3415[label="xuu34000",fontsize=16,color="green",shape="box"];3416[label="xuu33000",fontsize=16,color="green",shape="box"];3417[label="xuu34000",fontsize=16,color="green",shape="box"];3418[label="xuu33000",fontsize=16,color="green",shape="box"];3419[label="xuu34000",fontsize=16,color="green",shape="box"];3420[label="xuu33000",fontsize=16,color="green",shape="box"];3421[label="xuu34000",fontsize=16,color="green",shape="box"];3422[label="xuu33000",fontsize=16,color="green",shape="box"];3423[label="xuu34000",fontsize=16,color="green",shape="box"];3424[label="xuu33000",fontsize=16,color="green",shape="box"];3425[label="xuu34000",fontsize=16,color="green",shape="box"];3426[label="xuu33000",fontsize=16,color="green",shape="box"];3427[label="xuu34000",fontsize=16,color="green",shape="box"];3428[label="xuu33000",fontsize=16,color="green",shape="box"];3429[label="xuu34000",fontsize=16,color="green",shape="box"];3430[label="xuu33000",fontsize=16,color="green",shape="box"];3431[label="xuu34000",fontsize=16,color="green",shape="box"];3432[label="xuu33000",fontsize=16,color="green",shape="box"];3433[label="xuu34000",fontsize=16,color="green",shape="box"];3434 -> 617[label="",style="dashed", color="red", weight=0]; 3434[label="xuu33000 * xuu34001",fontsize=16,color="magenta"];3434 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3434 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3435 -> 617[label="",style="dashed", color="red", weight=0]; 3435[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3435 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3435 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3436[label="xuu33000 * xuu34001",fontsize=16,color="burlywood",shape="triangle"];4645[label="xuu33000/Integer xuu330000",fontsize=10,color="white",style="solid",shape="box"];3436 -> 4645[label="",style="solid", color="burlywood", weight=9]; 4645 -> 3533[label="",style="solid", color="burlywood", weight=3]; 3437 -> 3436[label="",style="dashed", color="red", weight=0]; 3437[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3437 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3437 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3438[label="xuu34000",fontsize=16,color="green",shape="box"];3439[label="xuu33000",fontsize=16,color="green",shape="box"];1861[label="primCmpNat xuu330 xuu340",fontsize=16,color="burlywood",shape="triangle"];4646[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4646[label="",style="solid", color="burlywood", weight=9]; 4646 -> 1981[label="",style="solid", color="burlywood", weight=3]; 4647[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1861 -> 4647[label="",style="solid", color="burlywood", weight=9]; 4647 -> 1982[label="",style="solid", color="burlywood", weight=3]; 1862[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1752[label="primPlusInt (Pos xuu2820) xuu97",fontsize=16,color="burlywood",shape="box"];4648[label="xuu97/Pos xuu970",fontsize=10,color="white",style="solid",shape="box"];1752 -> 4648[label="",style="solid", color="burlywood", weight=9]; 4648 -> 1873[label="",style="solid", color="burlywood", weight=3]; 4649[label="xuu97/Neg xuu970",fontsize=10,color="white",style="solid",shape="box"];1752 -> 4649[label="",style="solid", color="burlywood", weight=9]; 4649 -> 1874[label="",style="solid", color="burlywood", weight=3]; 1753[label="primPlusInt (Neg xuu2820) xuu97",fontsize=16,color="burlywood",shape="box"];4650[label="xuu97/Pos xuu970",fontsize=10,color="white",style="solid",shape="box"];1753 -> 4650[label="",style="solid", color="burlywood", weight=9]; 4650 -> 1875[label="",style="solid", color="burlywood", weight=3]; 4651[label="xuu97/Neg xuu970",fontsize=10,color="white",style="solid",shape="box"];1753 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 1876[label="",style="solid", color="burlywood", weight=3]; 1863[label="FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=16,color="green",shape="box"];1864 -> 3832[label="",style="dashed", color="red", weight=0]; 1864[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1864 -> 3843[label="",style="dashed", color="magenta", weight=3]; 1864 -> 3844[label="",style="dashed", color="magenta", weight=3]; 1864 -> 3845[label="",style="dashed", color="magenta", weight=3]; 1864 -> 3846[label="",style="dashed", color="magenta", weight=3]; 1864 -> 3847[label="",style="dashed", color="magenta", weight=3]; 1865[label="error []",fontsize=16,color="red",shape="box"];1866[label="FiniteMap.mkBalBranch6MkBalBranch12 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1866 -> 1984[label="",style="solid", color="black", weight=3]; 1867 -> 1526[label="",style="dashed", color="red", weight=0]; 1867[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];1867 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1868 -> 617[label="",style="dashed", color="red", weight=0]; 1868[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1868 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1868 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1869[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];1869 -> 1988[label="",style="solid", color="black", weight=3]; 1870[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];1870 -> 1989[label="",style="solid", color="black", weight=3]; 4050 -> 1727[label="",style="dashed", color="red", weight=0]; 4050[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211)",fontsize=16,color="magenta"];4050 -> 4052[label="",style="dashed", color="magenta", weight=3]; 4050 -> 4053[label="",style="dashed", color="magenta", weight=3]; 4051[label="FiniteMap.sizeFM xuu212",fontsize=16,color="burlywood",shape="triangle"];4652[label="xuu212/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4051 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 4054[label="",style="solid", color="burlywood", weight=3]; 4653[label="xuu212/FiniteMap.Branch xuu2120 xuu2121 xuu2122 xuu2123 xuu2124",fontsize=10,color="white",style="solid",shape="box"];4051 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 4055[label="",style="solid", color="burlywood", weight=3]; 1877[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1878[label="FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=16,color="green",shape="box"];1879 -> 3832[label="",style="dashed", color="red", weight=0]; 1879[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1879 -> 3848[label="",style="dashed", color="magenta", weight=3]; 1879 -> 3849[label="",style="dashed", color="magenta", weight=3]; 1879 -> 3850[label="",style="dashed", color="magenta", weight=3]; 1879 -> 3851[label="",style="dashed", color="magenta", weight=3]; 1879 -> 3852[label="",style="dashed", color="magenta", weight=3]; 1880[label="error []",fontsize=16,color="red",shape="box"];1881[label="FiniteMap.mkBalBranch6MkBalBranch12 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1881 -> 1996[label="",style="solid", color="black", weight=3]; 1882 -> 1526[label="",style="dashed", color="red", weight=0]; 1882[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];1882 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1883 -> 617[label="",style="dashed", color="red", weight=0]; 1883[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1883 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1884[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];1884 -> 2000[label="",style="solid", color="black", weight=3]; 1885[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];1885 -> 2001[label="",style="solid", color="black", weight=3]; 1761[label="primMulNat (Succ xuu311000000) (Succ xuu600100)",fontsize=16,color="black",shape="box"];1761 -> 1888[label="",style="solid", color="black", weight=3]; 1762[label="primMulNat (Succ xuu311000000) Zero",fontsize=16,color="black",shape="box"];1762 -> 1889[label="",style="solid", color="black", weight=3]; 1763[label="primMulNat Zero (Succ xuu600100)",fontsize=16,color="black",shape="box"];1763 -> 1890[label="",style="solid", color="black", weight=3]; 1764[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1764 -> 1891[label="",style="solid", color="black", weight=3]; 1892 -> 1861[label="",style="dashed", color="red", weight=0]; 1892[label="primCmpNat (Succ xuu3300) xuu340",fontsize=16,color="magenta"];1892 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1893[label="GT",fontsize=16,color="green",shape="box"];1894[label="primCmpInt (Pos Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1894 -> 2007[label="",style="solid", color="black", weight=3]; 1895[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1895 -> 2008[label="",style="solid", color="black", weight=3]; 1896[label="primCmpInt (Pos Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1896 -> 2009[label="",style="solid", color="black", weight=3]; 1897[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1897 -> 2010[label="",style="solid", color="black", weight=3]; 1898[label="LT",fontsize=16,color="green",shape="box"];1899 -> 1861[label="",style="dashed", color="red", weight=0]; 1899[label="primCmpNat xuu340 (Succ xuu3300)",fontsize=16,color="magenta"];1899 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1900[label="primCmpInt (Neg Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1900 -> 2013[label="",style="solid", color="black", weight=3]; 1901[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1901 -> 2014[label="",style="solid", color="black", weight=3]; 1902[label="primCmpInt (Neg Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1902 -> 2015[label="",style="solid", color="black", weight=3]; 1903[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1903 -> 2016[label="",style="solid", color="black", weight=3]; 3440 -> 2559[label="",style="dashed", color="red", weight=0]; 3440[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3440 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3440 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3441 -> 2560[label="",style="dashed", color="red", weight=0]; 3441[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3441 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3441 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3442 -> 2561[label="",style="dashed", color="red", weight=0]; 3442[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3442 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3442 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3443 -> 2562[label="",style="dashed", color="red", weight=0]; 3443[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3443 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3443 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3444 -> 2563[label="",style="dashed", color="red", weight=0]; 3444[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3444 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3444 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3445 -> 2564[label="",style="dashed", color="red", weight=0]; 3445[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3445 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3446 -> 2565[label="",style="dashed", color="red", weight=0]; 3446[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3446 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3446 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3447 -> 2566[label="",style="dashed", color="red", weight=0]; 3447[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3447 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3448 -> 2567[label="",style="dashed", color="red", weight=0]; 3448[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3448 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3448 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3449 -> 2568[label="",style="dashed", color="red", weight=0]; 3449[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3449 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3449 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3450 -> 2569[label="",style="dashed", color="red", weight=0]; 3450[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3450 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3450 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3451 -> 2570[label="",style="dashed", color="red", weight=0]; 3451[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3451 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3451 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3452 -> 2571[label="",style="dashed", color="red", weight=0]; 3452[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3452 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3452 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3453 -> 2572[label="",style="dashed", color="red", weight=0]; 3453[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3453 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3454 -> 2067[label="",style="dashed", color="red", weight=0]; 3454[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3454 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3455 -> 2065[label="",style="dashed", color="red", weight=0]; 3455[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3455 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3455 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3456 -> 2063[label="",style="dashed", color="red", weight=0]; 3456[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3456 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3456 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3457 -> 2068[label="",style="dashed", color="red", weight=0]; 3457[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3457 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3458 -> 2071[label="",style="dashed", color="red", weight=0]; 3458[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3458 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3459 -> 2064[label="",style="dashed", color="red", weight=0]; 3459[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3459 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3460 -> 86[label="",style="dashed", color="red", weight=0]; 3460[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3460 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3461 -> 2070[label="",style="dashed", color="red", weight=0]; 3461[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3461 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3462 -> 2072[label="",style="dashed", color="red", weight=0]; 3462[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3462 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3463 -> 2062[label="",style="dashed", color="red", weight=0]; 3463[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3463 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3464 -> 2069[label="",style="dashed", color="red", weight=0]; 3464[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3464 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3465 -> 2066[label="",style="dashed", color="red", weight=0]; 3465[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3465 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3466 -> 2061[label="",style="dashed", color="red", weight=0]; 3466[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3466 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3467 -> 2060[label="",style="dashed", color="red", weight=0]; 3467[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3467 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3468[label="xuu33001",fontsize=16,color="green",shape="box"];3469[label="xuu34001",fontsize=16,color="green",shape="box"];3470[label="xuu33001",fontsize=16,color="green",shape="box"];3471[label="xuu34001",fontsize=16,color="green",shape="box"];3472[label="xuu33001",fontsize=16,color="green",shape="box"];3473[label="xuu34001",fontsize=16,color="green",shape="box"];3474[label="xuu33001",fontsize=16,color="green",shape="box"];3475[label="xuu34001",fontsize=16,color="green",shape="box"];3476[label="xuu33001",fontsize=16,color="green",shape="box"];3477[label="xuu34001",fontsize=16,color="green",shape="box"];3478[label="xuu33001",fontsize=16,color="green",shape="box"];3479[label="xuu34001",fontsize=16,color="green",shape="box"];3480[label="xuu33001",fontsize=16,color="green",shape="box"];3481[label="xuu34001",fontsize=16,color="green",shape="box"];3482[label="xuu33001",fontsize=16,color="green",shape="box"];3483[label="xuu34001",fontsize=16,color="green",shape="box"];3484[label="xuu33001",fontsize=16,color="green",shape="box"];3485[label="xuu34001",fontsize=16,color="green",shape="box"];3486[label="xuu33001",fontsize=16,color="green",shape="box"];3487[label="xuu34001",fontsize=16,color="green",shape="box"];3488[label="xuu33001",fontsize=16,color="green",shape="box"];3489[label="xuu34001",fontsize=16,color="green",shape="box"];3490[label="xuu33001",fontsize=16,color="green",shape="box"];3491[label="xuu34001",fontsize=16,color="green",shape="box"];3492[label="xuu33001",fontsize=16,color="green",shape="box"];3493[label="xuu34001",fontsize=16,color="green",shape="box"];3494[label="xuu33001",fontsize=16,color="green",shape="box"];3495[label="xuu34001",fontsize=16,color="green",shape="box"];3496[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3496 -> 3592[label="",style="solid", color="black", weight=3]; 1575 -> 1208[label="",style="dashed", color="red", weight=0]; 1575[label="compare xuu330 xuu340",fontsize=16,color="magenta"];1575 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1576[label="LT",fontsize=16,color="green",shape="box"];3497[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3497 -> 3593[label="",style="solid", color="black", weight=3]; 3498[label="xuu33000",fontsize=16,color="green",shape="box"];3499[label="xuu34000",fontsize=16,color="green",shape="box"];3500[label="xuu33000",fontsize=16,color="green",shape="box"];3501[label="xuu34000",fontsize=16,color="green",shape="box"];3502[label="xuu33000",fontsize=16,color="green",shape="box"];3503[label="xuu34000",fontsize=16,color="green",shape="box"];3504[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3504 -> 3594[label="",style="solid", color="black", weight=3]; 3505[label="xuu33000",fontsize=16,color="green",shape="box"];3506[label="xuu34000",fontsize=16,color="green",shape="box"];3507[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3507 -> 3595[label="",style="solid", color="black", weight=3]; 3508[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3508 -> 3596[label="",style="solid", color="black", weight=3]; 3509[label="xuu33000",fontsize=16,color="green",shape="box"];3510[label="xuu34000",fontsize=16,color="green",shape="box"];3511[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3511 -> 3597[label="",style="solid", color="black", weight=3]; 3512[label="xuu33000",fontsize=16,color="green",shape="box"];3513[label="xuu34000",fontsize=16,color="green",shape="box"];3514[label="xuu33000",fontsize=16,color="green",shape="box"];3515[label="xuu34000",fontsize=16,color="green",shape="box"];3516 -> 1208[label="",style="dashed", color="red", weight=0]; 3516[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3516 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3517 -> 1208[label="",style="dashed", color="red", weight=0]; 3517[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3517 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3518 -> 1208[label="",style="dashed", color="red", weight=0]; 3518[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3518 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3519 -> 1208[label="",style="dashed", color="red", weight=0]; 3519[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3519 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3520 -> 1208[label="",style="dashed", color="red", weight=0]; 3520[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3520 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3521 -> 1208[label="",style="dashed", color="red", weight=0]; 3521[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3521 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3522 -> 1208[label="",style="dashed", color="red", weight=0]; 3522[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3522 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3523 -> 1208[label="",style="dashed", color="red", weight=0]; 3523[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3523 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3525[label="compare xuu33000 xuu34000",fontsize=16,color="blue",shape="box"];4654[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4654[label="",style="solid", color="blue", weight=9]; 4654 -> 3614[label="",style="solid", color="blue", weight=3]; 4655[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4655[label="",style="solid", color="blue", weight=9]; 4655 -> 3615[label="",style="solid", color="blue", weight=3]; 4656[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4656[label="",style="solid", color="blue", weight=9]; 4656 -> 3616[label="",style="solid", color="blue", weight=3]; 4657[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4657[label="",style="solid", color="blue", weight=9]; 4657 -> 3617[label="",style="solid", color="blue", weight=3]; 4658[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4658[label="",style="solid", color="blue", weight=9]; 4658 -> 3618[label="",style="solid", color="blue", weight=3]; 4659[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4659[label="",style="solid", color="blue", weight=9]; 4659 -> 3619[label="",style="solid", color="blue", weight=3]; 4660[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4660[label="",style="solid", color="blue", weight=9]; 4660 -> 3620[label="",style="solid", color="blue", weight=3]; 4661[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4661[label="",style="solid", color="blue", weight=9]; 4661 -> 3621[label="",style="solid", color="blue", weight=3]; 4662[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4662[label="",style="solid", color="blue", weight=9]; 4662 -> 3622[label="",style="solid", color="blue", weight=3]; 4663[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4663[label="",style="solid", color="blue", weight=9]; 4663 -> 3623[label="",style="solid", color="blue", weight=3]; 4664[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4664[label="",style="solid", color="blue", weight=9]; 4664 -> 3624[label="",style="solid", color="blue", weight=3]; 4665[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4665[label="",style="solid", color="blue", weight=9]; 4665 -> 3625[label="",style="solid", color="blue", weight=3]; 4666[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4666[label="",style="solid", color="blue", weight=9]; 4666 -> 3626[label="",style="solid", color="blue", weight=3]; 4667[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4667[label="",style="solid", color="blue", weight=9]; 4667 -> 3627[label="",style="solid", color="blue", weight=3]; 3526[label="xuu176",fontsize=16,color="green",shape="box"];3524[label="primCompAux0 xuu182 xuu183",fontsize=16,color="burlywood",shape="triangle"];4668[label="xuu183/LT",fontsize=10,color="white",style="solid",shape="box"];3524 -> 4668[label="",style="solid", color="burlywood", weight=9]; 4668 -> 3628[label="",style="solid", color="burlywood", weight=3]; 4669[label="xuu183/EQ",fontsize=10,color="white",style="solid",shape="box"];3524 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 3629[label="",style="solid", color="burlywood", weight=3]; 4670[label="xuu183/GT",fontsize=10,color="white",style="solid",shape="box"];3524 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 3630[label="",style="solid", color="burlywood", weight=3]; 3529[label="xuu33000",fontsize=16,color="green",shape="box"];3530[label="xuu34001",fontsize=16,color="green",shape="box"];3531[label="xuu34000",fontsize=16,color="green",shape="box"];3532[label="xuu33001",fontsize=16,color="green",shape="box"];3533[label="Integer xuu330000 * xuu34001",fontsize=16,color="burlywood",shape="box"];4671[label="xuu34001/Integer xuu340010",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 3653[label="",style="solid", color="burlywood", weight=3]; 3534[label="xuu33001",fontsize=16,color="green",shape="box"];3535[label="xuu34000",fontsize=16,color="green",shape="box"];1981[label="primCmpNat (Succ xuu3300) xuu340",fontsize=16,color="burlywood",shape="box"];4672[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1981 -> 4672[label="",style="solid", color="burlywood", weight=9]; 4672 -> 2207[label="",style="solid", color="burlywood", weight=3]; 4673[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1981 -> 4673[label="",style="solid", color="burlywood", weight=9]; 4673 -> 2208[label="",style="solid", color="burlywood", weight=3]; 1982[label="primCmpNat Zero xuu340",fontsize=16,color="burlywood",shape="box"];4674[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4674[label="",style="solid", color="burlywood", weight=9]; 4674 -> 2209[label="",style="solid", color="burlywood", weight=3]; 4675[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4675[label="",style="solid", color="burlywood", weight=9]; 4675 -> 2210[label="",style="solid", color="burlywood", weight=3]; 1873[label="primPlusInt (Pos xuu2820) (Pos xuu970)",fontsize=16,color="black",shape="box"];1873 -> 1991[label="",style="solid", color="black", weight=3]; 1874[label="primPlusInt (Pos xuu2820) (Neg xuu970)",fontsize=16,color="black",shape="box"];1874 -> 1992[label="",style="solid", color="black", weight=3]; 1875[label="primPlusInt (Neg xuu2820) (Pos xuu970)",fontsize=16,color="black",shape="box"];1875 -> 1993[label="",style="solid", color="black", weight=3]; 1876[label="primPlusInt (Neg xuu2820) (Neg xuu970)",fontsize=16,color="black",shape="box"];1876 -> 1994[label="",style="solid", color="black", weight=3]; 3843[label="xuu61",fontsize=16,color="green",shape="box"];3844[label="xuu64",fontsize=16,color="green",shape="box"];3845[label="Succ Zero",fontsize=16,color="green",shape="box"];3846[label="Just xuu600",fontsize=16,color="green",shape="box"];3847[label="xuu28",fontsize=16,color="green",shape="box"];1984 -> 2078[label="",style="dashed", color="red", weight=0]; 1984[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 (FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283)",fontsize=16,color="magenta"];1984 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1985[label="xuu643",fontsize=16,color="green",shape="box"];1986[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1987 -> 1526[label="",style="dashed", color="red", weight=0]; 1987[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1987 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1988[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];1988 -> 2114[label="",style="solid", color="black", weight=3]; 1989[label="FiniteMap.mkBalBranch6Single_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1989 -> 2115[label="",style="solid", color="black", weight=3]; 4052[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4053[label="FiniteMap.mkBranchLeft_size xuu212 xuu209 xuu211",fontsize=16,color="black",shape="box"];4053 -> 4056[label="",style="solid", color="black", weight=3]; 4054[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4054 -> 4057[label="",style="solid", color="black", weight=3]; 4055[label="FiniteMap.sizeFM (FiniteMap.Branch xuu2120 xuu2121 xuu2122 xuu2123 xuu2124)",fontsize=16,color="black",shape="box"];4055 -> 4058[label="",style="solid", color="black", weight=3]; 3848[label="xuu61",fontsize=16,color="green",shape="box"];3849[label="xuu64",fontsize=16,color="green",shape="box"];3850[label="Succ Zero",fontsize=16,color="green",shape="box"];3851[label="Nothing",fontsize=16,color="green",shape="box"];3852[label="xuu36",fontsize=16,color="green",shape="box"];1996 -> 2123[label="",style="dashed", color="red", weight=0]; 1996[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 (FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363)",fontsize=16,color="magenta"];1996 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1997[label="xuu643",fontsize=16,color="green",shape="box"];1998[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1999 -> 1526[label="",style="dashed", color="red", weight=0]; 1999[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1999 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2000[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];2000 -> 2182[label="",style="solid", color="black", weight=3]; 2001[label="FiniteMap.mkBalBranch6Single_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];2001 -> 2183[label="",style="solid", color="black", weight=3]; 1888 -> 2003[label="",style="dashed", color="red", weight=0]; 1888[label="primPlusNat (primMulNat xuu311000000 (Succ xuu600100)) (Succ xuu600100)",fontsize=16,color="magenta"];1888 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1889[label="Zero",fontsize=16,color="green",shape="box"];1890[label="Zero",fontsize=16,color="green",shape="box"];1891[label="Zero",fontsize=16,color="green",shape="box"];2005[label="xuu340",fontsize=16,color="green",shape="box"];2006[label="Succ xuu3300",fontsize=16,color="green",shape="box"];2007 -> 1861[label="",style="dashed", color="red", weight=0]; 2007[label="primCmpNat Zero (Succ xuu3400)",fontsize=16,color="magenta"];2007 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2008[label="EQ",fontsize=16,color="green",shape="box"];2009[label="GT",fontsize=16,color="green",shape="box"];2010[label="EQ",fontsize=16,color="green",shape="box"];2011[label="Succ xuu3300",fontsize=16,color="green",shape="box"];2012[label="xuu340",fontsize=16,color="green",shape="box"];2013[label="LT",fontsize=16,color="green",shape="box"];2014[label="EQ",fontsize=16,color="green",shape="box"];2015 -> 1861[label="",style="dashed", color="red", weight=0]; 2015[label="primCmpNat (Succ xuu3400) Zero",fontsize=16,color="magenta"];2015 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2016[label="EQ",fontsize=16,color="green",shape="box"];3536[label="xuu33002",fontsize=16,color="green",shape="box"];3537[label="xuu34002",fontsize=16,color="green",shape="box"];3538[label="xuu33002",fontsize=16,color="green",shape="box"];3539[label="xuu34002",fontsize=16,color="green",shape="box"];3540[label="xuu33002",fontsize=16,color="green",shape="box"];3541[label="xuu34002",fontsize=16,color="green",shape="box"];3542[label="xuu33002",fontsize=16,color="green",shape="box"];3543[label="xuu34002",fontsize=16,color="green",shape="box"];3544[label="xuu33002",fontsize=16,color="green",shape="box"];3545[label="xuu34002",fontsize=16,color="green",shape="box"];3546[label="xuu33002",fontsize=16,color="green",shape="box"];3547[label="xuu34002",fontsize=16,color="green",shape="box"];3548[label="xuu33002",fontsize=16,color="green",shape="box"];3549[label="xuu34002",fontsize=16,color="green",shape="box"];3550[label="xuu33002",fontsize=16,color="green",shape="box"];3551[label="xuu34002",fontsize=16,color="green",shape="box"];3552[label="xuu33002",fontsize=16,color="green",shape="box"];3553[label="xuu34002",fontsize=16,color="green",shape="box"];3554[label="xuu33002",fontsize=16,color="green",shape="box"];3555[label="xuu34002",fontsize=16,color="green",shape="box"];3556[label="xuu33002",fontsize=16,color="green",shape="box"];3557[label="xuu34002",fontsize=16,color="green",shape="box"];3558[label="xuu33002",fontsize=16,color="green",shape="box"];3559[label="xuu34002",fontsize=16,color="green",shape="box"];3560[label="xuu33002",fontsize=16,color="green",shape="box"];3561[label="xuu34002",fontsize=16,color="green",shape="box"];3562[label="xuu33002",fontsize=16,color="green",shape="box"];3563[label="xuu34002",fontsize=16,color="green",shape="box"];3564[label="xuu33001",fontsize=16,color="green",shape="box"];3565[label="xuu34001",fontsize=16,color="green",shape="box"];3566[label="xuu33001",fontsize=16,color="green",shape="box"];3567[label="xuu34001",fontsize=16,color="green",shape="box"];3568[label="xuu33001",fontsize=16,color="green",shape="box"];3569[label="xuu34001",fontsize=16,color="green",shape="box"];3570[label="xuu33001",fontsize=16,color="green",shape="box"];3571[label="xuu34001",fontsize=16,color="green",shape="box"];3572[label="xuu33001",fontsize=16,color="green",shape="box"];3573[label="xuu34001",fontsize=16,color="green",shape="box"];3574[label="xuu33001",fontsize=16,color="green",shape="box"];3575[label="xuu34001",fontsize=16,color="green",shape="box"];3576[label="xuu33001",fontsize=16,color="green",shape="box"];3577[label="xuu34001",fontsize=16,color="green",shape="box"];3578[label="xuu33001",fontsize=16,color="green",shape="box"];3579[label="xuu34001",fontsize=16,color="green",shape="box"];3580[label="xuu33001",fontsize=16,color="green",shape="box"];3581[label="xuu34001",fontsize=16,color="green",shape="box"];3582[label="xuu33001",fontsize=16,color="green",shape="box"];3583[label="xuu34001",fontsize=16,color="green",shape="box"];3584[label="xuu33001",fontsize=16,color="green",shape="box"];3585[label="xuu34001",fontsize=16,color="green",shape="box"];3586[label="xuu33001",fontsize=16,color="green",shape="box"];3587[label="xuu34001",fontsize=16,color="green",shape="box"];3588[label="xuu33001",fontsize=16,color="green",shape="box"];3589[label="xuu34001",fontsize=16,color="green",shape="box"];3590[label="xuu33001",fontsize=16,color="green",shape="box"];3591[label="xuu34001",fontsize=16,color="green",shape="box"];3592 -> 3654[label="",style="dashed", color="red", weight=0]; 3592[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3592 -> 3655[label="",style="dashed", color="magenta", weight=3]; 1774[label="xuu330",fontsize=16,color="green",shape="box"];1775[label="xuu340",fontsize=16,color="green",shape="box"];3593 -> 3659[label="",style="dashed", color="red", weight=0]; 3593[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3593 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3594 -> 3662[label="",style="dashed", color="red", weight=0]; 3594[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3594 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3595 -> 2023[label="",style="dashed", color="red", weight=0]; 3595[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3595 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3595 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3596 -> 3667[label="",style="dashed", color="red", weight=0]; 3596[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3596 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3597 -> 3669[label="",style="dashed", color="red", weight=0]; 3597[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3597 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3598 -> 617[label="",style="dashed", color="red", weight=0]; 3598[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3598 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3598 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3599 -> 617[label="",style="dashed", color="red", weight=0]; 3599[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3599 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3599 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3600 -> 617[label="",style="dashed", color="red", weight=0]; 3600[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3600 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3600 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3601 -> 617[label="",style="dashed", color="red", weight=0]; 3601[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3601 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3601 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3602 -> 617[label="",style="dashed", color="red", weight=0]; 3602[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3602 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3602 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3603 -> 617[label="",style="dashed", color="red", weight=0]; 3603[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3603 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3603 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3604 -> 617[label="",style="dashed", color="red", weight=0]; 3604[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3604 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3604 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3605 -> 617[label="",style="dashed", color="red", weight=0]; 3605[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3605 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3605 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3606 -> 617[label="",style="dashed", color="red", weight=0]; 3606[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3606 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3607 -> 617[label="",style="dashed", color="red", weight=0]; 3607[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3607 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3607 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3608 -> 617[label="",style="dashed", color="red", weight=0]; 3608[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3608 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3608 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3609 -> 617[label="",style="dashed", color="red", weight=0]; 3609[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3609 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3609 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3610 -> 617[label="",style="dashed", color="red", weight=0]; 3610[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3610 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3610 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3611 -> 617[label="",style="dashed", color="red", weight=0]; 3611[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3611 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3611 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3612 -> 617[label="",style="dashed", color="red", weight=0]; 3612[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3612 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3612 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3613 -> 617[label="",style="dashed", color="red", weight=0]; 3613[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3613 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3613 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3614 -> 3325[label="",style="dashed", color="red", weight=0]; 3614[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3614 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3614 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3615 -> 1208[label="",style="dashed", color="red", weight=0]; 3615[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3615 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3615 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3616 -> 3327[label="",style="dashed", color="red", weight=0]; 3616[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3616 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3616 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3617 -> 2874[label="",style="dashed", color="red", weight=0]; 3617[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3617 -> 3709[label="",style="dashed", color="magenta", weight=3]; 3617 -> 3710[label="",style="dashed", color="magenta", weight=3]; 3618 -> 2875[label="",style="dashed", color="red", weight=0]; 3618[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3618 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3618 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3619 -> 2876[label="",style="dashed", color="red", weight=0]; 3619[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3619 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3619 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3620 -> 3335[label="",style="dashed", color="red", weight=0]; 3620[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3620 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3620 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3621 -> 2877[label="",style="dashed", color="red", weight=0]; 3621[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3621 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3621 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3622 -> 3339[label="",style="dashed", color="red", weight=0]; 3622[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3622 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3622 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3623 -> 3341[label="",style="dashed", color="red", weight=0]; 3623[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3623 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3623 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3624 -> 2878[label="",style="dashed", color="red", weight=0]; 3624[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3624 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3624 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3625 -> 3345[label="",style="dashed", color="red", weight=0]; 3625[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3625 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3625 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3626 -> 2879[label="",style="dashed", color="red", weight=0]; 3626[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3626 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3627 -> 2880[label="",style="dashed", color="red", weight=0]; 3627[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3627 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3627 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3628[label="primCompAux0 xuu182 LT",fontsize=16,color="black",shape="box"];3628 -> 3731[label="",style="solid", color="black", weight=3]; 3629[label="primCompAux0 xuu182 EQ",fontsize=16,color="black",shape="box"];3629 -> 3732[label="",style="solid", color="black", weight=3]; 3630[label="primCompAux0 xuu182 GT",fontsize=16,color="black",shape="box"];3630 -> 3733[label="",style="solid", color="black", weight=3]; 3653[label="Integer xuu330000 * Integer xuu340010",fontsize=16,color="black",shape="box"];3653 -> 3734[label="",style="solid", color="black", weight=3]; 2207[label="primCmpNat (Succ xuu3300) (Succ xuu3400)",fontsize=16,color="black",shape="box"];2207 -> 2270[label="",style="solid", color="black", weight=3]; 2208[label="primCmpNat (Succ xuu3300) Zero",fontsize=16,color="black",shape="box"];2208 -> 2271[label="",style="solid", color="black", weight=3]; 2209[label="primCmpNat Zero (Succ xuu3400)",fontsize=16,color="black",shape="box"];2209 -> 2272[label="",style="solid", color="black", weight=3]; 2210[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2210 -> 2273[label="",style="solid", color="black", weight=3]; 1991[label="Pos (primPlusNat xuu2820 xuu970)",fontsize=16,color="green",shape="box"];1991 -> 2117[label="",style="dashed", color="green", weight=3]; 1992[label="primMinusNat xuu2820 xuu970",fontsize=16,color="burlywood",shape="triangle"];4676[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];1992 -> 4676[label="",style="solid", color="burlywood", weight=9]; 4676 -> 2118[label="",style="solid", color="burlywood", weight=3]; 4677[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];1992 -> 4677[label="",style="solid", color="burlywood", weight=9]; 4677 -> 2119[label="",style="solid", color="burlywood", weight=3]; 1993 -> 1992[label="",style="dashed", color="red", weight=0]; 1993[label="primMinusNat xuu970 xuu2820",fontsize=16,color="magenta"];1993 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1994[label="Neg (primPlusNat xuu2820 xuu970)",fontsize=16,color="green",shape="box"];1994 -> 2122[label="",style="dashed", color="green", weight=3]; 2079 -> 1333[label="",style="dashed", color="red", weight=0]; 2079[label="FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2079 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2078[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 xuu112",fontsize=16,color="burlywood",shape="triangle"];4678[label="xuu112/False",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 2187[label="",style="solid", color="burlywood", weight=3]; 4679[label="xuu112/True",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4679[label="",style="solid", color="burlywood", weight=9]; 4679 -> 2188[label="",style="solid", color="burlywood", weight=3]; 2113[label="xuu644",fontsize=16,color="green",shape="box"];2114[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2114 -> 2189[label="",style="solid", color="black", weight=3]; 2115 -> 3832[label="",style="dashed", color="red", weight=0]; 2115[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu600) xuu61 xuu28 xuu643) xuu644",fontsize=16,color="magenta"];2115 -> 3853[label="",style="dashed", color="magenta", weight=3]; 2115 -> 3854[label="",style="dashed", color="magenta", weight=3]; 2115 -> 3855[label="",style="dashed", color="magenta", weight=3]; 2115 -> 3856[label="",style="dashed", color="magenta", weight=3]; 2115 -> 3857[label="",style="dashed", color="magenta", weight=3]; 4056 -> 4051[label="",style="dashed", color="red", weight=0]; 4056[label="FiniteMap.sizeFM xuu211",fontsize=16,color="magenta"];4056 -> 4059[label="",style="dashed", color="magenta", weight=3]; 4057[label="Pos Zero",fontsize=16,color="green",shape="box"];4058[label="xuu2122",fontsize=16,color="green",shape="box"];2124 -> 1333[label="",style="dashed", color="red", weight=0]; 2124[label="FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2124 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2123[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 xuu116",fontsize=16,color="burlywood",shape="triangle"];4680[label="xuu116/False",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4680[label="",style="solid", color="burlywood", weight=9]; 4680 -> 2201[label="",style="solid", color="burlywood", weight=3]; 4681[label="xuu116/True",fontsize=10,color="white",style="solid",shape="box"];2123 -> 4681[label="",style="solid", color="burlywood", weight=9]; 4681 -> 2202[label="",style="solid", color="burlywood", weight=3]; 2181[label="xuu644",fontsize=16,color="green",shape="box"];2182[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2182 -> 2247[label="",style="solid", color="black", weight=3]; 2183 -> 3832[label="",style="dashed", color="red", weight=0]; 2183[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu61 xuu36 xuu643) xuu644",fontsize=16,color="magenta"];2183 -> 3858[label="",style="dashed", color="magenta", weight=3]; 2183 -> 3859[label="",style="dashed", color="magenta", weight=3]; 2183 -> 3860[label="",style="dashed", color="magenta", weight=3]; 2183 -> 3861[label="",style="dashed", color="magenta", weight=3]; 2183 -> 3862[label="",style="dashed", color="magenta", weight=3]; 2004 -> 1399[label="",style="dashed", color="red", weight=0]; 2004[label="primMulNat xuu311000000 (Succ xuu600100)",fontsize=16,color="magenta"];2004 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2117[label="",style="dashed", color="red", weight=0]; 2003[label="primPlusNat xuu107 (Succ xuu600100)",fontsize=16,color="magenta"];2003 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2203[label="Succ xuu3400",fontsize=16,color="green",shape="box"];2204[label="Zero",fontsize=16,color="green",shape="box"];2205[label="Zero",fontsize=16,color="green",shape="box"];2206[label="Succ xuu3400",fontsize=16,color="green",shape="box"];3655 -> 2067[label="",style="dashed", color="red", weight=0]; 3655[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3655 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3655 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3654[label="compare2 xuu33000 xuu34000 xuu193",fontsize=16,color="burlywood",shape="triangle"];4682[label="xuu193/False",fontsize=10,color="white",style="solid",shape="box"];3654 -> 4682[label="",style="solid", color="burlywood", weight=9]; 4682 -> 3738[label="",style="solid", color="burlywood", weight=3]; 4683[label="xuu193/True",fontsize=10,color="white",style="solid",shape="box"];3654 -> 4683[label="",style="solid", color="burlywood", weight=9]; 4683 -> 3739[label="",style="solid", color="burlywood", weight=3]; 3660 -> 2063[label="",style="dashed", color="red", weight=0]; 3660[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3660 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3660 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3659[label="compare2 xuu33000 xuu34000 xuu194",fontsize=16,color="burlywood",shape="triangle"];4684[label="xuu194/False",fontsize=10,color="white",style="solid",shape="box"];3659 -> 4684[label="",style="solid", color="burlywood", weight=9]; 4684 -> 3742[label="",style="solid", color="burlywood", weight=3]; 4685[label="xuu194/True",fontsize=10,color="white",style="solid",shape="box"];3659 -> 4685[label="",style="solid", color="burlywood", weight=9]; 4685 -> 3743[label="",style="solid", color="burlywood", weight=3]; 3663 -> 86[label="",style="dashed", color="red", weight=0]; 3663[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3663 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3663 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3662[label="compare2 xuu33000 xuu34000 xuu195",fontsize=16,color="burlywood",shape="triangle"];4686[label="xuu195/False",fontsize=10,color="white",style="solid",shape="box"];3662 -> 4686[label="",style="solid", color="burlywood", weight=9]; 4686 -> 3746[label="",style="solid", color="burlywood", weight=3]; 4687[label="xuu195/True",fontsize=10,color="white",style="solid",shape="box"];3662 -> 4687[label="",style="solid", color="burlywood", weight=9]; 4687 -> 3747[label="",style="solid", color="burlywood", weight=3]; 3664[label="xuu33000",fontsize=16,color="green",shape="box"];3665 -> 2072[label="",style="dashed", color="red", weight=0]; 3665[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3665 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3665 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3666[label="xuu34000",fontsize=16,color="green",shape="box"];3668 -> 2062[label="",style="dashed", color="red", weight=0]; 3668[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3668 -> 3750[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3751[label="",style="dashed", color="magenta", weight=3]; 3667[label="compare2 xuu33000 xuu34000 xuu196",fontsize=16,color="burlywood",shape="triangle"];4688[label="xuu196/False",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4688[label="",style="solid", color="burlywood", weight=9]; 4688 -> 3752[label="",style="solid", color="burlywood", weight=3]; 4689[label="xuu196/True",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4689[label="",style="solid", color="burlywood", weight=9]; 4689 -> 3753[label="",style="solid", color="burlywood", weight=3]; 3670 -> 2066[label="",style="dashed", color="red", weight=0]; 3670[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3670 -> 3754[label="",style="dashed", color="magenta", weight=3]; 3670 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3669[label="compare2 xuu33000 xuu34000 xuu197",fontsize=16,color="burlywood",shape="triangle"];4690[label="xuu197/False",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4690[label="",style="solid", color="burlywood", weight=9]; 4690 -> 3756[label="",style="solid", color="burlywood", weight=3]; 4691[label="xuu197/True",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4691[label="",style="solid", color="burlywood", weight=9]; 4691 -> 3757[label="",style="solid", color="burlywood", weight=3]; 3671[label="xuu33000",fontsize=16,color="green",shape="box"];3672[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3673[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3674[label="xuu34000",fontsize=16,color="green",shape="box"];3675[label="xuu33000",fontsize=16,color="green",shape="box"];3676[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3677[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3678[label="xuu34000",fontsize=16,color="green",shape="box"];3679[label="xuu33000",fontsize=16,color="green",shape="box"];3680[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3681[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3682[label="xuu34000",fontsize=16,color="green",shape="box"];3683[label="xuu33000",fontsize=16,color="green",shape="box"];3684[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3685[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3686[label="xuu34000",fontsize=16,color="green",shape="box"];3687[label="xuu33000",fontsize=16,color="green",shape="box"];3688[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3689[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3690[label="xuu34000",fontsize=16,color="green",shape="box"];3691[label="xuu33000",fontsize=16,color="green",shape="box"];3692[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3693[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3694[label="xuu34000",fontsize=16,color="green",shape="box"];3695[label="xuu33000",fontsize=16,color="green",shape="box"];3696[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3697[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3698[label="xuu34000",fontsize=16,color="green",shape="box"];3699[label="xuu33000",fontsize=16,color="green",shape="box"];3700[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3701[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3702[label="xuu34000",fontsize=16,color="green",shape="box"];3703[label="xuu33000",fontsize=16,color="green",shape="box"];3704[label="xuu34000",fontsize=16,color="green",shape="box"];3705[label="xuu33000",fontsize=16,color="green",shape="box"];3706[label="xuu34000",fontsize=16,color="green",shape="box"];3707[label="xuu33000",fontsize=16,color="green",shape="box"];3708[label="xuu34000",fontsize=16,color="green",shape="box"];3709[label="xuu33000",fontsize=16,color="green",shape="box"];3710[label="xuu34000",fontsize=16,color="green",shape="box"];3711[label="xuu33000",fontsize=16,color="green",shape="box"];3712[label="xuu34000",fontsize=16,color="green",shape="box"];3713[label="xuu33000",fontsize=16,color="green",shape="box"];3714[label="xuu34000",fontsize=16,color="green",shape="box"];3715[label="xuu33000",fontsize=16,color="green",shape="box"];3716[label="xuu34000",fontsize=16,color="green",shape="box"];3717[label="xuu33000",fontsize=16,color="green",shape="box"];3718[label="xuu34000",fontsize=16,color="green",shape="box"];3719[label="xuu33000",fontsize=16,color="green",shape="box"];3720[label="xuu34000",fontsize=16,color="green",shape="box"];3721[label="xuu33000",fontsize=16,color="green",shape="box"];3722[label="xuu34000",fontsize=16,color="green",shape="box"];3723[label="xuu33000",fontsize=16,color="green",shape="box"];3724[label="xuu34000",fontsize=16,color="green",shape="box"];3725[label="xuu33000",fontsize=16,color="green",shape="box"];3726[label="xuu34000",fontsize=16,color="green",shape="box"];3727[label="xuu33000",fontsize=16,color="green",shape="box"];3728[label="xuu34000",fontsize=16,color="green",shape="box"];3729[label="xuu33000",fontsize=16,color="green",shape="box"];3730[label="xuu34000",fontsize=16,color="green",shape="box"];3731[label="LT",fontsize=16,color="green",shape="box"];3732[label="xuu182",fontsize=16,color="green",shape="box"];3733[label="GT",fontsize=16,color="green",shape="box"];3734[label="Integer (primMulInt xuu330000 xuu340010)",fontsize=16,color="green",shape="box"];3734 -> 3771[label="",style="dashed", color="green", weight=3]; 2270 -> 1861[label="",style="dashed", color="red", weight=0]; 2270[label="primCmpNat xuu3300 xuu3400",fontsize=16,color="magenta"];2270 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2271[label="GT",fontsize=16,color="green",shape="box"];2272[label="LT",fontsize=16,color="green",shape="box"];2273[label="EQ",fontsize=16,color="green",shape="box"];2117[label="primPlusNat xuu2820 xuu970",fontsize=16,color="burlywood",shape="triangle"];4692[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];2117 -> 4692[label="",style="solid", color="burlywood", weight=9]; 4692 -> 2191[label="",style="solid", color="burlywood", weight=3]; 4693[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];2117 -> 4693[label="",style="solid", color="burlywood", weight=9]; 4693 -> 2192[label="",style="solid", color="burlywood", weight=3]; 2118[label="primMinusNat (Succ xuu28200) xuu970",fontsize=16,color="burlywood",shape="box"];4694[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4694[label="",style="solid", color="burlywood", weight=9]; 4694 -> 2193[label="",style="solid", color="burlywood", weight=3]; 4695[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4695[label="",style="solid", color="burlywood", weight=9]; 4695 -> 2194[label="",style="solid", color="burlywood", weight=3]; 2119[label="primMinusNat Zero xuu970",fontsize=16,color="burlywood",shape="box"];4696[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2119 -> 4696[label="",style="solid", color="burlywood", weight=9]; 4696 -> 2195[label="",style="solid", color="burlywood", weight=3]; 4697[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2119 -> 4697[label="",style="solid", color="burlywood", weight=9]; 4697 -> 2196[label="",style="solid", color="burlywood", weight=3]; 2120[label="xuu2820",fontsize=16,color="green",shape="box"];2121[label="xuu970",fontsize=16,color="green",shape="box"];2122 -> 2117[label="",style="dashed", color="red", weight=0]; 2122[label="primPlusNat xuu2820 xuu970",fontsize=16,color="magenta"];2122 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1526[label="",style="dashed", color="red", weight=0]; 2185[label="FiniteMap.sizeFM xuu284",fontsize=16,color="magenta"];2185 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2186 -> 617[label="",style="dashed", color="red", weight=0]; 2186[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2186 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2187[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 False",fontsize=16,color="black",shape="box"];2187 -> 2252[label="",style="solid", color="black", weight=3]; 2188[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2188 -> 2253[label="",style="solid", color="black", weight=3]; 2189[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4698[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4698[label="",style="solid", color="burlywood", weight=9]; 4698 -> 2254[label="",style="solid", color="burlywood", weight=3]; 4699[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4699[label="",style="solid", color="burlywood", weight=9]; 4699 -> 2255[label="",style="solid", color="burlywood", weight=3]; 3853[label="xuu641",fontsize=16,color="green",shape="box"];3854[label="xuu644",fontsize=16,color="green",shape="box"];3855[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3856[label="xuu640",fontsize=16,color="green",shape="box"];3857 -> 3832[label="",style="dashed", color="red", weight=0]; 3857[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu600) xuu61 xuu28 xuu643",fontsize=16,color="magenta"];3857 -> 3964[label="",style="dashed", color="magenta", weight=3]; 3857 -> 3965[label="",style="dashed", color="magenta", weight=3]; 3857 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3857 -> 3967[label="",style="dashed", color="magenta", weight=3]; 3857 -> 3968[label="",style="dashed", color="magenta", weight=3]; 4059[label="xuu211",fontsize=16,color="green",shape="box"];2199 -> 1526[label="",style="dashed", color="red", weight=0]; 2199[label="FiniteMap.sizeFM xuu364",fontsize=16,color="magenta"];2199 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2200 -> 617[label="",style="dashed", color="red", weight=0]; 2200[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2200 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2201[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 False",fontsize=16,color="black",shape="box"];2201 -> 2268[label="",style="solid", color="black", weight=3]; 2202[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2202 -> 2269[label="",style="solid", color="black", weight=3]; 2247[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4700[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2247 -> 4700[label="",style="solid", color="burlywood", weight=9]; 4700 -> 2579[label="",style="solid", color="burlywood", weight=3]; 4701[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2247 -> 4701[label="",style="solid", color="burlywood", weight=9]; 4701 -> 2580[label="",style="solid", color="burlywood", weight=3]; 3858[label="xuu641",fontsize=16,color="green",shape="box"];3859[label="xuu644",fontsize=16,color="green",shape="box"];3860[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3861[label="xuu640",fontsize=16,color="green",shape="box"];3862 -> 3832[label="",style="dashed", color="red", weight=0]; 3862[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu61 xuu36 xuu643",fontsize=16,color="magenta"];3862 -> 3969[label="",style="dashed", color="magenta", weight=3]; 3862 -> 3970[label="",style="dashed", color="magenta", weight=3]; 3862 -> 3971[label="",style="dashed", color="magenta", weight=3]; 3862 -> 3972[label="",style="dashed", color="magenta", weight=3]; 3862 -> 3973[label="",style="dashed", color="magenta", weight=3]; 2211[label="Succ xuu600100",fontsize=16,color="green",shape="box"];2212[label="xuu311000000",fontsize=16,color="green",shape="box"];2213[label="Succ xuu600100",fontsize=16,color="green",shape="box"];2214[label="xuu107",fontsize=16,color="green",shape="box"];3736[label="xuu33000",fontsize=16,color="green",shape="box"];3737[label="xuu34000",fontsize=16,color="green",shape="box"];3738[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3738 -> 3772[label="",style="solid", color="black", weight=3]; 3739[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3739 -> 3773[label="",style="solid", color="black", weight=3]; 3740[label="xuu33000",fontsize=16,color="green",shape="box"];3741[label="xuu34000",fontsize=16,color="green",shape="box"];3742[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3742 -> 3774[label="",style="solid", color="black", weight=3]; 3743[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3743 -> 3775[label="",style="solid", color="black", weight=3]; 3744[label="xuu33000",fontsize=16,color="green",shape="box"];3745[label="xuu34000",fontsize=16,color="green",shape="box"];3746[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3746 -> 3776[label="",style="solid", color="black", weight=3]; 3747[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3747 -> 3777[label="",style="solid", color="black", weight=3]; 3748[label="xuu33000",fontsize=16,color="green",shape="box"];3749[label="xuu34000",fontsize=16,color="green",shape="box"];3750[label="xuu33000",fontsize=16,color="green",shape="box"];3751[label="xuu34000",fontsize=16,color="green",shape="box"];3752[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3752 -> 3778[label="",style="solid", color="black", weight=3]; 3753[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3753 -> 3779[label="",style="solid", color="black", weight=3]; 3754[label="xuu33000",fontsize=16,color="green",shape="box"];3755[label="xuu34000",fontsize=16,color="green",shape="box"];3756[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3756 -> 3780[label="",style="solid", color="black", weight=3]; 3757[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3757 -> 3781[label="",style="solid", color="black", weight=3]; 3771 -> 903[label="",style="dashed", color="red", weight=0]; 3771[label="primMulInt xuu330000 xuu340010",fontsize=16,color="magenta"];3771 -> 3799[label="",style="dashed", color="magenta", weight=3]; 3771 -> 3800[label="",style="dashed", color="magenta", weight=3]; 2598[label="xuu3400",fontsize=16,color="green",shape="box"];2599[label="xuu3300",fontsize=16,color="green",shape="box"];2191[label="primPlusNat (Succ xuu28200) xuu970",fontsize=16,color="burlywood",shape="box"];4702[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4702[label="",style="solid", color="burlywood", weight=9]; 4702 -> 2257[label="",style="solid", color="burlywood", weight=3]; 4703[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4703[label="",style="solid", color="burlywood", weight=9]; 4703 -> 2258[label="",style="solid", color="burlywood", weight=3]; 2192[label="primPlusNat Zero xuu970",fontsize=16,color="burlywood",shape="box"];4704[label="xuu970/Succ xuu9700",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4704[label="",style="solid", color="burlywood", weight=9]; 4704 -> 2259[label="",style="solid", color="burlywood", weight=3]; 4705[label="xuu970/Zero",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4705[label="",style="solid", color="burlywood", weight=9]; 4705 -> 2260[label="",style="solid", color="burlywood", weight=3]; 2193[label="primMinusNat (Succ xuu28200) (Succ xuu9700)",fontsize=16,color="black",shape="box"];2193 -> 2261[label="",style="solid", color="black", weight=3]; 2194[label="primMinusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2194 -> 2262[label="",style="solid", color="black", weight=3]; 2195[label="primMinusNat Zero (Succ xuu9700)",fontsize=16,color="black",shape="box"];2195 -> 2263[label="",style="solid", color="black", weight=3]; 2196[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2196 -> 2264[label="",style="solid", color="black", weight=3]; 2197[label="xuu970",fontsize=16,color="green",shape="box"];2198[label="xuu2820",fontsize=16,color="green",shape="box"];2249[label="xuu284",fontsize=16,color="green",shape="box"];2250[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2251 -> 1526[label="",style="dashed", color="red", weight=0]; 2251[label="FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2251 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2252[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 otherwise",fontsize=16,color="black",shape="box"];2252 -> 2583[label="",style="solid", color="black", weight=3]; 2253[label="FiniteMap.mkBalBranch6Single_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="black",shape="box"];2253 -> 2584[label="",style="solid", color="black", weight=3]; 2254[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];2254 -> 2585[label="",style="solid", color="black", weight=3]; 2255[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];2255 -> 2586[label="",style="solid", color="black", weight=3]; 3964[label="xuu61",fontsize=16,color="green",shape="box"];3965[label="xuu643",fontsize=16,color="green",shape="box"];3966[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3967[label="Just xuu600",fontsize=16,color="green",shape="box"];3968[label="xuu28",fontsize=16,color="green",shape="box"];2265[label="xuu364",fontsize=16,color="green",shape="box"];2266[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2267 -> 1526[label="",style="dashed", color="red", weight=0]; 2267[label="FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2267 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2268[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 otherwise",fontsize=16,color="black",shape="box"];2268 -> 2596[label="",style="solid", color="black", weight=3]; 2269[label="FiniteMap.mkBalBranch6Single_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="black",shape="box"];2269 -> 2597[label="",style="solid", color="black", weight=3]; 2579[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];2579 -> 2794[label="",style="solid", color="black", weight=3]; 2580[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];2580 -> 2795[label="",style="solid", color="black", weight=3]; 3969[label="xuu61",fontsize=16,color="green",shape="box"];3970[label="xuu643",fontsize=16,color="green",shape="box"];3971[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3972[label="Nothing",fontsize=16,color="green",shape="box"];3973[label="xuu36",fontsize=16,color="green",shape="box"];3772 -> 3801[label="",style="dashed", color="red", weight=0]; 3772[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3772 -> 3802[label="",style="dashed", color="magenta", weight=3]; 3773[label="EQ",fontsize=16,color="green",shape="box"];3774 -> 3803[label="",style="dashed", color="red", weight=0]; 3774[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3774 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3775[label="EQ",fontsize=16,color="green",shape="box"];3776 -> 3805[label="",style="dashed", color="red", weight=0]; 3776[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3776 -> 3806[label="",style="dashed", color="magenta", weight=3]; 3777[label="EQ",fontsize=16,color="green",shape="box"];3778 -> 3807[label="",style="dashed", color="red", weight=0]; 3778[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3778 -> 3808[label="",style="dashed", color="magenta", weight=3]; 3779[label="EQ",fontsize=16,color="green",shape="box"];3780 -> 3809[label="",style="dashed", color="red", weight=0]; 3780[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3780 -> 3810[label="",style="dashed", color="magenta", weight=3]; 3781[label="EQ",fontsize=16,color="green",shape="box"];3799[label="xuu330000",fontsize=16,color="green",shape="box"];3800[label="xuu340010",fontsize=16,color="green",shape="box"];2257[label="primPlusNat (Succ xuu28200) (Succ xuu9700)",fontsize=16,color="black",shape="box"];2257 -> 2589[label="",style="solid", color="black", weight=3]; 2258[label="primPlusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2258 -> 2590[label="",style="solid", color="black", weight=3]; 2259[label="primPlusNat Zero (Succ xuu9700)",fontsize=16,color="black",shape="box"];2259 -> 2591[label="",style="solid", color="black", weight=3]; 2260[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2260 -> 2592[label="",style="solid", color="black", weight=3]; 2261 -> 1992[label="",style="dashed", color="red", weight=0]; 2261[label="primMinusNat xuu28200 xuu9700",fontsize=16,color="magenta"];2261 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2262[label="Pos (Succ xuu28200)",fontsize=16,color="green",shape="box"];2263[label="Neg (Succ xuu9700)",fontsize=16,color="green",shape="box"];2264[label="Pos Zero",fontsize=16,color="green",shape="box"];2582[label="xuu283",fontsize=16,color="green",shape="box"];2583[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2583 -> 2798[label="",style="solid", color="black", weight=3]; 2584 -> 3832[label="",style="dashed", color="red", weight=0]; 2584[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu280 xuu281 xuu283 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu600) xuu61 xuu284 xuu64)",fontsize=16,color="magenta"];2584 -> 3863[label="",style="dashed", color="magenta", weight=3]; 2584 -> 3864[label="",style="dashed", color="magenta", weight=3]; 2584 -> 3865[label="",style="dashed", color="magenta", weight=3]; 2584 -> 3866[label="",style="dashed", color="magenta", weight=3]; 2584 -> 3867[label="",style="dashed", color="magenta", weight=3]; 2585[label="error []",fontsize=16,color="red",shape="box"];2586 -> 3832[label="",style="dashed", color="red", weight=0]; 2586[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu600) xuu61 xuu28 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];2586 -> 3868[label="",style="dashed", color="magenta", weight=3]; 2586 -> 3869[label="",style="dashed", color="magenta", weight=3]; 2586 -> 3870[label="",style="dashed", color="magenta", weight=3]; 2586 -> 3871[label="",style="dashed", color="magenta", weight=3]; 2586 -> 3872[label="",style="dashed", color="magenta", weight=3]; 2595[label="xuu363",fontsize=16,color="green",shape="box"];2596[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2596 -> 2922[label="",style="solid", color="black", weight=3]; 2597 -> 3832[label="",style="dashed", color="red", weight=0]; 2597[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu360 xuu361 xuu363 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu61 xuu364 xuu64)",fontsize=16,color="magenta"];2597 -> 3878[label="",style="dashed", color="magenta", weight=3]; 2597 -> 3879[label="",style="dashed", color="magenta", weight=3]; 2597 -> 3880[label="",style="dashed", color="magenta", weight=3]; 2597 -> 3881[label="",style="dashed", color="magenta", weight=3]; 2597 -> 3882[label="",style="dashed", color="magenta", weight=3]; 2794[label="error []",fontsize=16,color="red",shape="box"];2795 -> 3832[label="",style="dashed", color="red", weight=0]; 2795[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu61 xuu36 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];2795 -> 3883[label="",style="dashed", color="magenta", weight=3]; 2795 -> 3884[label="",style="dashed", color="magenta", weight=3]; 2795 -> 3885[label="",style="dashed", color="magenta", weight=3]; 2795 -> 3886[label="",style="dashed", color="magenta", weight=3]; 2795 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3802 -> 2559[label="",style="dashed", color="red", weight=0]; 3802[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3802 -> 3811[label="",style="dashed", color="magenta", weight=3]; 3802 -> 3812[label="",style="dashed", color="magenta", weight=3]; 3801[label="compare1 xuu33000 xuu34000 xuu202",fontsize=16,color="burlywood",shape="triangle"];4706[label="xuu202/False",fontsize=10,color="white",style="solid",shape="box"];3801 -> 4706[label="",style="solid", color="burlywood", weight=9]; 4706 -> 3813[label="",style="solid", color="burlywood", weight=3]; 4707[label="xuu202/True",fontsize=10,color="white",style="solid",shape="box"];3801 -> 4707[label="",style="solid", color="burlywood", weight=9]; 4707 -> 3814[label="",style="solid", color="burlywood", weight=3]; 3804 -> 2561[label="",style="dashed", color="red", weight=0]; 3804[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3804 -> 3815[label="",style="dashed", color="magenta", weight=3]; 3804 -> 3816[label="",style="dashed", color="magenta", weight=3]; 3803[label="compare1 xuu33000 xuu34000 xuu203",fontsize=16,color="burlywood",shape="triangle"];4708[label="xuu203/False",fontsize=10,color="white",style="solid",shape="box"];3803 -> 4708[label="",style="solid", color="burlywood", weight=9]; 4708 -> 3817[label="",style="solid", color="burlywood", weight=3]; 4709[label="xuu203/True",fontsize=10,color="white",style="solid",shape="box"];3803 -> 4709[label="",style="solid", color="burlywood", weight=9]; 4709 -> 3818[label="",style="solid", color="burlywood", weight=3]; 3806 -> 2565[label="",style="dashed", color="red", weight=0]; 3806[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3806 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3820[label="",style="dashed", color="magenta", weight=3]; 3805[label="compare1 xuu33000 xuu34000 xuu204",fontsize=16,color="burlywood",shape="triangle"];4710[label="xuu204/False",fontsize=10,color="white",style="solid",shape="box"];3805 -> 4710[label="",style="solid", color="burlywood", weight=9]; 4710 -> 3821[label="",style="solid", color="burlywood", weight=3]; 4711[label="xuu204/True",fontsize=10,color="white",style="solid",shape="box"];3805 -> 4711[label="",style="solid", color="burlywood", weight=9]; 4711 -> 3822[label="",style="solid", color="burlywood", weight=3]; 3808 -> 2568[label="",style="dashed", color="red", weight=0]; 3808[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3808 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3808 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3807[label="compare1 xuu33000 xuu34000 xuu205",fontsize=16,color="burlywood",shape="triangle"];4712[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];3807 -> 4712[label="",style="solid", color="burlywood", weight=9]; 4712 -> 3825[label="",style="solid", color="burlywood", weight=3]; 4713[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];3807 -> 4713[label="",style="solid", color="burlywood", weight=9]; 4713 -> 3826[label="",style="solid", color="burlywood", weight=3]; 3810 -> 2570[label="",style="dashed", color="red", weight=0]; 3810[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3810 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3810 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3809[label="compare1 xuu33000 xuu34000 xuu206",fontsize=16,color="burlywood",shape="triangle"];4714[label="xuu206/False",fontsize=10,color="white",style="solid",shape="box"];3809 -> 4714[label="",style="solid", color="burlywood", weight=9]; 4714 -> 3829[label="",style="solid", color="burlywood", weight=3]; 4715[label="xuu206/True",fontsize=10,color="white",style="solid",shape="box"];3809 -> 4715[label="",style="solid", color="burlywood", weight=9]; 4715 -> 3830[label="",style="solid", color="burlywood", weight=3]; 2589[label="Succ (Succ (primPlusNat xuu28200 xuu9700))",fontsize=16,color="green",shape="box"];2589 -> 2921[label="",style="dashed", color="green", weight=3]; 2590[label="Succ xuu28200",fontsize=16,color="green",shape="box"];2591[label="Succ xuu9700",fontsize=16,color="green",shape="box"];2592[label="Zero",fontsize=16,color="green",shape="box"];2593[label="xuu9700",fontsize=16,color="green",shape="box"];2594[label="xuu28200",fontsize=16,color="green",shape="box"];2798[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="burlywood",shape="box"];4716[label="xuu284/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4716[label="",style="solid", color="burlywood", weight=9]; 4716 -> 3160[label="",style="solid", color="burlywood", weight=3]; 4717[label="xuu284/FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4717[label="",style="solid", color="burlywood", weight=9]; 4717 -> 3161[label="",style="solid", color="burlywood", weight=3]; 3863[label="xuu281",fontsize=16,color="green",shape="box"];3864 -> 3832[label="",style="dashed", color="red", weight=0]; 3864[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu600) xuu61 xuu284 xuu64",fontsize=16,color="magenta"];3864 -> 3974[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3975[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3864 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3865[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3866[label="xuu280",fontsize=16,color="green",shape="box"];3867[label="xuu283",fontsize=16,color="green",shape="box"];3868[label="xuu6431",fontsize=16,color="green",shape="box"];3869 -> 3832[label="",style="dashed", color="red", weight=0]; 3869[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3869 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3869 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3870[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3871[label="xuu6430",fontsize=16,color="green",shape="box"];3872 -> 3832[label="",style="dashed", color="red", weight=0]; 3872[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu600) xuu61 xuu28 xuu6433",fontsize=16,color="magenta"];3872 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3872 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3872 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3872 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3872 -> 3988[label="",style="dashed", color="magenta", weight=3]; 2922[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="burlywood",shape="box"];4718[label="xuu364/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4718[label="",style="solid", color="burlywood", weight=9]; 4718 -> 3632[label="",style="solid", color="burlywood", weight=3]; 4719[label="xuu364/FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4719[label="",style="solid", color="burlywood", weight=9]; 4719 -> 3633[label="",style="solid", color="burlywood", weight=3]; 3878[label="xuu361",fontsize=16,color="green",shape="box"];3879 -> 3832[label="",style="dashed", color="red", weight=0]; 3879[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu61 xuu364 xuu64",fontsize=16,color="magenta"];3879 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3879 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3879 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3879 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3879 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3880[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3881[label="xuu360",fontsize=16,color="green",shape="box"];3882[label="xuu363",fontsize=16,color="green",shape="box"];3883[label="xuu6431",fontsize=16,color="green",shape="box"];3884 -> 3832[label="",style="dashed", color="red", weight=0]; 3884[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3884 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3884 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3884 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3884 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3884 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3885[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3886[label="xuu6430",fontsize=16,color="green",shape="box"];3887 -> 3832[label="",style="dashed", color="red", weight=0]; 3887[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu61 xuu36 xuu6433",fontsize=16,color="magenta"];3887 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3887 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3887 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3887 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3887 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3811[label="xuu33000",fontsize=16,color="green",shape="box"];3812[label="xuu34000",fontsize=16,color="green",shape="box"];3813[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3813 -> 4004[label="",style="solid", color="black", weight=3]; 3814[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3814 -> 4005[label="",style="solid", color="black", weight=3]; 3815[label="xuu33000",fontsize=16,color="green",shape="box"];3816[label="xuu34000",fontsize=16,color="green",shape="box"];3817[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3817 -> 4006[label="",style="solid", color="black", weight=3]; 3818[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3818 -> 4007[label="",style="solid", color="black", weight=3]; 3819[label="xuu33000",fontsize=16,color="green",shape="box"];3820[label="xuu34000",fontsize=16,color="green",shape="box"];3821[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3821 -> 4008[label="",style="solid", color="black", weight=3]; 3822[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3822 -> 4009[label="",style="solid", color="black", weight=3]; 3823[label="xuu33000",fontsize=16,color="green",shape="box"];3824[label="xuu34000",fontsize=16,color="green",shape="box"];3825[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3825 -> 4010[label="",style="solid", color="black", weight=3]; 3826[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3826 -> 4011[label="",style="solid", color="black", weight=3]; 3827[label="xuu33000",fontsize=16,color="green",shape="box"];3828[label="xuu34000",fontsize=16,color="green",shape="box"];3829[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3829 -> 4012[label="",style="solid", color="black", weight=3]; 3830[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3830 -> 4013[label="",style="solid", color="black", weight=3]; 2921 -> 2117[label="",style="dashed", color="red", weight=0]; 2921[label="primPlusNat xuu28200 xuu9700",fontsize=16,color="magenta"];2921 -> 3761[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3762[label="",style="dashed", color="magenta", weight=3]; 3160[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3160 -> 3763[label="",style="solid", color="black", weight=3]; 3161[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) xuu64",fontsize=16,color="black",shape="box"];3161 -> 3764[label="",style="solid", color="black", weight=3]; 3974[label="xuu61",fontsize=16,color="green",shape="box"];3975[label="xuu64",fontsize=16,color="green",shape="box"];3976[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3977[label="Just xuu600",fontsize=16,color="green",shape="box"];3978[label="xuu284",fontsize=16,color="green",shape="box"];3979[label="xuu641",fontsize=16,color="green",shape="box"];3980[label="xuu644",fontsize=16,color="green",shape="box"];3981[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3982[label="xuu640",fontsize=16,color="green",shape="box"];3983[label="xuu6434",fontsize=16,color="green",shape="box"];3984[label="xuu61",fontsize=16,color="green",shape="box"];3985[label="xuu6433",fontsize=16,color="green",shape="box"];3986[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3987[label="Just xuu600",fontsize=16,color="green",shape="box"];3988[label="xuu28",fontsize=16,color="green",shape="box"];3632[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3632 -> 3769[label="",style="solid", color="black", weight=3]; 3633[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) xuu64",fontsize=16,color="black",shape="box"];3633 -> 3770[label="",style="solid", color="black", weight=3]; 3989[label="xuu61",fontsize=16,color="green",shape="box"];3990[label="xuu64",fontsize=16,color="green",shape="box"];3991[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3992[label="Nothing",fontsize=16,color="green",shape="box"];3993[label="xuu364",fontsize=16,color="green",shape="box"];3994[label="xuu641",fontsize=16,color="green",shape="box"];3995[label="xuu644",fontsize=16,color="green",shape="box"];3996[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3997[label="xuu640",fontsize=16,color="green",shape="box"];3998[label="xuu6434",fontsize=16,color="green",shape="box"];3999[label="xuu61",fontsize=16,color="green",shape="box"];4000[label="xuu6433",fontsize=16,color="green",shape="box"];4001[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];4002[label="Nothing",fontsize=16,color="green",shape="box"];4003[label="xuu36",fontsize=16,color="green",shape="box"];4004[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4004 -> 4035[label="",style="solid", color="black", weight=3]; 4005[label="LT",fontsize=16,color="green",shape="box"];4006[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4006 -> 4036[label="",style="solid", color="black", weight=3]; 4007[label="LT",fontsize=16,color="green",shape="box"];4008[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4008 -> 4037[label="",style="solid", color="black", weight=3]; 4009[label="LT",fontsize=16,color="green",shape="box"];4010[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4010 -> 4038[label="",style="solid", color="black", weight=3]; 4011[label="LT",fontsize=16,color="green",shape="box"];4012[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];4012 -> 4039[label="",style="solid", color="black", weight=3]; 4013[label="LT",fontsize=16,color="green",shape="box"];3761[label="xuu9700",fontsize=16,color="green",shape="box"];3762[label="xuu28200",fontsize=16,color="green",shape="box"];3763[label="error []",fontsize=16,color="red",shape="box"];3764 -> 3832[label="",style="dashed", color="red", weight=0]; 3764[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2840 xuu2841 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu280 xuu281 xuu283 xuu2843) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu600) xuu61 xuu2844 xuu64)",fontsize=16,color="magenta"];3764 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3769[label="error []",fontsize=16,color="red",shape="box"];3770 -> 3832[label="",style="dashed", color="red", weight=0]; 3770[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3640 xuu3641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu360 xuu361 xuu363 xuu3643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu61 xuu3644 xuu64)",fontsize=16,color="magenta"];3770 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3770 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3770 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3770 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3770 -> 3942[label="",style="dashed", color="magenta", weight=3]; 4035[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4035 -> 4041[label="",style="solid", color="black", weight=3]; 4036[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4036 -> 4042[label="",style="solid", color="black", weight=3]; 4037[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4037 -> 4043[label="",style="solid", color="black", weight=3]; 4038[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4038 -> 4044[label="",style="solid", color="black", weight=3]; 4039[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4039 -> 4045[label="",style="solid", color="black", weight=3]; 3923[label="xuu2841",fontsize=16,color="green",shape="box"];3924 -> 3832[label="",style="dashed", color="red", weight=0]; 3924[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu600) xuu61 xuu2844 xuu64",fontsize=16,color="magenta"];3924 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3924 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3924 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3924 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3924 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3925[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3926[label="xuu2840",fontsize=16,color="green",shape="box"];3927 -> 3832[label="",style="dashed", color="red", weight=0]; 3927[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu280 xuu281 xuu283 xuu2843",fontsize=16,color="magenta"];3927 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3927 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3927 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3927 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3927 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3938[label="xuu3641",fontsize=16,color="green",shape="box"];3939 -> 3832[label="",style="dashed", color="red", weight=0]; 3939[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu61 xuu3644 xuu64",fontsize=16,color="magenta"];3939 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3939 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3939 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3939 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3939 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3940[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3941[label="xuu3640",fontsize=16,color="green",shape="box"];3942 -> 3832[label="",style="dashed", color="red", weight=0]; 3942[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu360 xuu361 xuu363 xuu3643",fontsize=16,color="magenta"];3942 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3942 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3942 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3942 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3942 -> 4033[label="",style="dashed", color="magenta", weight=3]; 4041[label="GT",fontsize=16,color="green",shape="box"];4042[label="GT",fontsize=16,color="green",shape="box"];4043[label="GT",fontsize=16,color="green",shape="box"];4044[label="GT",fontsize=16,color="green",shape="box"];4045[label="GT",fontsize=16,color="green",shape="box"];4014[label="xuu61",fontsize=16,color="green",shape="box"];4015[label="xuu64",fontsize=16,color="green",shape="box"];4016[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4017[label="Just xuu600",fontsize=16,color="green",shape="box"];4018[label="xuu2844",fontsize=16,color="green",shape="box"];4019[label="xuu281",fontsize=16,color="green",shape="box"];4020[label="xuu2843",fontsize=16,color="green",shape="box"];4021[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4022[label="xuu280",fontsize=16,color="green",shape="box"];4023[label="xuu283",fontsize=16,color="green",shape="box"];4024[label="xuu61",fontsize=16,color="green",shape="box"];4025[label="xuu64",fontsize=16,color="green",shape="box"];4026[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];4027[label="Nothing",fontsize=16,color="green",shape="box"];4028[label="xuu3644",fontsize=16,color="green",shape="box"];4029[label="xuu361",fontsize=16,color="green",shape="box"];4030[label="xuu3643",fontsize=16,color="green",shape="box"];4031[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];4032[label="xuu360",fontsize=16,color="green",shape="box"];4033[label="xuu363",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(xuu3300), Succ(xuu3400)) -> new_primCmpNat(xuu3300, xuu3400) 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(xuu3300), Succ(xuu3400)) -> new_primCmpNat(xuu3300, xuu3400) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (22) Complex Obligation (AND) ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba),new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba)) ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (26) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, LT), h, ba) at position [6] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba),new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba)) ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: (new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba),new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba)) ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(GT, GT), h, ba) at position [6] we obtained the following new rules [LPAR04]: (new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba),new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba)) ---------------------------------------- (33) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 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_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) 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_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 6, 4 >= 8, 5 >= 9 *new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 ---------------------------------------- (35) YES ---------------------------------------- (36) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, chc), chd), che)) -> new_compare28(xuu33000, xuu34000, chc, chd, che) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, ee, ef) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ee, ef), ee, ef) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, cba)) -> new_esEs6(xuu3110000, xuu6000, cba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bd, be) -> new_esEs8(new_compare6(xuu33000, xuu34000, bd, be), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, dc) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bee)) -> new_ltEs13(xuu33000, xuu34000, bee) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_@2, dcd), dce)) -> new_ltEs14(xuu33000, xuu34000, dcd, dce) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), gc, eg) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), gc, eg) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, de) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu311000, xuu600, hf, hg, hh) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_[], dcb)) -> new_ltEs4(xuu33000, xuu34000, dcb) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dea) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dea), new_esEs27(xuu3110001, xuu6001, dea)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), eb, ec) -> new_pePe(new_lt20(xuu33000, xuu34000, eb), new_asAs(new_esEs26(xuu33000, xuu34000, eb), new_ltEs20(xuu33001, xuu34001, ec))) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Ratio, dcf)) -> new_ltEs15(xuu33000, xuu34000, dcf) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bf) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bf), bf) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cde)) -> new_lt16(xuu33001, xuu34001, cde) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bdg), bdh)) -> new_ltEs6(xuu33000, xuu34000, bdg, bdh) new_lt10(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_lt8(xuu33000, xuu34000, cbe) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_esEs7(xuu33000, xuu34000, cgf, cgg) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hf, hg, hh) -> new_asAs(new_esEs20(xuu3110000, xuu6000, hf), new_asAs(new_esEs19(xuu3110001, xuu6001, hg), new_esEs18(xuu3110002, xuu6002, hh))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dah), de) -> new_ltEs4(xuu33000, xuu34000, dah) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, bah)) -> new_esEs15(xuu3110002, xuu6002, bah) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, eg) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_esEs15(xuu33001, xuu34001, cea) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs5(xuu3110000, xuu6000, bcg, bch, bda) new_ltEs4(xuu3300, xuu3400, bf) -> new_fsEs(new_compare0(xuu3300, xuu3400, bf)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dbd), de) -> new_ltEs15(xuu33000, xuu34000, dbd) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs5(xuu3110002, xuu6002, bac, bad, bae) new_compare6(xuu33000, xuu34000, bd, be) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bd, be), bd, be) new_compare16(xuu33000, xuu34000, False, bd, be) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, cbb, cbc, cbd) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs30(xuu22, xuu17, app(ty_Ratio, ddf)) -> new_esEs15(xuu22, xuu17, ddf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dac), dad), de) -> new_ltEs6(xuu33000, xuu34000, dac, dad) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bed)) -> new_ltEs4(xuu33000, xuu34000, bed) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, dd), de)) -> new_ltEs6(xuu3300, xuu3400, dd, de) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_lt8(xuu33000, xuu34000, cgh) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs5(xuu3110001, xuu6001, bbe, bbf, bbg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, eg) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dae), daf), dag), de) -> new_ltEs8(xuu33000, xuu34000, dae, daf, dag) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bge), bgf)) -> new_esEs7(xuu3110000, xuu6000, bge, bgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_lt4(xuu33001, xuu34001, cdg, cdh) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, dc) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, dc), dc) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dab)) -> new_compare15(xuu33000, xuu34000, dab) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, ee, ef) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, ee, ef), ee, ef) new_lt5(xuu33000, xuu34000, ee, ef) -> new_esEs8(new_compare8(xuu33000, xuu34000, ee, ef), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bdd)) -> new_esEs15(xuu3110000, xuu6000, bdd) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs5(xuu33001, xuu34001, cdb, cdc, cdd) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dda), ddb), ddc)) -> new_esEs5(xuu22, xuu17, dda, ddb, ddc) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dba), de) -> new_ltEs13(xuu33000, xuu34000, dba) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, eg) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cea)) -> new_lt8(xuu33001, xuu34001, cea) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs5(xuu3110001, xuu6001, bfe, bff, bfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cfc)) -> new_ltEs13(xuu33001, xuu34001, cfc) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, eg) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs8(xuu33002, xuu34002, cbh, cca, ccb) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bfh), bga)) -> new_esEs4(xuu3110001, xuu6001, bfh, bga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_compare27(xuu33000, xuu34000, False, bd, be) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bd, be), bd, be) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, ced) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, ee, ef) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bhf)) -> new_esEs6(xuu3110000, xuu6000, bhf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, de) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, chg)) -> new_compare29(xuu33000, xuu34000, chg) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, ea)) -> new_ltEs13(xuu3300, xuu3400, ea) new_esEs26(xuu33000, xuu34000, app(ty_[], cgd)) -> new_esEs16(xuu33000, xuu34000, cgd) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, ed) -> new_fsEs(new_compare15(xuu3300, xuu3400, ed)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cce), ccf)) -> new_ltEs14(xuu33002, xuu34002, cce, ccf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(xuu3300, xuu3400, df, dg, dh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, eg) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, eb), ec)) -> new_ltEs14(xuu3300, xuu3400, eb, ec) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu3110000, xuu6000, cae, caf) new_esEs18(xuu3110002, xuu6002, app(ty_[], bba)) -> new_esEs16(xuu3110002, xuu6002, bba) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ce), cf)) -> new_esEs4(xuu3110000, xuu6000, ce, cf) new_primCompAux1(xuu33000, xuu34000, xuu176, bf) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bf)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, ced) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_esEs6(xuu33001, xuu34001, cdf) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cb), cc), cd)) -> new_esEs5(xuu3110000, xuu6000, cb, cc, cd) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(ty_Either, dbe), dbf)) -> new_ltEs6(xuu33000, xuu34000, dbe, dbf) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs5(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cec) -> new_esEs8(new_compare29(xuu33000, xuu34000, cec), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt11(xuu33000, xuu34000, cga, cgb, cgc) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cdf)) -> new_lt17(xuu33001, xuu34001, cdf) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, de) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bhd)) -> new_esEs15(xuu3110000, xuu6000, bhd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bea), beb), bec)) -> new_ltEs8(xuu33000, xuu34000, bea, beb, bec) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, dc) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs5(xuu3110000, xuu6000, gf, gg, gh) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cfd), cfe)) -> new_ltEs14(xuu33001, xuu34001, cfd, cfe) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, cag)) -> new_esEs15(xuu3110000, xuu6000, cag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, eg) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], ga), eg) -> new_esEs16(xuu3110000, xuu6000, ga) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], bhg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cg)) -> new_esEs15(xuu3110000, xuu6000, cg) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_esEs7(xuu33000, xuu34000, bd, be) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, db)) -> new_esEs6(xuu3110000, xuu6000, db) new_esEs6(Nothing, Just(xuu6000), bg) -> False new_esEs6(Just(xuu3110000), Nothing, bg) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Maybe, he)) -> new_esEs6(xuu3110000, xuu6000, he) new_esEs6(Nothing, Nothing, bg) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, cbb, cbc, cbd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_Ratio, hc)) -> new_esEs15(xuu3110000, xuu6000, hc) new_compare26(xuu33000, xuu34000, False, cbb, cbc, cbd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, chh), daa)) -> new_compare6(xuu33000, xuu34000, chh, daa) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cgh)) -> new_esEs15(xuu33000, xuu34000, cgh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fh), eg) -> new_esEs15(xuu3110000, xuu6000, fh) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs5(xuu3110000, xuu6000, bgg, bgh, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_@2, gd), ge)) -> new_esEs7(xuu3110000, xuu6000, gd, ge) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, cbe) -> new_esEs8(new_compare15(xuu33000, xuu34000, cbe), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bf) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bgd)) -> new_esEs6(xuu3110001, xuu6001, bgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) new_lt16(xuu33000, xuu34000, ceb) -> new_esEs8(new_compare0(xuu33000, xuu34000, ceb), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ff), fg), eg) -> new_esEs4(xuu3110000, xuu6000, ff, fg) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bgb)) -> new_esEs15(xuu3110001, xuu6001, bgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, bd, be) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], bhg)) -> new_esEs16(xuu311000, xuu600, bhg) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_lt5(xuu33001, xuu34001, cch, cda) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, baa), bab)) -> new_esEs7(xuu3110002, xuu6002, baa, bab) new_compare24(xuu33000, xuu34000, True, ee, ef) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cdg), cdh)) -> new_esEs7(xuu33001, xuu34001, cdg, cdh) new_esEs30(xuu22, xuu17, app(app(ty_@2, dcg), dch)) -> new_esEs7(xuu22, xuu17, dcg, dch) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bf) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, bdb), bdc)) -> new_esEs4(xuu3110000, xuu6000, bdb, bdc) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, bbh), bca)) -> new_esEs4(xuu3110001, xuu6001, bbh, bca) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, ea) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bef), beg)) -> new_ltEs14(xuu33000, xuu34000, bef, beg) new_ltEs13(Just(xuu33000), Nothing, ea) -> False new_lt20(xuu33000, xuu34000, app(ty_[], cgd)) -> new_lt16(xuu33000, xuu34000, cgd) new_esEs24(xuu33001, xuu34001, app(ty_[], cde)) -> new_esEs16(xuu33001, xuu34001, cde) new_esEs30(xuu22, xuu17, app(ty_[], ddg)) -> new_esEs16(xuu22, xuu17, ddg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, cbb, cbc, cbd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, bhh), caa)) -> new_esEs7(xuu3110000, xuu6000, bhh, caa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_esEs4(xuu33000, xuu34000, ee, ef) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ccd)) -> new_ltEs13(xuu33002, xuu34002, ccd) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs8(xuu33001, xuu34001, ceg, ceh, cfa) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_esEs6(xuu33000, xuu34000, cge) new_lt11(xuu33000, xuu34000, cbb, cbc, cbd) -> new_esEs8(new_compare28(xuu33000, xuu34000, cbb, cbc, cbd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(app(ty_Either, ha), hb)) -> new_esEs4(xuu3110000, xuu6000, ha, hb) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bh), ca)) -> new_esEs7(xuu3110000, xuu6000, bh, ca) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, gc), eg)) -> new_esEs4(xuu311000, xuu600, gc, eg) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bfa, bfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bfa), new_esEs21(xuu3110001, xuu6001, bfb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, eh), fa), eg) -> new_esEs7(xuu3110000, xuu6000, eh, fa) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bde)) -> new_esEs16(xuu3110000, xuu6000, bde) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, cee), cef)) -> new_ltEs6(xuu33001, xuu34001, cee, cef) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bdf)) -> new_esEs6(xuu3110000, xuu6000, bdf) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, bcd)) -> new_esEs6(xuu3110001, xuu6001, bcd) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, cbe)) -> new_esEs15(xuu33000, xuu34000, cbe) new_compare30(xuu33000, xuu34000, app(ty_[], chf)) -> new_compare0(xuu33000, xuu34000, chf) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, bhg), new_esEs16(xuu3110001, xuu6001, bhg)) new_compare23(Nothing, Just(xuu3400), False, dc) -> LT new_compare29(xuu33000, xuu34000, cec) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cec), cec) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_esEs30(xuu22, xuu17, app(app(ty_Either, ddd), dde)) -> new_esEs4(xuu22, xuu17, ddd, dde) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], bcc)) -> new_esEs16(xuu3110001, xuu6001, bcc) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, de) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cch), cda)) -> new_esEs4(xuu33001, xuu34001, cch, cda) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, cbf), cbg)) -> new_ltEs6(xuu33002, xuu34002, cbf, cbg) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, bcb)) -> new_esEs15(xuu3110001, xuu6001, bcb) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, baf), bag)) -> new_esEs4(xuu3110002, xuu6002, baf, bag) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_lt5(xuu33000, xuu34000, ee, ef) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, ddh)) -> new_esEs6(xuu22, xuu17, ddh) new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, eg) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, dc) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, bbc), bbd)) -> new_esEs7(xuu3110001, xuu6001, bbc, bbd) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), dd, de) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dbb), dbc), de) -> new_ltEs14(xuu33000, xuu34000, dbb, dbc) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(ty_Maybe, dcc)) -> new_ltEs13(xuu33000, xuu34000, dcc) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, cbb, cbc, cbd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, cbb, cbc, cbd), cbb, cbc, cbd) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), df, dg, dh) -> new_pePe(new_lt10(xuu33000, xuu34000, df), new_asAs(new_esEs25(xuu33000, xuu34000, df), new_pePe(new_lt9(xuu33001, xuu34001, dg), new_asAs(new_esEs24(xuu33001, xuu34001, dg), new_ltEs19(xuu33002, xuu34002, dh))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs29(xuu311000, xuu600, app(ty_Ratio, dea)) -> new_esEs15(xuu311000, xuu600, dea) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bd, be) -> EQ new_esEs29(xuu311000, xuu600, app(app(ty_@2, bfa), bfb)) -> new_esEs7(xuu311000, xuu600, bfa, bfb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, bbb)) -> new_esEs6(xuu3110002, xuu6002, bbb) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, ee, ef) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, beh)) -> new_ltEs15(xuu33000, xuu34000, beh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bg)) -> new_esEs6(xuu311000, xuu600, bg) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, cgf), cgg)) -> new_lt4(xuu33000, xuu34000, cgf, cgg) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt11(xuu33001, xuu34001, cdb, cdc, cdd) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bgc)) -> new_esEs16(xuu3110001, xuu6001, bgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_esEs4(xuu33000, xuu34000, cfg, cfh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, de) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, ed)) -> new_ltEs15(xuu3300, xuu3400, ed) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bf)) -> new_ltEs4(xuu3300, xuu3400, bf) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, ccg)) -> new_ltEs15(xuu33002, xuu34002, ccg) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs5(xuu33000, xuu34000, cga, cgb, cgc) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bfc), bfd)) -> new_esEs7(xuu3110001, xuu6001, bfc, bfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], da)) -> new_esEs16(xuu3110000, xuu6000, da) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs8(xuu33000, xuu34000, dbg, dbh, dca) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], bhg) -> False new_esEs16([], :(xuu6000, xuu6001), bhg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], cah)) -> new_esEs16(xuu3110000, xuu6000, cah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, fb), fc), fd), eg) -> new_esEs5(xuu3110000, xuu6000, fb, fc, fd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cfb)) -> new_ltEs4(xuu33001, xuu34001, cfb) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, cha), chb)) -> new_compare8(xuu33000, xuu34000, cha, chb) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cff)) -> new_ltEs15(xuu33001, xuu34001, cff) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, de) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, gb), eg) -> new_esEs6(xuu3110000, xuu6000, gb) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cfg), cfh)) -> new_lt5(xuu33000, xuu34000, cfg, cfh) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, eg) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bd), be)) -> new_lt4(xuu33000, xuu34000, bd, be) new_esEs22(xuu3110000, xuu6000, app(ty_[], bhe)) -> new_esEs16(xuu3110000, xuu6000, bhe) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ccc)) -> new_ltEs4(xuu33002, xuu34002, ccc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cge)) -> new_lt17(xuu33000, xuu34000, cge) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, de) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), ea) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), gc, app(ty_[], hd)) -> new_esEs16(xuu3110000, xuu6000, hd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, de) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), dd, de) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), dd, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, bce), bcf)) -> new_esEs7(xuu3110000, xuu6000, bce, bcf) The set Q consists of the following terms: new_lt10(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs13(Nothing, Just(x0), x1) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_lt5(x0, x1, x2, x3) new_ltEs7(x0, x1) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(Just(x0), Nothing, x1) new_compare0(:(x0, x1), [], x2) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs6(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt7(x0, x1) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs16([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Char) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_Char) new_ltEs16(False, False) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, EQ) new_compare29(x0, x1, x2) new_ltEs12(EQ, GT) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs13(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_compare6(x0, x1, x2, x3) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare0([], :(x0, x1), x2) new_compare16(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Float) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, ty_Ordering) new_primPlusNat0(x0, x1) new_compare23(Just(x0), Nothing, False, x1) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare30(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, Succ(x0)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt9(x0, x1, app(ty_[], x2)) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_compare110(x0, x1, True) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_primCompAux1(x0, x1, x2, x3) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(Nothing, Nothing, False, x0) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs16([], [], x0) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare27(x0, x1, True, x2, x3) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_compare10(x0, x1, False, x2) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2) new_ltEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs15(x0, x1, x2) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs10(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs17(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, False, x2, x3) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True, x2) new_esEs28(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs25(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_lt4(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Bool) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(Just(x0), Just(x1), False, x2) new_esEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2, x3, x4) new_not(True) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, False) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Char) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs24(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt9(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_esEs6(Nothing, Just(x0), x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, False) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs13(True, True) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_compare27(x0, x1, False, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_compare28(x0, x1, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, ty_Int) new_lt8(x0, x1, x2) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Double) new_lt10(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs19(x0, x1, ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Float) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3, x4) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_esEs16(:(x0, x1), [], x2) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_lt20(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Bool) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, ty_Integer) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, x2) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt16(x0, x1, x2) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs25(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 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_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The graph contains the following edges 4 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 *new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 5, 4 >= 7, 5 >= 8 *new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 6, 4 >= 8, 5 >= 9 *new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The graph contains the following edges 5 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 ---------------------------------------- (38) YES ---------------------------------------- (39) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_compare28(xuu33000, xuu34000, cfa, cfb, cfc) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_addToFM_C22(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, daa, dab) -> new_mkBalBranch(xuu17, xuu18, new_addToFM_C0(xuu20, Just(xuu22), xuu23, daa, dab), xuu21, daa, dab) new_compare8(xuu33000, xuu34000, bc, bd) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bc, bd), bc, bd) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, bga)) -> new_esEs6(xuu3110000, xuu6000, bga) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs8(xuu22, xuu17) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, bgf, bgg) -> new_esEs8(new_compare6(xuu33000, xuu34000, bgf, bgg), LT) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs12(xuu311000, xuu600) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs13(xuu22, xuu17) new_compare23(xuu330, xuu340, True, che) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbe)) -> new_ltEs13(xuu33000, xuu34000, bbe) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(app(ty_@2, ddg), ddh)) -> new_ltEs14(xuu33000, xuu34000, ddg, ddh) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), da, be) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), da, be) -> False new_mkBalBranch6Size_l0(xuu61, xuu36, xuu64, h, ba) -> new_sizeFM(xuu36, h, ba) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, chg) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs5(xuu311000, xuu600, ed, ee, ef) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cga) -> new_asAs(new_esEs28(xuu3110000, xuu6000, cga), new_esEs27(xuu3110001, xuu6001, cga)) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(ty_[], dde)) -> new_ltEs4(xuu33000, xuu34000, dde) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), Just(xuu600), xuu61, xuu28, xuu64, app(ty_Maybe, h), ba) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_emptyFM(h, ba) -> EmptyFM new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cca, ccb) -> new_pePe(new_lt20(xuu33000, xuu34000, cca), new_asAs(new_esEs26(xuu33000, xuu34000, cca), new_ltEs20(xuu33001, xuu34001, ccb))) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(ty_Ratio, dea)) -> new_ltEs15(xuu33000, xuu34000, dea) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, beb), bec)) -> new_esEs4(xuu3110000, xuu6000, beb, bec) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bb) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, bb), bb) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], cbb)) -> new_lt16(xuu33001, xuu34001, cbb) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bag), bah)) -> new_ltEs6(xuu33000, xuu34000, bag, bah) new_lt10(xuu33000, xuu34000, app(ty_Ratio, bge)) -> new_lt8(xuu33000, xuu34000, bge) new_gt(xuu91, xuu90) -> new_esEs8(new_compare12(xuu91, xuu90), GT) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, ced), cee)) -> new_esEs7(xuu33000, xuu34000, ced, cee) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, True, h, ba) -> new_mkBranch(Zero, Just(xuu600), xuu61, xuu28, xuu64, app(ty_Maybe, h), ba) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), ed, ee, ef) -> new_asAs(new_esEs20(xuu3110000, xuu6000, ed), new_asAs(new_esEs19(xuu3110001, xuu6001, ee), new_esEs18(xuu3110002, xuu6002, ef))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], dcc), chg) -> new_ltEs4(xuu33000, xuu34000, dcc) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, fg)) -> new_esEs15(xuu3110002, xuu6002, fg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, be) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, cbf)) -> new_esEs15(xuu33001, xuu34001, cbf) new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs5(xuu3110000, xuu6000, hf, hg, hh) new_ltEs4(xuu3300, xuu3400, bb) -> new_fsEs(new_compare0(xuu3300, xuu3400, bb)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_mkBalBranch(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, new_esEs8(new_primCmpInt0(xuu28, xuu600, xuu61, xuu64, h, ba), LT), h, ba) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dcg), chg) -> new_ltEs15(xuu33000, xuu34000, dcg) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, cbh)) -> new_lt17(xuu33000, xuu34000, cbh) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Nothing, xuu61, xuu36, xuu6433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, Branch(xuu3640, xuu3641, xuu3642, xuu3643, xuu3644), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3640, xuu3641, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu360, xuu361, xuu363, xuu3643, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Nothing, xuu61, xuu3644, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs5(xuu3110002, xuu6002, fa, fb, fc) new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, new_addToFM_C0(xuu63, Just(xuu311000), xuu31101, h, ba), xuu64, h, ba) new_compare6(xuu33000, xuu34000, bgf, bgg) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bgf, bgg), bgf, bgg) new_compare16(xuu33000, xuu34000, False, bgf, bgg) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, bgb, bgc, bgd) -> LT new_esEs30(xuu22, xuu17, app(ty_Ratio, dbb)) -> new_esEs15(xuu22, xuu17, dbb) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, dbf), dbg), chg) -> new_ltEs6(xuu33000, xuu34000, dbf, dbg) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bbd)) -> new_ltEs4(xuu33000, xuu34000, bbd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, chf), chg)) -> new_ltEs6(xuu3300, xuu3400, chf, chg) new_lt20(xuu33000, xuu34000, app(ty_Ratio, cef)) -> new_lt8(xuu33000, xuu34000, cef) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs5(xuu3110001, xuu6001, gd, ge, gf) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, be) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs13(xuu311000, xuu600) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, dbh), dca), dcb), chg) -> new_ltEs8(xuu33000, xuu34000, dbh, dca, dcb) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, bde), bdf)) -> new_esEs7(xuu3110000, xuu6000, bde, bdf) new_mkBalBranch6MkBalBranch4(xuu61, xuu36, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt6(new_sizeFM(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba))), h, ba) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs5(xuu33000, xuu34000, bgb, bgc, bgd) new_primMinusNat0(Succ(xuu28200), Zero) -> Pos(Succ(xuu28200)) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, cbd), cbe)) -> new_lt4(xuu33001, xuu34001, cbd, cbe) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, che) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, che), che) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, cfh)) -> new_compare15(xuu33000, xuu34000, cfh) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, bc, bd) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, bc, bd), bc, bd) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, bac)) -> new_esEs15(xuu3110000, xuu6000, bac) new_lt5(xuu33000, xuu34000, bc, bd) -> new_esEs8(new_compare8(xuu33000, xuu34000, bc, bd), LT) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs5(xuu33001, xuu34001, cag, cah, cba) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs5(xuu22, xuu17, dae, daf, dag) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, dcd), chg) -> new_ltEs13(xuu33000, xuu34000, dcd) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs12(xuu22, xuu17) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, be) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_lt9(xuu33001, xuu34001, app(ty_Ratio, cbf)) -> new_lt8(xuu33001, xuu34001, cbf) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs5(xuu3110001, xuu6001, bce, bcf, bcg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, cda)) -> new_ltEs13(xuu33001, xuu34001, cda) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, xuu284, xuu64, new_lt6(new_sizeFM(xuu284, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu283, h, ba))), h, ba) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, be) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs8(xuu33002, xuu34002, bhe, bhf, bhg) new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs17(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_primMinusNat0(Succ(xuu28200), Succ(xuu9700)) -> new_primMinusNat0(xuu28200, xuu9700) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, bch), bda)) -> new_esEs4(xuu3110001, xuu6001, bch, bda) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], cbg)) -> new_lt16(xuu33000, xuu34000, cbg) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare27(xuu33000, xuu34000, False, bgf, bgg) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, bgf, bgg), bgf, bgg) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, dbe) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs11(xuu22, xuu17) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, bc, bd) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, bef)) -> new_esEs6(xuu3110000, xuu6000, bef) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_addToFM_C22(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, daa, dab) -> new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs8(new_compare23(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, daa), daa), GT), daa, dab) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, chg) -> new_ltEs12(xuu33000, xuu34000) new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, EmptyFM, True, h, ba) -> error([]) new_primCmpInt0(EmptyFM, xuu600, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu600, xuu61, EmptyFM, xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, cfe)) -> new_compare29(xuu33000, xuu34000, cfe) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, baf)) -> new_ltEs13(xuu3300, xuu3400, baf) new_mkBalBranch6Size_r(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_sizeFM(xuu64, h, ba) new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) new_esEs26(xuu33000, xuu34000, app(ty_[], ceb)) -> new_esEs16(xuu33000, xuu34000, ceb) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, chh) -> new_fsEs(new_compare15(xuu3300, xuu3400, chh)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, cab), cac)) -> new_ltEs14(xuu33002, xuu34002, cab, cac) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, be) -> new_esEs12(xuu3110000, xuu6000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs8(xuu3300, xuu3400, bgh, bha, bhb) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_addToFM_C0(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Nothing, True, h), GT), h, ba) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, cca), ccb)) -> new_ltEs14(xuu3300, xuu3400, cca, ccb) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, bfe), bff)) -> new_esEs4(xuu3110000, xuu6000, bfe, bff) new_esEs18(xuu3110002, xuu6002, app(ty_[], fh)) -> new_esEs16(xuu3110002, xuu6002, fh) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, cgh), cha)) -> new_esEs4(xuu3110000, xuu6000, cgh, cha) new_primCompAux1(xuu33000, xuu34000, xuu176, bb) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, bb)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, dbe) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, cbc)) -> new_esEs6(xuu33001, xuu34001, cbc) new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, True, h, ba) -> new_mkBranch(Zero, Nothing, xuu61, xuu36, xuu64, app(ty_Maybe, h), ba) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs5(xuu3110000, xuu6000, cge, cgf, cgg) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(app(ty_Either, dch), dda)) -> new_ltEs6(xuu33000, xuu34000, dch, dda) new_primPlusInt(Pos(xuu2820), Pos(xuu970)) -> Pos(new_primPlusNat1(xuu2820, xuu970)) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs5(xuu3110000, xuu6000, bfb, bfc, bfd) new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> Branch(Just(xuu311000), new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, cbh) -> new_esEs8(new_compare29(xuu33000, xuu34000, cbh), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_lt11(xuu33000, xuu34000, cdg, cdh, cea) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, cbc)) -> new_lt17(xuu33001, xuu34001, cbc) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, chg) -> new_ltEs10(xuu33000, xuu34000) new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch(xuu600, xuu61, new_addToFM_C0(xuu63, Nothing, xuu31101, h, ba), xuu64, h, ba) new_esEs8(LT, LT) -> True new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs11(xuu311000, xuu600) new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, daa, dab) -> new_mkBalBranch(xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, Just(xuu22), xuu23, daa, dab), daa, dab) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, bed)) -> new_esEs15(xuu3110000, xuu6000, bed) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs8(xuu33000, xuu34000, bba, bbb, bbc) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_compare23(Just(xuu3300), Nothing, False, che) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(app(app(ty_@3, dd), de), df)) -> new_esEs5(xuu3110000, xuu6000, dd, de, df) new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, xuu63, new_addToFM_C0(xuu64, Just(xuu311000), xuu31101, h, ba), h, ba) new_esEs13(True, True) -> True new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs17(xuu22, xuu17) new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, cdb), cdc)) -> new_ltEs14(xuu33001, xuu34001, cdb, cdc) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, bfg)) -> new_esEs15(xuu3110000, xuu6000, bfg) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, be) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], cf), be) -> new_esEs16(xuu3110000, xuu6000, cf) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], beg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, chb)) -> new_esEs15(xuu3110000, xuu6000, chb) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt1(EmptyFM, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(xuu61, EmptyFM, xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs14(xuu311000, xuu600) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, bgf), bgg)) -> new_esEs7(xuu33000, xuu34000, bgf, bgg) new_addListToFM0(xuu61, xuu31101, ba) -> xuu31101 new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, chd)) -> new_esEs6(xuu3110000, xuu6000, chd) new_primCmpInt0(Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu600, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(xuu282, new_mkBalBranch6Size_r(xuu600, xuu61, Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_esEs6(Nothing, Just(xuu6000), cgb) -> False new_esEs6(Just(xuu3110000), Nothing, cgb) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(ty_Maybe, ec)) -> new_esEs6(xuu3110000, xuu6000, ec) new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs6(Nothing, Nothing, cgb) -> True new_mkBalBranch6MkBalBranch3(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), Nothing, xuu61, xuu36, xuu64, app(ty_Maybe, h), ba) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, bgb, bgc, bgd) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(ty_Ratio, ea)) -> new_esEs15(xuu3110000, xuu6000, ea) new_compare26(xuu33000, xuu34000, False, bgb, bgc, bgd) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, bgb, bgc, bgd), bgb, bgc, bgd) new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, xuu364, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu360, xuu361, xuu363, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Nothing, xuu61, xuu364, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, cff), cfg)) -> new_compare6(xuu33000, xuu34000, cff, cfg) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, cef)) -> new_esEs15(xuu33000, xuu34000, cef) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, ce), be) -> new_esEs15(xuu3110000, xuu6000, ce) new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs5(xuu3110000, xuu6000, bdg, bdh, bea) new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), GT), h, ba) new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(app(ty_@2, db), dc)) -> new_esEs7(xuu3110000, xuu6000, db, dc) new_primPlusInt(Neg(xuu2820), Neg(xuu970)) -> Neg(new_primPlusNat1(xuu2820, xuu970)) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_mkBalBranch0(xuu61, xuu36, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, new_esEs8(new_primCmpInt1(xuu36, xuu61, xuu64, h, ba), LT), h, ba) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs14(xuu22, xuu17) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, bge) -> new_esEs8(new_compare15(xuu33000, xuu34000, bge), LT) new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Nothing, xuu61, xuu36, xuu643, app(ty_Maybe, h), ba), xuu644, app(ty_Maybe, h), ba) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), bb) -> LT new_asAs(True, xuu139) -> xuu139 new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Just(xuu600), xuu61, xuu28, xuu6433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, bdd)) -> new_esEs6(xuu3110001, xuu6001, bdd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_lt11(xuu33000, xuu34000, bgb, bgc, bgd) new_addToFM_C0(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_lt16(xuu33000, xuu34000, cbg) -> new_esEs8(new_compare0(xuu33000, xuu34000, cbg), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cc), cd), be) -> new_esEs4(xuu3110000, xuu6000, cc, cd) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, bdb)) -> new_esEs15(xuu3110001, xuu6001, bdb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_compare16(xuu33000, xuu34000, True, bgf, bgg) -> LT new_esEs29(xuu311000, xuu600, app(ty_[], beg)) -> new_esEs16(xuu311000, xuu600, beg) new_lt9(xuu33001, xuu34001, app(app(ty_Either, cae), caf)) -> new_lt5(xuu33001, xuu34001, cae, caf) new_primPlusInt(Pos(xuu2820), Neg(xuu970)) -> new_primMinusNat0(xuu2820, xuu970) new_primPlusInt(Neg(xuu2820), Pos(xuu970)) -> new_primMinusNat0(xuu970, xuu2820) new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_mkBalBranch6MkBalBranch3(xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, eg), eh)) -> new_esEs7(xuu3110002, xuu6002, eg, eh) new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, xuu64, new_gt(new_mkBalBranch6Size_r(xuu600, xuu61, xuu28, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu600, xuu61, xuu28, xuu64, h, ba))), h, ba) new_compare24(xuu33000, xuu34000, True, bc, bd) -> EQ new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu28, xuu64, new_gt(new_mkBalBranch6Size_l(xuu600, xuu61, xuu28, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu600, xuu61, xuu28, xuu64, h, ba))), h, ba) new_esEs24(xuu33001, xuu34001, app(app(ty_@2, cbd), cbe)) -> new_esEs7(xuu33001, xuu34001, cbd, cbe) new_esEs30(xuu22, xuu17, app(app(ty_@2, dac), dad)) -> new_esEs7(xuu22, xuu17, dac, dad) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], bb) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, baa), bab)) -> new_esEs4(xuu3110000, xuu6000, baa, bab) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, gg), gh)) -> new_esEs4(xuu3110001, xuu6001, gg, gh) new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, Branch(xuu2840, xuu2841, xuu2842, xuu2843, xuu2844), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2840, xuu2841, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu280, xuu281, xuu283, xuu2843, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Just(xuu600), xuu61, xuu2844, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_mkBalBranch6MkBalBranch4(xuu61, xuu36, EmptyFM, True, h, ba) -> error([]) new_primMulNat0(Zero, Zero) -> Zero new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, baf) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbf), bbg)) -> new_ltEs14(xuu33000, xuu34000, bbf, bbg) new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch(xuu600, xuu61, xuu63, new_addToFM_C0(xuu64, Nothing, xuu31101, h, ba), h, ba) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Nothing, baf) -> False new_lt20(xuu33000, xuu34000, app(ty_[], ceb)) -> new_lt16(xuu33000, xuu34000, ceb) new_esEs24(xuu33001, xuu34001, app(ty_[], cbb)) -> new_esEs16(xuu33001, xuu34001, cbb) new_esEs30(xuu22, xuu17, app(ty_[], dbc)) -> new_esEs16(xuu22, xuu17, dbc) new_addToFM_C0(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), LT), h, ba) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, bgb, bgc, bgd) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, beh), bfa)) -> new_esEs7(xuu3110000, xuu6000, beh, bfa) new_mkBalBranch6MkBalBranch3(xuu61, Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, xuu364, xuu64, new_lt6(new_sizeFM(xuu364, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu363, h, ba))), h, ba) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, bc), bd)) -> new_esEs4(xuu33000, xuu34000, bc, bd) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, caa)) -> new_ltEs13(xuu33002, xuu34002, caa) new_mkBalBranch6MkBalBranch010(xuu61, xuu36, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs8(xuu33001, xuu34001, cce, ccf, ccg) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_esEs6(xuu33000, xuu34000, cec) new_lt11(xuu33000, xuu34000, bgb, bgc, bgd) -> new_esEs8(new_compare28(xuu33000, xuu34000, bgb, bgc, bgd), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(app(ty_Either, dg), dh)) -> new_esEs4(xuu3110000, xuu6000, dg, dh) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, cgc), cgd)) -> new_esEs7(xuu3110000, xuu6000, cgc, cgd) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, da), be)) -> new_esEs4(xuu311000, xuu600, da, be) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), bca, bcb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, bca), new_esEs21(xuu3110001, xuu6001, bcb)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs9(xuu22, xuu17) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, cbh)) -> new_esEs6(xuu33000, xuu34000, cbh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bf), bg), be) -> new_esEs7(xuu3110000, xuu6000, bf, bg) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], bad)) -> new_esEs16(xuu3110000, xuu6000, bad) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, ccc), ccd)) -> new_ltEs6(xuu33001, xuu34001, ccc, ccd) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, EmptyFM, xuu64, False, h, ba) -> error([]) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, bae)) -> new_esEs6(xuu3110000, xuu6000, bae) new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, hc)) -> new_esEs6(xuu3110001, xuu6001, hc) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, bge)) -> new_esEs15(xuu33000, xuu34000, bge) new_compare30(xuu33000, xuu34000, app(ty_[], cfd)) -> new_compare0(xuu33000, xuu34000, cfd) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), beg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, beg), new_esEs16(xuu3110001, xuu6001, beg)) new_compare29(xuu33000, xuu34000, cbh) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cbh), cbh) new_compare23(Nothing, Just(xuu3400), False, che) -> LT new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], cbg)) -> new_esEs16(xuu33000, xuu34000, cbg) new_esEs30(xuu22, xuu17, app(app(ty_Either, dah), dba)) -> new_esEs4(xuu22, xuu17, dah, dba) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs9(xuu311000, xuu600) new_esEs19(xuu3110001, xuu6001, app(ty_[], hb)) -> new_esEs16(xuu3110001, xuu6001, hb) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, chg) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, cae), caf)) -> new_esEs4(xuu33001, xuu34001, cae, caf) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bhc), bhd)) -> new_ltEs6(xuu33002, xuu34002, bhc, bhd) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, ha)) -> new_esEs15(xuu3110001, xuu6001, ha) new_mkBalBranch6Size_l(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_sizeFM(xuu28, h, ba) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, fd), ff)) -> new_esEs4(xuu3110002, xuu6002, fd, ff) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, bc), bd)) -> new_lt5(xuu33000, xuu34000, bc, bd) new_ltEs12(EQ, EQ) -> True new_esEs30(xuu22, xuu17, app(ty_Maybe, dbd)) -> new_esEs6(xuu22, xuu17, dbd) new_sizeFM0(Branch(xuu2120, xuu2121, xuu2122, xuu2123, xuu2124), deb, dec) -> xuu2122 new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs8(new_compare23(Just(xuu311000), Nothing, False, h), GT), h, ba) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_sizeFM(Branch(xuu640, xuu641, xuu642, xuu643, xuu644), h, ba) -> xuu642 new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, be) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, gb), gc)) -> new_esEs7(xuu3110001, xuu6001, gb, gc) new_compare23(Nothing, Nothing, False, che) -> LT new_addToFM_C0(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs8(new_compare23(Nothing, Just(xuu600), False, h), LT), h, ba) new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), chf, chg) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, dce), dcf), chg) -> new_ltEs14(xuu33000, xuu34000, dce, dcf) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(ty_Maybe, ddf)) -> new_ltEs13(xuu33000, xuu34000, ddf) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, bgb, bgc, bgd) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bgb, bgc, bgd), bgb, bgc, bgd) new_mkBalBranch6MkBalBranch11(xuu61, xuu360, xuu361, xuu362, xuu363, EmptyFM, xuu64, False, h, ba) -> error([]) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bgh, bha, bhb) -> new_pePe(new_lt10(xuu33000, xuu34000, bgh), new_asAs(new_esEs25(xuu33000, xuu34000, bgh), new_pePe(new_lt9(xuu33001, xuu34001, bha), new_asAs(new_esEs24(xuu33001, xuu34001, bha), new_ltEs19(xuu33002, xuu34002, bhb))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], bb) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_mkBranch(xuu208, xuu209, xuu210, xuu211, xuu212, deb, dec) -> Branch(xuu209, xuu210, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu211, deb, dec)), new_sizeFM0(xuu212, deb, dec)), xuu211, xuu212) new_mkBalBranch6Size_r0(xuu61, xuu36, xuu64, h, ba) -> new_sizeFM(xuu64, h, ba) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cga)) -> new_esEs15(xuu311000, xuu600, cga) new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, bgf, bgg) -> EQ new_primCmpInt1(Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(xuu362, new_mkBalBranch6Size_r0(xuu61, Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_esEs29(xuu311000, xuu600, app(app(ty_@2, bca), bcb)) -> new_esEs7(xuu311000, xuu600, bca, bcb) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, ga)) -> new_esEs6(xuu3110002, xuu6002, ga) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, bc, bd) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, bbh)) -> new_ltEs15(xuu33000, xuu34000, bbh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, app(ty_Maybe, cgb)) -> new_esEs6(xuu311000, xuu600, cgb) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, ced), cee)) -> new_lt4(xuu33000, xuu34000, ced, cee) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, cag), cah), cba)) -> new_lt11(xuu33001, xuu34001, cag, cah, cba) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], bdc)) -> new_esEs16(xuu3110001, xuu6001, bdc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, cde), cdf)) -> new_esEs4(xuu33000, xuu34000, cde, cdf) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, chg) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_mkBalBranch6MkBalBranch110(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, xuu284, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu280, xuu281, xuu283, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Just(xuu600), xuu61, xuu284, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs4(Right(xuu3110000), Right(xuu6000), da, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, chh)) -> new_ltEs15(xuu3300, xuu3400, chh) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt6(new_sizeFM(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba))), h, ba) new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, daa, dab) -> Branch(Just(xuu22), new_addListToFM0(xuu18, xuu23, dab), xuu19, xuu20, xuu21) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_mkBalBranch6MkBalBranch01(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Just(xuu600), xuu61, xuu28, xuu643, app(ty_Maybe, h), ba), xuu644, app(ty_Maybe, h), ba) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], bb)) -> new_ltEs4(xuu3300, xuu3400, bb) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, cad)) -> new_ltEs15(xuu33002, xuu34002, cad) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs5(xuu33000, xuu34000, cdg, cdh, cea) new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu61, xuu36, xuu64, new_gt(new_mkBalBranch6Size_r0(xuu61, xuu36, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu61, xuu36, xuu64, h, ba))), h, ba) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs10(xuu22, xuu17) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, bcc), bcd)) -> new_esEs7(xuu3110001, xuu6001, bcc, bcd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], chc)) -> new_esEs16(xuu3110000, xuu6000, chc) new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_primMinusNat0(Zero, Succ(xuu9700)) -> Neg(Succ(xuu9700)) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_ltEs8(xuu33000, xuu34000, ddb, ddc, ddd) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], beg) -> False new_esEs16([], :(xuu6000, xuu6001), beg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], bfh)) -> new_esEs16(xuu3110000, xuu6000, bfh) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bh), ca), cb), be) -> new_esEs5(xuu3110000, xuu6000, bh, ca, cb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], cch)) -> new_ltEs4(xuu33001, xuu34001, cch) new_mkBalBranch6MkBalBranch4(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu61, xuu36, xuu64, new_gt(new_mkBalBranch6Size_l0(xuu61, xuu36, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu61, xuu36, xuu64, h, ba))), h, ba) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, ceg), ceh)) -> new_compare8(xuu33000, xuu34000, ceg, ceh) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, cdd)) -> new_ltEs15(xuu33001, xuu34001, cdd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, chg) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, xuu63, new_addToFM_C0(xuu64, Nothing, xuu31101, h, ba), h, ba) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cg), be) -> new_esEs6(xuu3110000, xuu6000, cg) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs8(xuu311000, xuu600) new_lt20(xuu33000, xuu34000, app(app(ty_Either, cde), cdf)) -> new_lt5(xuu33000, xuu34000, cde, cdf) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, be) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, bgf), bgg)) -> new_lt4(xuu33000, xuu34000, bgf, bgg) new_esEs22(xuu3110000, xuu6000, app(ty_[], bee)) -> new_esEs16(xuu3110000, xuu6000, bee) new_ltEs19(xuu33002, xuu34002, app(ty_[], bhh)) -> new_ltEs4(xuu33002, xuu34002, bhh) new_asAs(False, xuu139) -> False new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, cec)) -> new_lt17(xuu33000, xuu34000, cec) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, chg) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), baf) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), da, app(ty_[], eb)) -> new_esEs16(xuu3110000, xuu6000, eb) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, chg) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), chf, chg) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_sizeFM0(EmptyFM, deb, dec) -> Pos(Zero) new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), chf, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs10(xuu311000, xuu600) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, hd), he)) -> new_esEs7(xuu3110000, xuu6000, hd, he) The set Q consists of the following terms: new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_esEs8(EQ, EQ) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Bool) new_lt10(x0, x1, ty_@0) new_primCompAux1(x0, x1, x2, x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_addToFM_C16(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1) new_esEs24(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) new_compare11(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, False, x4, x5) new_esEs29(x0, x1, ty_Bool) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs12(x0, x1) new_lt10(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primMinusNat0(Zero, Zero) new_lt13(x0, x1) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_addToFM_C23(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C13(x0, x1, x2, x3, x4, x5, True, x6, x7) new_emptyFM(x0, x1) new_lt7(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_lt9(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_primEqNat0(Zero, Succ(x0)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs6(Just(x0), Just(x1), ty_Char) new_compare16(x0, x1, True, x2, x3) new_sIZE_RATIO new_esEs29(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_ltEs16(False, False) new_ltEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Double) new_lt9(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_esEs25(x0, x1, app(ty_[], x2)) new_lt19(x0, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs12(GT, EQ) new_ltEs12(EQ, GT) new_compare10(x0, x1, True, x2) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_compare0(:(x0, x1), [], x2) new_mkBalBranch6MkBalBranch40(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs30(x0, x1, ty_Integer) new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9) new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4) new_addToFM_C13(x0, x1, x2, x3, x4, x5, False, x6, x7) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_addToFM_C23(x0, x1, x2, x3, x4, x5, True, x6, x7) new_addToFM_C24(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCompAux0(x0, GT) new_esEs29(x0, x1, ty_Int) new_compare210(x0, x1, False) new_esEs23(x0, x1, ty_Ordering) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_primCmpInt1(EmptyFM, x0, x1, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primMinusNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_compare13(Char(x0), Char(x1)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(x0, x1, True, x2, x3) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Ordering) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_compare6(x0, x1, x2, x3) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs14(Double(x0, x1), Double(x2, x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt10(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt6(x0, x1) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs16(:(x0, x1), :(x2, x3), x4) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare26(x0, x1, True, x2, x3, x4) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_primMinusNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt10(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Nothing, x1) new_mkBalBranch6MkBalBranch30(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_esEs26(x0, x1, app(ty_[], x2)) new_primPlusNat0(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_compare30(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, False, x3, x4) new_compare10(x0, x1, False, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Zero, Succ(x0)) new_compare0([], [], x0) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_addToFM_C14(x0, x1, x2, x3, x4, True, x5, x6) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare16(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_esEs13(False, True) new_esEs13(True, False) new_lt10(x0, x1, ty_Integer) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs16(:(x0, x1), [], x2) new_compare110(x0, x1, True) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, x2) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, True, x2, x3) new_esEs29(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_mkBalBranch6MkBalBranch3(x0, Branch(x1, x2, x3, x4, x5), x6, True, x7, x8) new_lt10(x0, x1, app(ty_Ratio, x2)) new_compare23(Just(x0), Just(x1), False, x2) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_ltEs13(Nothing, Just(x0), x1) new_ltEs19(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs18(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_compare23(Nothing, Just(x0), False, x1) new_esEs20(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_ltEs17(x0, x1) new_primCmpNat0(Succ(x0), Succ(x1)) new_sizeFM0(EmptyFM, x0, x1) new_lt20(x0, x1, ty_Double) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_sizeFM(EmptyFM, x0, x1) new_esEs6(Just(x0), Nothing, x1) new_addListToFM0(x0, x1, x2) new_compare27(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Int) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(x0, x1) new_esEs20(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(Integer(x0), Integer(x1)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1, x2) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_[], x2)) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6, x7) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_compare30(x0, x1, ty_Integer) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs17(Integer(x0), Integer(x1)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt12(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_ltEs15(x0, x1, x2) new_compare26(x0, x1, False, x2, x3, x4) new_compare14(x0, x1, True, x2, x3, x4) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs28(x0, x1, ty_Int) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_addToFM_C24(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs25(x0, x1, ty_Double) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs24(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_esEs21(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs13(Just(x0), Just(x1), ty_@0) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt4(x0, x1, x2, x3) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare24(x0, x1, True, x2, x3) new_ltEs13(Nothing, Nothing, x0) new_not(True) new_compare24(x0, x1, False, x2, x3) new_compare17(x0, x1, False) new_lt11(x0, x1, x2, x3, x4) new_ltEs13(Just(x0), Just(x1), ty_Char) new_compare17(x0, x1, True) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_compare0(:(x0, x1), :(x2, x3), x4) new_compare110(x0, x1, False) new_compare14(x0, x1, False, x2, x3, x4) new_esEs13(True, True) new_esEs21(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_ltEs18(x0, x1) new_compare12(x0, x1) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Zero) new_esEs18(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, EQ) new_lt14(x0, x1) new_lt10(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_esEs27(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5, x6) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_addToFM_C14(x0, x1, x2, x3, x4, False, x5, x6) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs16([], [], x0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_esEs22(x0, x1, ty_Double) new_compare30(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_mkBalBranch6MkBalBranch40(x0, x1, x2, EmptyFM, True, x3, x4) new_compare29(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Double) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16([], :(x0, x1), x2) new_compare30(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Double) new_sr(x0, x1) new_ltEs4(x0, x1, x2) new_esEs30(x0, x1, ty_Float) new_compare11(x0, x1, False, x2, x3) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_lt9(x0, x1, ty_Float) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_addToFM_C16(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch3(x0, EmptyFM, x1, True, x2, x3) new_mkBalBranch0(x0, x1, x2, x3, x4) new_esEs19(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs6(Nothing, Just(x0), x1) new_esEs21(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch30(x0, x1, EmptyFM, x2, True, x3, x4) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_compare28(x0, x1, x2, x3, x4) new_esEs24(x0, x1, ty_Integer) new_lt9(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, ty_Int) new_compare30(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_asAs(False, x0) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_lt16(x0, x1, x2) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_[], x2)) new_not(False) new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Ordering) new_ltEs16(True, True) new_lt20(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5) new_ltEs12(LT, GT) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, LT) new_esEs25(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Char) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs26(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_lt5(x0, x1, x2, x3) new_sr0(Integer(x0), Integer(x1)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Integer) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs6(Nothing, Nothing, x0) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs30(x0, x1, ty_Int) new_compare8(x0, x1, x2, x3) new_gt(x0, x1) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_compare23(Nothing, Nothing, False, x0) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_compare31(x0, x1) new_esEs25(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare23(Just(x0), Nothing, False, x1) new_compare32(@0, @0) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_lt20(x0, x1, ty_Char) 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_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (41) YES ---------------------------------------- (42) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu311000000), Succ(xuu600100)) -> new_primMulNat(xuu311000000, Succ(xuu600100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (43) 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(xuu311000000), Succ(xuu600100)) -> new_primMulNat(xuu311000000, Succ(xuu600100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (44) YES ---------------------------------------- (45) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, ha), df, fb) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_Maybe, bac)) -> new_compare4(xuu33000, xuu34000, bac) new_compare20(xuu33000, xuu34000, False, ge, gf, gg) -> new_ltEs0(xuu33000, xuu34000, ge, gf, gg) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], bdg)), bdc)) -> new_lt1(xuu33000, xuu34000, bdg) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_@2, dc), dd))) -> new_ltEs3(xuu33000, xuu34000, dc, dd) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_Maybe, ee))) -> new_ltEs2(xuu33002, xuu34002, ee) new_primCompAux(xuu33000, xuu34000, xuu176, app(app(app(ty_@3, hg), hh), baa)) -> new_compare3(xuu33000, xuu34000, hg, hh, baa) new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_Maybe, db))) -> new_ltEs2(xuu33000, xuu34000, db) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_@2, ga), gb)), fb)) -> new_lt3(xuu33001, xuu34001, ga, gb) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh))) -> new_ltEs(xuu33002, xuu34002, dg, dh) new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bh), ca)), bb)) -> new_ltEs3(xuu33000, xuu34000, bh, ca) new_lt3(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, bbe), bbf))) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bcf))) -> new_ltEs2(xuu33001, xuu34001, bcf) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_[], ed))) -> new_ltEs1(xuu33002, xuu34002, ed) new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_[], bf), bb) -> new_ltEs1(xuu33000, xuu34000, bf) new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(xuu33000, xuu34000, cc, cd) new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb)) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) new_lt(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_[], bce))) -> new_ltEs1(xuu33001, xuu34001, bce) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, hb), hc), df, fb) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_Either, bbh), bca)) -> new_ltEs(xuu33001, xuu34001, bbh, bca) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, bea), beb), bdc) -> new_lt3(xuu33000, xuu34000, bea, beb) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_Maybe, bcf)) -> new_ltEs2(xuu33001, xuu34001, bcf) new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, baf), bag))) -> new_ltEs(xuu33000, xuu34000, baf, bag) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdc)) -> new_lt3(xuu33000, xuu34000, bea, beb) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_Maybe, fh)), fb)) -> new_lt2(xuu33001, xuu34001, fh) new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bf)), bb)) -> new_ltEs1(xuu33000, xuu34000, bf) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_Either, eh), fa), fb) -> new_lt(xuu33001, xuu34001, eh, fa) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, bda), bdb)), bdc)) -> new_lt(xuu33000, xuu34000, bda, bdb) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, hb), hc)), df), fb)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) new_compare4(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_Either, h), ba), bb) -> new_ltEs(xuu33000, xuu34000, h, ba) new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_[], da))) -> new_ltEs1(xuu33000, xuu34000, da) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_[], ed)) -> new_ltEs1(xuu33002, xuu34002, ed) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bcb), bcc), bcd))) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) new_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_[], fg)), fb)) -> new_lt1(xuu33001, xuu34001, fg) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_[], fg), fb) -> new_lt1(xuu33001, xuu34001, fg) new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_Either, he), hf)) -> new_compare1(xuu33000, xuu34000, he, hf) new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) new_ltEs(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(xuu33000, xuu34000, h, ba) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, ha)), df), fb)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, bdh)), bdc)) -> new_lt2(xuu33000, xuu34000, bdh) new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_[], da)) -> new_ltEs1(xuu33000, xuu34000, da) new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbd)) -> new_ltEs2(xuu33000, xuu34000, bbd) new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_[], bbc)) -> new_ltEs1(xuu33000, xuu34000, bbc) new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(xuu33000, xuu34000, bbd) new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbe), bbf)) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_@2, ga), gb), fb) -> new_lt3(xuu33001, xuu34001, ga, gb) new_compare3(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_Maybe, db)) -> new_ltEs2(xuu33000, xuu34000, db) new_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_compare(xuu33001, xuu34001, hd) new_lt2(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(xuu33000, xuu34000, cc, cd) new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bg)), bb)) -> new_ltEs2(xuu33000, xuu34000, bg) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], gh), df, fb) -> new_compare(xuu33000, xuu34000, gh) new_compare22(xuu33000, xuu34000, False, hb, hc) -> new_ltEs3(xuu33000, xuu34000, hb, hc) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb)) -> new_lt(xuu33001, xuu34001, eh, fa) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(xuu33002, xuu34002, dg, dh) new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bh), ca), bb) -> new_ltEs3(xuu33000, xuu34000, bh, ca) new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) new_lt0(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, bda), bdb), bdc) -> new_lt(xuu33000, xuu34000, bda, bdb) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_@2, ef), eg)) -> new_ltEs3(xuu33002, xuu34002, ef, eg) new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(xuu33000, xuu34000, dc, dd) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, bdd), bde), bdf)), bdc)) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_@2, bad), bae)) -> new_compare5(xuu33000, xuu34000, bad, bae) new_compare5(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_[], bab)) -> new_compare(xuu33000, xuu34000, bab) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], bdg), bdc) -> new_lt1(xuu33000, xuu34000, bdg) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_Maybe, ee)) -> new_ltEs2(xuu33002, xuu34002, ee) new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bbh), bca))) -> new_ltEs(xuu33001, xuu34001, bbh, bca) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, bdh), bdc) -> new_lt2(xuu33000, xuu34000, bdh) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], gh)), df), fb)) -> new_compare(xuu33000, xuu34000, gh) new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], bbc))) -> new_ltEs1(xuu33000, xuu34000, bbc) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb)) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, gc), gd), df, fb) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_Maybe, fh), fb) -> new_lt2(xuu33001, xuu34001, fh) new_compare2(xuu33000, xuu34000, False, gc, gd) -> new_ltEs(xuu33000, xuu34000, gc, gd) new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_[], bce)) -> new_ltEs1(xuu33001, xuu34001, bce) new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_Either, baf), bag)) -> new_ltEs(xuu33000, xuu34000, baf, bag) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_@2, ef), eg))) -> new_ltEs3(xuu33002, xuu34002, ef, eg) new_lt1(xuu33000, xuu34000, gh) -> new_compare(xuu33000, xuu34000, gh) new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bg), bb) -> new_ltEs2(xuu33000, xuu34000, bg) new_compare1(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) The TRS R consists of the following rules: new_lt20(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(app(ty_@3, hg), hh), baa)) -> new_compare28(xuu33000, xuu34000, hg, hh, baa) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_compare8(xuu33000, xuu34000, gc, gd) -> new_compare24(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) new_esEs23(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs6(xuu3110000, xuu6000, dba) new_pePe(True, xuu165) -> True new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Float) -> new_ltEs11(xuu33000, xuu34000) new_esEs17(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_lt4(xuu33000, xuu34000, hb, hc) -> new_esEs8(new_compare6(xuu33000, xuu34000, hb, hc), LT) new_compare23(xuu330, xuu340, True, bff) -> EQ new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbd)) -> new_ltEs13(xuu33000, xuu34000, bbd) new_lt15(xuu33000, xuu34000) -> new_esEs8(new_compare31(xuu33000, xuu34000), LT) new_lt10(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_ltEs12(LT, LT) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(app(ty_@2, dc), dd)) -> new_ltEs14(xuu33000, xuu34000, dc, dd) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs4(Left(xuu3110000), Right(xuu6000), bhd, bga) -> False new_esEs4(Right(xuu3110000), Left(xuu6000), bhd, bga) -> False new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Int, bb) -> new_ltEs7(xuu33000, xuu34000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(ty_[], da)) -> new_ltEs4(xuu33000, xuu34000, da) new_esEs15(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), dcc) -> new_asAs(new_esEs28(xuu3110000, xuu6000, dcc), new_esEs27(xuu3110001, xuu6001, dcc)) new_esEs24(xuu33001, xuu34001, ty_Ordering) -> new_esEs8(xuu33001, xuu34001) new_ltEs14(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, bdc) -> new_pePe(new_lt20(xuu33000, xuu34000, bbg), new_asAs(new_esEs26(xuu33000, xuu34000, bbg), new_ltEs20(xuu33001, xuu34001, bdc))) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(ty_Ratio, dcb)) -> new_ltEs15(xuu33000, xuu34000, dcb) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, chb), chc)) -> new_esEs4(xuu3110000, xuu6000, chb, chc) new_compare0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux1(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat0(xuu340, Succ(xuu3300)) new_lt9(xuu33001, xuu34001, app(ty_[], fg)) -> new_lt16(xuu33001, xuu34001, fg) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_Either, baf), bag)) -> new_ltEs6(xuu33000, xuu34000, baf, bag) new_lt10(xuu33000, xuu34000, app(ty_Ratio, dbb)) -> new_lt8(xuu33000, xuu34000, dbb) new_esEs28(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_esEs7(xuu33000, xuu34000, bea, beb) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs17(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_@0) -> new_ltEs18(xuu33001, xuu34001) new_esEs5(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cag, cah, cba) -> new_asAs(new_esEs20(xuu3110000, xuu6000, cag), new_asAs(new_esEs19(xuu3110001, xuu6001, cah), new_esEs18(xuu3110002, xuu6002, cba))) new_esEs10(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_ltEs7(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_esEs18(xuu3110002, xuu6002, ty_Ordering) -> new_esEs8(xuu3110002, xuu6002) new_compare25(xuu33000, xuu34000, False) -> new_compare17(xuu33000, xuu34000, new_ltEs16(xuu33000, xuu34000)) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_[], bf), bb) -> new_ltEs4(xuu33000, xuu34000, bf) new_esEs18(xuu3110002, xuu6002, ty_Bool) -> new_esEs13(xuu3110002, xuu6002) new_primCompAux0(xuu182, GT) -> GT new_lt9(xuu33001, xuu34001, ty_Bool) -> new_lt18(xuu33001, xuu34001) new_esEs23(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_compare210(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs12(xuu33000, xuu34000)) new_esEs18(xuu3110002, xuu6002, app(ty_Ratio, cca)) -> new_esEs15(xuu3110002, xuu6002, cca) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Integer, bga) -> new_esEs17(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu149) -> new_not(new_esEs8(xuu149, GT)) new_esEs19(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_lt12(xuu33000, xuu34000) -> new_esEs8(new_compare19(xuu33000, xuu34000), LT) new_esEs24(xuu33001, xuu34001, app(ty_Ratio, dbd)) -> new_esEs15(xuu33001, xuu34001, dbd) new_esEs20(xuu3110000, xuu6000, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs5(xuu3110000, xuu6000, cdh, cea, ceb) new_ltEs4(xuu3300, xuu3400, hd) -> new_fsEs(new_compare0(xuu3300, xuu3400, hd)) new_esEs8(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Bool) -> new_esEs13(xuu33001, xuu34001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Ratio, dca), bb) -> new_ltEs15(xuu33000, xuu34000, dca) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_lt10(xuu33000, xuu34000, ty_Double) -> new_lt12(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(ty_Maybe, ha)) -> new_lt17(xuu33000, xuu34000, ha) new_ltEs20(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_primCompAux0(xuu182, LT) -> LT new_not(True) -> False new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs18(xuu33002, xuu34002) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs18(xuu3110002, xuu6002, app(app(app(ty_@3, cbd), cbe), cbf)) -> new_esEs5(xuu3110002, xuu6002, cbd, cbe, cbf) new_compare6(xuu33000, xuu34000, hb, hc) -> new_compare27(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) new_compare16(xuu33000, xuu34000, False, hb, hc) -> GT new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, True, ge, gf, gg) -> LT new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_Either, h), ba), bb) -> new_ltEs6(xuu33000, xuu34000, h, ba) new_esEs19(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_[], bbc)) -> new_ltEs4(xuu33000, xuu34000, bbc) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs5(xuu3300, xuu3400, app(app(ty_Either, cb), bb)) -> new_ltEs6(xuu3300, xuu3400, cb, bb) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(ty_Ratio, dbg)) -> new_lt8(xuu33000, xuu34000, dbg) new_esEs19(xuu3110001, xuu6001, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs5(xuu3110001, xuu6001, ccf, ccg, cch) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_@0, bga) -> new_esEs9(xuu3110000, xuu6000) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs8(xuu33000, xuu34000, bc, bd, be) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cge), cgf)) -> new_esEs7(xuu3110000, xuu6000, cge, cgf) new_esEs25(xuu33000, xuu34000, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs5(xuu33000, xuu34000, ge, gf, gg) new_compare110(xuu33000, xuu34000, True) -> LT new_lt9(xuu33001, xuu34001, app(app(ty_@2, ga), gb)) -> new_lt4(xuu33001, xuu34001, ga, gb) new_ltEs5(xuu3300, xuu3400, ty_Ordering) -> new_ltEs12(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, ty_Int) -> new_lt6(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare23(Just(xuu3300), Just(xuu3400), False, bff) -> new_compare10(xuu3300, xuu3400, new_ltEs5(xuu3300, xuu3400, bff), bff) new_lt20(xuu33000, xuu34000, ty_Integer) -> new_lt13(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Ratio, dbh)) -> new_compare15(xuu33000, xuu34000, dbh) new_lt20(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare7(xuu3300, xuu3400)) new_compare24(xuu33000, xuu34000, False, gc, gd) -> new_compare11(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000, gc, gd), gc, gd) new_lt5(xuu33000, xuu34000, gc, gd) -> new_esEs8(new_compare8(xuu33000, xuu34000, gc, gd), LT) new_esEs20(xuu3110000, xuu6000, app(ty_Ratio, cee)) -> new_esEs15(xuu3110000, xuu6000, cee) new_esEs24(xuu33001, xuu34001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs5(xuu33001, xuu34001, fc, fd, ff) new_esEs26(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_primPlusNat1(Succ(xuu28200), Succ(xuu9700)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu9700))) new_lt9(xuu33001, xuu34001, ty_Char) -> new_lt7(xuu33001, xuu34001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs9(xuu33000, xuu34000) new_lt18(xuu33000, xuu34000) -> new_esEs8(new_compare9(xuu33000, xuu34000), LT) new_primCmpNat0(Zero, Succ(xuu3400)) -> LT new_ltEs6(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bg), bb) -> new_ltEs13(xuu33000, xuu34000, bg) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare7(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Bool, bga) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, ty_Int) -> new_esEs12(xuu3110002, xuu6002) new_compare210(xuu33000, xuu34000, True) -> EQ new_esEs24(xuu33001, xuu34001, ty_Int) -> new_esEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Ratio, dbd)) -> new_lt8(xuu33001, xuu34001, dbd) new_esEs21(xuu3110001, xuu6001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs5(xuu3110001, xuu6001, cfe, cff, cfg) new_primCmpNat0(Succ(xuu3300), Zero) -> GT new_ltEs20(xuu33001, xuu34001, app(ty_Maybe, bcf)) -> new_ltEs13(xuu33001, xuu34001, bcf) new_pePe(False, xuu165) -> xuu165 new_ltEs5(xuu3300, xuu3400, ty_Char) -> new_ltEs17(xuu3300, xuu3400) new_esEs20(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Float) -> new_ltEs11(xuu33001, xuu34001) new_ltEs12(GT, GT) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Ordering, bga) -> new_esEs8(xuu3110000, xuu6000) new_ltEs18(xuu3300, xuu3400) -> new_fsEs(new_compare32(xuu3300, xuu3400)) new_compare15(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu33001, xuu34001, ty_Double) -> new_ltEs9(xuu33001, xuu34001) new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs8(xuu33002, xuu34002, ea, eb, ec) new_esEs21(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs12(GT, EQ) -> False new_esEs24(xuu33001, xuu34001, ty_@0) -> new_esEs9(xuu33001, xuu34001) new_esEs21(xuu3110001, xuu6001, app(app(ty_Either, cfh), cga)) -> new_esEs4(xuu3110001, xuu6001, cfh, cga) new_esEs18(xuu3110002, xuu6002, ty_Float) -> new_esEs11(xuu3110002, xuu6002) new_lt10(xuu33000, xuu34000, app(ty_[], gh)) -> new_lt16(xuu33000, xuu34000, gh) new_esEs26(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_compare27(xuu33000, xuu34000, False, hb, hc) -> new_compare16(xuu33000, xuu34000, new_ltEs14(xuu33000, xuu34000, hb, hc), hb, hc) new_compare7(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_compare10(xuu132, xuu133, False, dbe) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare17(xuu33000, xuu34000, True) -> LT new_compare11(xuu33000, xuu34000, False, gc, gd) -> GT new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, chf)) -> new_esEs6(xuu3110000, xuu6000, chf) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs21(xuu3110001, xuu6001, ty_Ordering) -> new_esEs8(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Ordering, bb) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_compare30(xuu33000, xuu34000, app(ty_Maybe, bac)) -> new_compare29(xuu33000, xuu34000, bac) new_ltEs5(xuu3300, xuu3400, app(ty_Maybe, bfg)) -> new_ltEs13(xuu3300, xuu3400, bfg) new_esEs26(xuu33000, xuu34000, app(ty_[], bdg)) -> new_esEs16(xuu33000, xuu34000, bdg) new_ltEs17(xuu3300, xuu3400) -> new_fsEs(new_compare13(xuu3300, xuu3400)) new_ltEs15(xuu3300, xuu3400, bfh) -> new_fsEs(new_compare15(xuu3300, xuu3400, bfh)) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, ef), eg)) -> new_ltEs14(xuu33002, xuu34002, ef, eg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs25(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_compare13(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, app(app(app(ty_@3, de), df), fb)) -> new_ltEs8(xuu3300, xuu3400, de, df, fb) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Int, bga) -> new_esEs12(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs20(xuu33001, xuu34001, ty_Char) -> new_ltEs17(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, False) -> GT new_lt9(xuu33001, xuu34001, ty_Integer) -> new_lt13(xuu33001, xuu34001) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_compare30(xuu33000, xuu34000, ty_Float) -> new_compare18(xuu33000, xuu34000) new_ltEs5(xuu3300, xuu3400, ty_Float) -> new_ltEs11(xuu3300, xuu3400) new_ltEs5(xuu3300, xuu3400, app(app(ty_@2, bbg), bdc)) -> new_ltEs14(xuu3300, xuu3400, bbg, bdc) new_esEs23(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs4(xuu3110000, xuu6000, dae, daf) new_esEs18(xuu3110002, xuu6002, app(ty_[], ccb)) -> new_esEs16(xuu3110002, xuu6002, ccb) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bfa), bfb)) -> new_esEs4(xuu3110000, xuu6000, bfa, bfb) new_primCompAux1(xuu33000, xuu34000, xuu176, hd) -> new_primCompAux0(xuu176, new_compare30(xuu33000, xuu34000, hd)) new_lt9(xuu33001, xuu34001, ty_Double) -> new_lt12(xuu33001, xuu34001) new_compare10(xuu132, xuu133, True, dbe) -> LT new_esEs24(xuu33001, xuu34001, app(ty_Maybe, fh)) -> new_esEs6(xuu33001, xuu34001, fh) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bef), beg), beh)) -> new_esEs5(xuu3110000, xuu6000, bef, beg, beh) new_lt10(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs6(xuu33000, xuu34000, cc, cd) new_esEs23(xuu3110000, xuu6000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs5(xuu3110000, xuu6000, dab, dac, dad) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs17(xuu33002, xuu34002) new_lt17(xuu33000, xuu34000, ha) -> new_esEs8(new_compare29(xuu33000, xuu34000, ha), LT) new_ltEs5(xuu3300, xuu3400, ty_Double) -> new_ltEs9(xuu3300, xuu3400) new_lt20(xuu33000, xuu34000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_lt11(xuu33000, xuu34000, bdd, bde, bdf) new_esEs24(xuu33001, xuu34001, ty_Char) -> new_esEs10(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, app(ty_Maybe, fh)) -> new_lt17(xuu33001, xuu34001, fh) new_esEs18(xuu3110002, xuu6002, ty_Integer) -> new_esEs17(xuu3110002, xuu6002) new_lt14(xuu33000, xuu34000) -> new_esEs8(new_compare18(xuu33000, xuu34000), LT) new_ltEs5(xuu3300, xuu3400, ty_Bool) -> new_ltEs16(xuu3300, xuu3400) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Integer, bb) -> new_ltEs10(xuu33000, xuu34000) new_esEs8(LT, LT) -> True new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, chd)) -> new_esEs15(xuu3110000, xuu6000, chd) new_esEs26(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs8(xuu33000, xuu34000, bah, bba, bbb) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu9700)) -> Succ(xuu9700) new_compare23(Just(xuu3300), Nothing, False, bff) -> GT new_compare30(xuu33000, xuu34000, ty_Char) -> new_compare13(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs9(xuu33002, xuu34002) new_esEs19(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_lt10(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs5(xuu3110000, xuu6000, bhg, bhh, caa) new_esEs13(True, True) -> True new_ltEs20(xuu33001, xuu34001, app(app(ty_@2, bcg), bch)) -> new_ltEs14(xuu33001, xuu34001, bcg, bch) new_esEs23(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs23(xuu3110000, xuu6000, app(ty_Ratio, dag)) -> new_esEs15(xuu3110000, xuu6000, dag) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Char, bga) -> new_esEs10(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_[], bhb), bga) -> new_esEs16(xuu3110000, xuu6000, bhb) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_esEs16([], [], chg) -> True new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs11(xuu33002, xuu34002) new_esEs25(xuu33000, xuu34000, ty_Bool) -> new_esEs13(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, bfc)) -> new_esEs15(xuu3110000, xuu6000, bfc) new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat0(Zero, Succ(xuu3400)) new_esEs25(xuu33000, xuu34000, app(app(ty_@2, hb), hc)) -> new_esEs7(xuu33000, xuu34000, hb, hc) new_ltEs20(xuu33001, xuu34001, ty_Bool) -> new_ltEs16(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bfe)) -> new_esEs6(xuu3110000, xuu6000, bfe) new_esEs6(Nothing, Just(xuu6000), bec) -> False new_esEs6(Just(xuu3110000), Nothing, bec) -> False new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(ty_Maybe, caf)) -> new_esEs6(xuu3110000, xuu6000, caf) new_esEs6(Nothing, Nothing, bec) -> True new_esEs14(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs23(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare26(xuu33000, xuu34000, True, ge, gf, gg) -> EQ new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(ty_Ratio, cad)) -> new_esEs15(xuu3110000, xuu6000, cad) new_compare26(xuu33000, xuu34000, False, ge, gf, gg) -> new_compare14(xuu33000, xuu34000, new_ltEs8(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs16(xuu33002, xuu34002) new_lt10(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, app(app(ty_@2, bad), bae)) -> new_compare6(xuu33000, xuu34000, bad, bae) new_esEs26(xuu33000, xuu34000, app(ty_Ratio, dbg)) -> new_esEs15(xuu33000, xuu34000, dbg) new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, bha), bga) -> new_esEs15(xuu3110000, xuu6000, bha) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs12(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs5(xuu3110000, xuu6000, cgg, cgh, cha) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(app(ty_@2, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_esEs21(xuu3110001, xuu6001, ty_Integer) -> new_esEs17(xuu3110001, xuu6001) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs24(xuu33001, xuu34001, ty_Double) -> new_esEs14(xuu33001, xuu34001) new_esEs25(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs13(False, False) -> True new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_compare31(xuu33000, xuu34000) -> new_compare210(xuu33000, xuu34000, new_esEs8(xuu33000, xuu34000)) new_lt8(xuu33000, xuu34000, dbb) -> new_esEs8(new_compare15(xuu33000, xuu34000, dbb), LT) new_esEs18(xuu3110002, xuu6002, ty_Double) -> new_esEs14(xuu3110002, xuu6002) new_compare0([], :(xuu34000, xuu34001), hd) -> LT new_asAs(True, xuu139) -> xuu139 new_esEs19(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, app(ty_Maybe, cgd)) -> new_esEs6(xuu3110001, xuu6001, cgd) new_lt10(xuu33000, xuu34000, app(app(app(ty_@3, ge), gf), gg)) -> new_lt11(xuu33000, xuu34000, ge, gf, gg) new_lt16(xuu33000, xuu34000, gh) -> new_esEs8(new_compare0(xuu33000, xuu34000, gh), LT) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bgg), bgh), bga) -> new_esEs4(xuu3110000, xuu6000, bgg, bgh) new_esEs21(xuu3110001, xuu6001, app(ty_Ratio, cgb)) -> new_esEs15(xuu3110001, xuu6001, cgb) new_esEs26(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_ltEs16(True, False) -> False new_compare16(xuu33000, xuu34000, True, hb, hc) -> LT new_ltEs5(xuu3300, xuu3400, ty_@0) -> new_ltEs18(xuu3300, xuu3400) new_lt9(xuu33001, xuu34001, app(app(ty_Either, eh), fa)) -> new_lt5(xuu33001, xuu34001, eh, fa) new_esEs18(xuu3110002, xuu6002, app(app(ty_@2, cbb), cbc)) -> new_esEs7(xuu3110002, xuu6002, cbb, cbc) new_compare24(xuu33000, xuu34000, True, gc, gd) -> EQ new_esEs24(xuu33001, xuu34001, app(app(ty_@2, ga), gb)) -> new_esEs7(xuu33001, xuu34001, ga, gb) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat0(Succ(xuu3300), xuu340) new_lt9(xuu33001, xuu34001, ty_@0) -> new_lt19(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, False) -> GT new_compare9(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs13(xuu33000, xuu34000)) new_esEs25(xuu33000, xuu34000, ty_@0) -> new_esEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Char) -> new_lt7(xuu33000, xuu34000) new_esEs9(@0, @0) -> True new_compare0([], [], hd) -> EQ new_esEs19(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_Either, cec), ced)) -> new_esEs4(xuu3110000, xuu6000, cec, ced) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs19(xuu3110001, xuu6001, app(app(ty_Either, cda), cdb)) -> new_esEs4(xuu3110001, xuu6001, cda, cdb) new_compare30(xuu33000, xuu34000, ty_@0) -> new_compare32(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu33001, xuu34001, ty_Ordering) -> new_ltEs12(xuu33001, xuu34001) new_lt9(xuu33001, xuu34001, ty_Ordering) -> new_lt15(xuu33001, xuu34001) new_ltEs13(Nothing, Nothing, bfg) -> True new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_ltEs13(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbe), bbf)) -> new_ltEs14(xuu33000, xuu34000, bbe, bbf) new_ltEs13(Just(xuu33000), Nothing, bfg) -> False new_lt20(xuu33000, xuu34000, app(ty_[], bdg)) -> new_lt16(xuu33000, xuu34000, bdg) new_esEs24(xuu33001, xuu34001, app(ty_[], fg)) -> new_esEs16(xuu33001, xuu34001, fg) new_esEs20(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_compare14(xuu33000, xuu34000, False, ge, gf, gg) -> GT new_esEs23(xuu3110000, xuu6000, app(app(ty_@2, chh), daa)) -> new_esEs7(xuu3110000, xuu6000, chh, daa) new_compare19(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_lt20(xuu33000, xuu34000, ty_Int) -> new_lt6(xuu33000, xuu34000) new_esEs25(xuu33000, xuu34000, app(app(ty_Either, gc), gd)) -> new_esEs4(xuu33000, xuu34000, gc, gd) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ee)) -> new_ltEs13(xuu33002, xuu34002, ee) new_esEs19(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Float) -> new_esEs11(xuu3110001, xuu6001) new_ltEs20(xuu33001, xuu34001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs8(xuu33001, xuu34001, bcb, bcc, bcd) new_esEs26(xuu33000, xuu34000, app(ty_Maybe, bdh)) -> new_esEs6(xuu33000, xuu34000, bdh) new_lt11(xuu33000, xuu34000, ge, gf, gg) -> new_esEs8(new_compare28(xuu33000, xuu34000, ge, gf, gg), LT) new_ltEs5(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(app(ty_Either, cab), cac)) -> new_esEs4(xuu3110000, xuu6000, cab, cac) new_compare30(xuu33000, xuu34000, ty_Double) -> new_compare19(xuu33000, xuu34000) new_compare32(@0, @0) -> EQ new_ltEs12(GT, LT) -> False new_ltEs13(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs16(xuu33000, xuu34000) new_primCompAux0(xuu182, EQ) -> xuu182 new_esEs26(xuu33000, xuu34000, ty_Float) -> new_esEs11(xuu33000, xuu34000) new_esEs6(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bed), bee)) -> new_esEs7(xuu3110000, xuu6000, bed, bee) new_esEs20(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cfa, cfb) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cfa), new_esEs21(xuu3110001, xuu6001, cfb)) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs25(xuu33000, xuu34000, app(ty_Maybe, ha)) -> new_esEs6(xuu33000, xuu34000, ha) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, bgb), bgc), bga) -> new_esEs7(xuu3110000, xuu6000, bgb, bgc) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_esEs20(xuu3110000, xuu6000, app(ty_[], cef)) -> new_esEs16(xuu3110000, xuu6000, cef) new_ltEs20(xuu33001, xuu34001, app(app(ty_Either, bbh), bca)) -> new_ltEs6(xuu33001, xuu34001, bbh, bca) new_esEs26(xuu33000, xuu34000, ty_Char) -> new_esEs10(xuu33000, xuu34000) new_esEs20(xuu3110000, xuu6000, app(ty_Maybe, ceg)) -> new_esEs6(xuu3110000, xuu6000, ceg) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_esEs26(xuu33000, xuu34000, ty_Ordering) -> new_esEs8(xuu33000, xuu34000) new_esEs19(xuu3110001, xuu6001, app(ty_Maybe, cde)) -> new_esEs6(xuu3110001, xuu6001, cde) new_esEs25(xuu33000, xuu34000, app(ty_Ratio, dbb)) -> new_esEs15(xuu33000, xuu34000, dbb) new_compare30(xuu33000, xuu34000, app(ty_[], bab)) -> new_compare0(xuu33000, xuu34000, bab) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Int) -> new_ltEs7(xuu33000, xuu34000) new_lt9(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat0(Succ(xuu3400), Zero) new_esEs16(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), chg) -> new_asAs(new_esEs23(xuu3110000, xuu6000, chg), new_esEs16(xuu3110001, xuu6001, chg)) new_compare23(Nothing, Just(xuu3400), False, bff) -> LT new_compare29(xuu33000, xuu34000, ha) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) new_esEs21(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, app(ty_[], gh)) -> new_esEs16(xuu33000, xuu34000, gh) new_esEs19(xuu3110001, xuu6001, app(ty_[], cdd)) -> new_esEs16(xuu3110001, xuu6001, cdd) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_@0, bb) -> new_ltEs18(xuu33000, xuu34000) new_esEs24(xuu33001, xuu34001, app(app(ty_Either, eh), fa)) -> new_esEs4(xuu33001, xuu34001, eh, fa) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, dg), dh)) -> new_ltEs6(xuu33002, xuu34002, dg, dh) new_ltEs12(EQ, GT) -> True new_esEs19(xuu3110001, xuu6001, app(ty_Ratio, cdc)) -> new_esEs15(xuu3110001, xuu6001, cdc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(app(ty_Either, cbg), cbh)) -> new_esEs4(xuu3110002, xuu6002, cbg, cbh) new_lt20(xuu33000, xuu34000, ty_Ordering) -> new_lt15(xuu33000, xuu34000) new_lt10(xuu33000, xuu34000, app(app(ty_Either, gc), gd)) -> new_lt5(xuu33000, xuu34000, gc, gd) new_ltEs12(EQ, EQ) -> True new_esEs24(xuu33001, xuu34001, ty_Float) -> new_esEs11(xuu33001, xuu34001) new_compare30(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs23(xuu3110000, xuu6000, ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_esEs12(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Double, bga) -> new_esEs14(xuu3110000, xuu6000) new_esEs20(xuu3110000, xuu6000, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Integer) -> new_compare7(xuu33000, xuu34000) new_compare23(Nothing, Nothing, False, bff) -> LT new_esEs18(xuu3110002, xuu6002, ty_@0) -> new_esEs9(xuu3110002, xuu6002) new_esEs19(xuu3110001, xuu6001, app(app(ty_@2, ccd), cce)) -> new_esEs7(xuu3110001, xuu6001, ccd, cce) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_primPlusNat0(xuu107, xuu600100) -> new_primPlusNat1(xuu107, Succ(xuu600100)) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Ordering) -> new_esEs8(xuu3110000, xuu6000) new_ltEs6(Right(xuu33000), Left(xuu34000), cb, bb) -> False new_not(False) -> True new_esEs21(xuu3110001, xuu6001, ty_Double) -> new_esEs14(xuu3110001, xuu6001) new_esEs21(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_ltEs6(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bh), ca), bb) -> new_ltEs14(xuu33000, xuu34000, bh, ca) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(ty_Maybe, db)) -> new_ltEs13(xuu33000, xuu34000, db) new_ltEs5(xuu3300, xuu3400, ty_Int) -> new_ltEs7(xuu3300, xuu3400) new_compare28(xuu33000, xuu34000, ge, gf, gg) -> new_compare26(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) new_ltEs8(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, fb) -> new_pePe(new_lt10(xuu33000, xuu34000, de), new_asAs(new_esEs25(xuu33000, xuu34000, de), new_pePe(new_lt9(xuu33001, xuu34001, df), new_asAs(new_esEs24(xuu33001, xuu34001, df), new_ltEs19(xuu33002, xuu34002, fb))))) new_compare30(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_compare0(:(xuu33000, xuu33001), [], hd) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_esEs19(xuu3110001, xuu6001, ty_Char) -> new_esEs10(xuu3110001, xuu6001) new_esEs25(xuu33000, xuu34000, ty_Double) -> new_esEs14(xuu33000, xuu34000) new_compare25(xuu33000, xuu34000, True) -> EQ new_compare27(xuu33000, xuu34000, True, hb, hc) -> EQ new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs18(xuu3110002, xuu6002, app(ty_Maybe, ccc)) -> new_esEs6(xuu3110002, xuu6002, ccc) new_ltEs16(False, False) -> True new_compare11(xuu33000, xuu34000, True, gc, gd) -> LT new_ltEs13(Just(xuu33000), Just(xuu34000), app(ty_Ratio, ceh)) -> new_ltEs15(xuu33000, xuu34000, ceh) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs7(xuu33002, xuu34002) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_@0) -> new_lt19(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt20(xuu33000, xuu34000, app(app(ty_@2, bea), beb)) -> new_lt4(xuu33000, xuu34000, bea, beb) new_lt9(xuu33001, xuu34001, app(app(app(ty_@3, fc), fd), ff)) -> new_lt11(xuu33001, xuu34001, fc, fd, ff) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare18(xuu3300, xuu3400)) new_lt19(xuu33000, xuu34000) -> new_esEs8(new_compare32(xuu33000, xuu34000), LT) new_compare18(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare18(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs20(xuu33001, xuu34001, ty_Int) -> new_ltEs7(xuu33001, xuu34001) new_lt20(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs28(xuu3110000, xuu6000, ty_Int) -> new_esEs12(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, app(ty_[], cgc)) -> new_esEs16(xuu3110001, xuu6001, cgc) new_ltEs16(True, True) -> True new_lt13(xuu33000, xuu34000) -> new_esEs8(new_compare7(xuu33000, xuu34000), LT) new_esEs20(xuu3110000, xuu6000, ty_@0) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu33000, xuu34000, app(app(ty_Either, bda), bdb)) -> new_esEs4(xuu33000, xuu34000, bda, bdb) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Bool, bb) -> new_ltEs16(xuu33000, xuu34000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs5(xuu3300, xuu3400, app(ty_Ratio, bfh)) -> new_ltEs15(xuu3300, xuu3400, bfh) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, ty_Char) -> new_esEs10(xuu3110000, xuu6000) new_esEs25(xuu33000, xuu34000, ty_Integer) -> new_esEs17(xuu33000, xuu34000) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_ltEs12(EQ, LT) -> False new_ltEs5(xuu3300, xuu3400, app(ty_[], hd)) -> new_ltEs4(xuu3300, xuu3400, hd) new_lt6(xuu330, xuu340) -> new_esEs8(new_compare12(xuu330, xuu340), LT) new_lt7(xuu33000, xuu34000) -> new_esEs8(new_compare13(xuu33000, xuu34000), LT) new_primCmpNat0(Succ(xuu3300), Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, dbc)) -> new_ltEs15(xuu33002, xuu34002, dbc) new_esEs26(xuu33000, xuu34000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs5(xuu33000, xuu34000, bdd, bde, bdf) new_esEs21(xuu3110001, xuu6001, app(app(ty_@2, cfc), cfd)) -> new_esEs7(xuu3110001, xuu6001, cfc, cfd) new_esEs26(xuu33000, xuu34000, ty_Int) -> new_esEs12(xuu33000, xuu34000) new_esEs18(xuu3110002, xuu6002, ty_Char) -> new_esEs10(xuu3110002, xuu6002) new_esEs24(xuu33001, xuu34001, ty_Integer) -> new_esEs17(xuu33001, xuu34001) new_esEs6(Just(xuu3110000), Just(xuu6000), app(ty_[], bfd)) -> new_esEs16(xuu3110000, xuu6000, bfd) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs8(xuu33000, xuu34000, ce, cf, cg) new_esEs19(xuu3110001, xuu6001, ty_Bool) -> new_esEs13(xuu3110001, xuu6001) new_esEs16(:(xuu3110000, xuu3110001), [], chg) -> False new_esEs16([], :(xuu6000, xuu6001), chg) -> False new_esEs23(xuu3110000, xuu6000, app(ty_[], dah)) -> new_esEs16(xuu3110000, xuu6000, dah) new_esEs4(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, bgd), bge), bgf), bga) -> new_esEs5(xuu3110000, xuu6000, bgd, bge, bgf) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs20(xuu33001, xuu34001, app(ty_[], bce)) -> new_ltEs4(xuu33001, xuu34001, bce) new_compare19(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_compare30(xuu33000, xuu34000, app(app(ty_Either, he), hf)) -> new_compare8(xuu33000, xuu34000, he, hf) new_ltEs20(xuu33001, xuu34001, app(ty_Ratio, dbf)) -> new_ltEs15(xuu33001, xuu34001, dbf) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Float, bb) -> new_ltEs11(xuu33000, xuu34000) new_ltEs9(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs12(xuu3110001, xuu6001) new_ltEs13(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs18(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs4(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bhc), bga) -> new_esEs6(xuu3110000, xuu6000, bhc) new_esEs20(xuu3110000, xuu6000, ty_Bool) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33000, xuu34000, app(app(ty_Either, bda), bdb)) -> new_lt5(xuu33000, xuu34000, bda, bdb) new_esEs4(Left(xuu3110000), Left(xuu6000), ty_Float, bga) -> new_esEs11(xuu3110000, xuu6000) new_lt10(xuu33000, xuu34000, app(app(ty_@2, hb), hc)) -> new_lt4(xuu33000, xuu34000, hb, hc) new_esEs22(xuu3110000, xuu6000, app(ty_[], che)) -> new_esEs16(xuu3110000, xuu6000, che) new_asAs(False, xuu139) -> False new_ltEs19(xuu33002, xuu34002, app(ty_[], ed)) -> new_ltEs4(xuu33002, xuu34002, ed) new_esEs6(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs14(xuu3110000, xuu6000) new_compare30(xuu33000, xuu34000, ty_Ordering) -> new_compare31(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, app(ty_Maybe, bdh)) -> new_lt17(xuu33000, xuu34000, bdh) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Double, bb) -> new_ltEs9(xuu33000, xuu34000) new_lt20(xuu33000, xuu34000, ty_Bool) -> new_lt18(xuu33000, xuu34000) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Ordering) -> new_ltEs12(xuu33000, xuu34000) new_ltEs13(Nothing, Just(xuu34000), bfg) -> True new_esEs23(xuu3110000, xuu6000, ty_Float) -> new_esEs11(xuu3110000, xuu6000) new_esEs4(Right(xuu3110000), Right(xuu6000), bhd, app(ty_[], cae)) -> new_esEs16(xuu3110000, xuu6000, cae) new_ltEs6(Left(xuu33000), Left(xuu34000), ty_Char, bb) -> new_ltEs17(xuu33000, xuu34000) new_ltEs6(Left(xuu33000), Right(xuu34000), cb, bb) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs11(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs12(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_ltEs6(Right(xuu33000), Right(xuu34000), cb, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs16(False, True) -> True new_lt10(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs21(xuu3110001, xuu6001, ty_@0) -> new_esEs9(xuu3110001, xuu6001) new_esEs20(xuu3110000, xuu6000, app(app(ty_@2, cdf), cdg)) -> new_esEs7(xuu3110000, xuu6000, cdf, cdg) The set Q consists of the following terms: new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt10(x0, x1, app(ty_Maybe, x2)) new_esEs8(EQ, EQ) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(Just(x0), Just(x1), ty_Double) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs15(:%(x0, x1), :%(x2, x3), x4) new_lt9(x0, x1, ty_Bool) new_ltEs13(Just(x0), Nothing, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Integer) new_ltEs11(x0, x1) new_ltEs7(x0, x1) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primPlusNat1(Zero, Zero) new_pePe(True, x0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, ty_Bool) new_ltEs9(x0, x1) new_lt9(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, True, x2, x3, x4) new_esEs12(x0, x1) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt13(x0, x1) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1) new_esEs26(x0, x1, ty_Double) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_fsEs(x0) new_lt10(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_@0) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, x2, x3, x4) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, x2, x3) new_ltEs16(False, False) new_ltEs19(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs13(Nothing, Just(x0), x1) new_compare30(x0, x1, ty_Double) new_lt19(x0, x1) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs12(GT, EQ) new_ltEs12(EQ, GT) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare10(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Float) new_compare14(x0, x1, False, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, GT) new_compare210(x0, x1, False) new_esEs23(x0, x1, ty_Ordering) new_lt10(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_esEs6(Just(x0), Just(x1), ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs25(x0, x1, ty_Integer) new_esEs10(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Integer) new_compare13(Char(x0), Char(x1)) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare11(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs13(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs9(@0, @0) new_esEs24(x0, x1, ty_Bool) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, ty_Double) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt10(x0, x1, app(ty_Ratio, x2)) new_esEs14(Double(x0, x1), Double(x2, x3)) new_compare30(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Just(x0), Just(x1), ty_Bool) new_lt10(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs5(x0, x1, ty_Ordering) new_compare29(x0, x1, x2) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Char) new_ltEs13(Just(x0), Just(x1), ty_Int) new_esEs21(x0, x1, ty_Double) new_lt8(x0, x1, x2) new_lt10(x0, x1, ty_Ordering) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_lt17(x0, x1, x2) new_primPlusNat0(x0, x1) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_compare28(x0, x1, x2, x3, x4) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_compare10(x0, x1, False, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primPlusNat1(Zero, Succ(x0)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt16(x0, x1, x2) new_lt10(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs8(GT, GT) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_ltEs16(True, False) new_ltEs16(False, True) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs18(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs18(x0, x1, ty_Float) new_ltEs12(GT, GT) new_compare30(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs22(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_compare23(x0, x1, True, x2) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt10(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(Float(x0, x1), Float(x2, x3)) new_esEs8(LT, LT) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs20(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare110(x0, x1, True) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, ty_Int) new_lt15(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_compare210(x0, x1, True) new_esEs6(Nothing, Nothing, x0) new_compare24(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Char) new_ltEs12(LT, LT) new_asAs(True, x0) new_primCompAux1(x0, x1, x2, x3) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_compare26(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Ordering) new_esEs18(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_compare16(x0, x1, False, x2, x3) new_esEs20(x0, x1, ty_Float) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(x0, x1) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_compare6(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_@0) new_compare23(Just(x0), Nothing, False, x1) new_primMulNat0(Succ(x0), Zero) new_primCmpNat0(Zero, Succ(x0)) new_compare23(Nothing, Nothing, False, x0) new_esEs19(x0, x1, ty_Int) new_ltEs10(x0, x1) new_esEs20(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs6(Just(x0), Just(x1), ty_Float) new_ltEs5(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_compare7(Integer(x0), Integer(x1)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs13(Just(x0), Just(x1), ty_Bool) new_compare27(x0, x1, True, x2, x3) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primMulNat0(Zero, Zero) new_esEs22(x0, x1, ty_@0) new_esEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare30(x0, x1, ty_Integer) new_esEs16([], :(x0, x1), x2) new_lt10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Nothing, Just(x0), x1) new_esEs17(Integer(x0), Integer(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Int) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs19(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Double) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Bool) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs19(x0, x1, ty_Char) new_compare11(x0, x1, False, x2, x3) new_ltEs13(Just(x0), Just(x1), ty_@0) new_esEs24(x0, x1, ty_Ordering) new_compare8(x0, x1, x2, x3) new_not(True) new_compare17(x0, x1, False) new_ltEs13(Just(x0), Just(x1), ty_Char) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, True) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Char) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, ty_Ordering) new_esEs19(x0, x1, ty_@0) new_ltEs13(Just(x0), Just(x1), ty_Integer) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare110(x0, x1, False) new_esEs13(True, True) new_esEs21(x0, x1, ty_@0) new_ltEs18(x0, x1) new_compare12(x0, x1) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_compare30(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Float) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16([], [], x0) new_primEqNat0(Succ(x0), Zero) new_primCompAux0(x0, EQ) new_lt14(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs19(x0, x1, ty_Float) new_ltEs12(EQ, EQ) new_esEs27(x0, x1, ty_Int) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Char) new_compare25(x0, x1, False) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Ordering) new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs20(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Double) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Integer) new_lt9(x0, x1, ty_Ordering) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs5(x0, x1, ty_Float) new_ltEs13(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare30(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_Double) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_sr(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare27(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Ordering) new_compare9(x0, x1) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, ty_Ordering) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs21(x0, x1, ty_Int) new_lt9(x0, x1, ty_Float) new_ltEs15(x0, x1, x2) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Bool) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Nothing, Nothing, x0) new_esEs25(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs5(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs20(x0, x1, ty_Bool) new_compare0([], :(x0, x1), x2) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Integer) new_ltEs4(x0, x1, x2) new_esEs20(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, ty_Char) new_lt10(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Int) new_esEs16(:(x0, x1), [], x2) new_compare30(x0, x1, ty_Int) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_compare26(x0, x1, True, x2, x3, x4) new_ltEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(x0, x1, ty_Bool) new_lt9(x0, x1, ty_Int) new_compare16(x0, x1, True, x2, x3) new_compare0([], [], x0) new_lt18(x0, x1) new_esEs23(x0, x1, ty_Int) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_primMulNat0(Zero, Succ(x0)) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, ty_Char) new_not(False) new_compare30(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(True, True) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Bool) new_esEs6(Just(x0), Nothing, x1) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_esEs25(x0, x1, ty_Int) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs26(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Char) new_sr0(Integer(x0), Integer(x1)) new_compare30(x0, x1, ty_Float) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(:(x0, x1), [], x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare23(Nothing, Just(x0), False, x1) new_esEs23(x0, x1, ty_Float) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare23(Just(x0), Just(x1), False, x2) new_ltEs20(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Double) new_lt20(x0, x1, ty_Int) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Integer) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs27(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_compare31(x0, x1) new_esEs25(x0, x1, ty_Float) new_compare32(@0, @0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_primCmpNat0(Zero, Zero) new_lt20(x0, x1, ty_Char) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (46) 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_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare4(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, ge), gf), gg)), df), fb)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, ha)), df), fb)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, ha), df, fb) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_lt1(xuu33000, xuu34000, gh) -> new_compare(xuu33000, xuu34000, gh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt2(xuu33000, xuu34000, ha) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, ha), ha) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bah), bba), bbb)) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare3(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt0(xuu33000, xuu34000, ge, gf, gg) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt3(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare20(xuu33000, xuu34000, False, ge, gf, gg) -> new_ltEs0(xuu33000, xuu34000, ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_@2, ga), gb), fb) -> new_lt3(xuu33001, xuu34001, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, bea), beb), bdc) -> new_lt3(xuu33000, xuu34000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare22(xuu33000, xuu34000, False, hb, hc) -> new_ltEs3(xuu33000, xuu34000, hb, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_primCompAux(xuu33000, xuu34000, new_compare0(xuu33001, xuu34001, hd), hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_Either, dg), dh)) -> new_ltEs(xuu33002, xuu34002, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_Either, bbh), bca)) -> new_ltEs(xuu33001, xuu34001, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_Either, baf), bag)) -> new_ltEs(xuu33000, xuu34000, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(xuu33000, xuu34000, False, gc, gd) -> new_ltEs(xuu33000, xuu34000, gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(ty_Either, eh), fa), fb) -> new_lt(xuu33001, xuu34001, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, bda), bdb), bdc) -> new_lt(xuu33000, xuu34000, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(app(ty_@2, ef), eg)) -> new_ltEs3(xuu33002, xuu34002, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(app(ty_@2, bcg), bch)) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bbe), bbf)) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_Maybe, bac)) -> new_compare4(xuu33000, xuu34000, bac) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare1(xuu33000, xuu34000, gc, gd) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_[], ed)) -> new_ltEs1(xuu33002, xuu34002, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_[], bce)) -> new_ltEs1(xuu33001, xuu34001, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_[], bbc)) -> new_ltEs1(xuu33000, xuu34000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bbd)) -> new_ltEs2(xuu33000, xuu34000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), hd) -> new_compare(xuu33001, xuu34001, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare5(xuu33000, xuu34000, hb, hc) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, df, app(ty_Maybe, ee)) -> new_ltEs2(xuu33002, xuu34002, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bbg, app(ty_Maybe, bcf)) -> new_ltEs2(xuu33001, xuu34001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(xuu33000, xuu34000, xuu176, app(app(app(ty_@3, hg), hh), baa)) -> new_compare3(xuu33000, xuu34000, hg, hh, baa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_Maybe, fh), fb) -> new_lt2(xuu33001, xuu34001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, bdh), bdc) -> new_lt2(xuu33000, xuu34000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, hb), hc)), df), fb)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, hb), hc), df, fb) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, hb, hc), hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], bdg), bdc) -> new_lt1(xuu33000, xuu34000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], gh), df, fb) -> new_compare(xuu33000, xuu34000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(xuu33000, xuu34000, xuu176, app(ty_[], bab)) -> new_compare(xuu33000, xuu34000, bab) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_@2, bad), bae)) -> new_compare5(xuu33000, xuu34000, bad, bae) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(xuu33000, xuu34000, xuu176, app(app(ty_Either, he), hf)) -> new_compare1(xuu33000, xuu34000, he, hf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), df), fb)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, gc), gd), df, fb) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, gc, gd), gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs0(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), de, app(ty_[], fg), fb) -> new_lt1(xuu33001, xuu34001, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bc), bd), be)), bb)) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, bah), bba), bbb))) -> new_ltEs0(xuu33000, xuu34000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(app(ty_@3, bcb), bcc), bcd))) -> new_ltEs0(xuu33001, xuu34001, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, ce), cf), cg))) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs0(xuu33002, xuu34002, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_@2, ga), gb)), fb)) -> new_lt3(xuu33001, xuu34001, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, bea), beb)), bdc)) -> new_lt3(xuu33000, xuu34000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_Either, dg), dh))) -> new_ltEs(xuu33002, xuu34002, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd))) -> new_ltEs(xuu33000, xuu34000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, baf), bag))) -> new_ltEs(xuu33000, xuu34000, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb)) -> new_ltEs(xuu33000, xuu34000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_Either, bbh), bca))) -> new_ltEs(xuu33001, xuu34001, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, bda), bdb)), bdc)) -> new_lt(xuu33000, xuu34000, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(ty_Either, eh), fa)), fb)) -> new_lt(xuu33001, xuu34001, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(app(ty_@2, dc), dd))) -> new_ltEs3(xuu33000, xuu34000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bh), ca)), bb)) -> new_ltEs3(xuu33000, xuu34000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, bbe), bbf))) -> new_ltEs3(xuu33000, xuu34000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(app(ty_@2, bcg), bch))) -> new_ltEs3(xuu33001, xuu34001, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(app(ty_@2, ef), eg))) -> new_ltEs3(xuu33002, xuu34002, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_[], ed))) -> new_ltEs1(xuu33002, xuu34002, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_[], bce))) -> new_ltEs1(xuu33001, xuu34001, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bf)), bb)) -> new_ltEs1(xuu33000, xuu34000, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_[], da))) -> new_ltEs1(xuu33000, xuu34000, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], bbc))) -> new_ltEs1(xuu33000, xuu34000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), df), app(ty_Maybe, ee))) -> new_ltEs2(xuu33002, xuu34002, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, cb), app(ty_Maybe, db))) -> new_ltEs2(xuu33000, xuu34000, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, bbg), app(ty_Maybe, bcf))) -> new_ltEs2(xuu33001, xuu34001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(xuu33000, xuu34000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bg)), bb)) -> new_ltEs2(xuu33000, xuu34000, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_Maybe, fh)), fb)) -> new_lt2(xuu33001, xuu34001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, bdh)), bdc)) -> new_lt2(xuu33000, xuu34000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, bdd), bde), bdf)), bdc)) -> new_lt0(xuu33000, xuu34000, bdd, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(app(app(ty_@3, fc), fd), ff)), fb)) -> new_lt0(xuu33001, xuu34001, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], hd)) -> new_compare(xuu33001, xuu34001, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], gh)), df), fb)) -> new_compare(xuu33000, xuu34000, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], bdg)), bdc)) -> new_lt1(xuu33000, xuu34000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, de), app(ty_[], fg)), fb)) -> new_lt1(xuu33001, xuu34001, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bc), bd), be), bb) -> new_ltEs0(xuu33000, xuu34000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_ltEs0(xuu33000, xuu34000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_Either, h), ba), bb) -> new_ltEs(xuu33000, xuu34000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(xuu33000, xuu34000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bh), ca), bb) -> new_ltEs3(xuu33000, xuu34000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(app(ty_@2, dc), dd)) -> new_ltEs3(xuu33000, xuu34000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_[], bf), bb) -> new_ltEs1(xuu33000, xuu34000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_[], da)) -> new_ltEs1(xuu33000, xuu34000, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Right(xuu33000), Right(xuu34000), cb, app(ty_Maybe, db)) -> new_ltEs2(xuu33000, xuu34000, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bg), bb) -> new_ltEs2(xuu33000, xuu34000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (47) YES ---------------------------------------- (48) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (49) 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(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (50) YES ---------------------------------------- (51) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu28200), Succ(xuu9700)) -> new_primMinusNat(xuu28200, xuu9700) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (52) 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(xuu28200), Succ(xuu9700)) -> new_primMinusNat(xuu28200, xuu9700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (53) YES ---------------------------------------- (54) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu28200), Succ(xuu9700)) -> new_primPlusNat(xuu28200, xuu9700) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (55) 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(xuu28200), Succ(xuu9700)) -> new_primPlusNat(xuu28200, xuu9700) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (56) YES ---------------------------------------- (57) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu3110000, xuu6000, bdg, bdh) new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu3110000, xuu6000, bab, bac) new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu3110000, xuu6000, bbg) new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bbh) -> new_esEs2(xuu3110001, xuu6001, bbh) new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu3110000, xuu6000, bdd, bde, bdf) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(xuu3110001, xuu6001, fc, fd, ff) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_Maybe, gb), fb) -> new_esEs3(xuu3110001, xuu6001, gb) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, cb), cc), cd) -> new_esEs(xuu3110000, xuu6000, cb, cc) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(xuu3110001, xuu6001, bc, bd, be) new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bca), bcb)) -> new_esEs(xuu3110000, xuu6000, bca, bcb) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_Maybe, eg)) -> new_esEs3(xuu3110002, xuu6002, eg) new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs0(xuu3110000, xuu6000, bcc, bcd, bce) new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, beb)) -> new_esEs3(xuu3110000, xuu6000, beb) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(xuu3110000, xuu6000, gc, gd) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, gh), ha), df, fb) -> new_esEs1(xuu3110000, xuu6000, gh, ha) new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_[], bbf)) -> new_esEs2(xuu3110000, xuu6000, bbf) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, hc), df, fb) -> new_esEs3(xuu3110000, xuu6000, hc) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_Maybe, ca)) -> new_esEs3(xuu3110001, xuu6001, ca) new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu3110000, xuu6000, bae) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, dd), cd) -> new_esEs3(xuu3110000, xuu6000, dd) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(xuu3110002, xuu6002, ea, eb, ec) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_@2, ba), bb)) -> new_esEs(xuu3110001, xuu6001, ba, bb) new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu3110000, xuu6000, hg, hh, baa) new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_[], bea)) -> new_esEs2(xuu3110000, xuu6000, bea) new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu3110000, xuu6000, hd, he) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_Either, bf), bg)) -> new_esEs1(xuu3110001, xuu6001, bf, bg) new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bcf), bcg)) -> new_esEs1(xuu3110000, xuu6000, bcf, bcg) new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bda)) -> new_esEs3(xuu3110000, xuu6000, bda) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, da), db), cd) -> new_esEs1(xuu3110000, xuu6000, da, db) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_Either, fg), fh), fb) -> new_esEs1(xuu3110001, xuu6001, fg, fh) new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu3110000, xuu6000, bdb, bdc) new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu3110000, xuu6000, bba, bbb, bbc) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(xuu3110001, xuu6001, eh, fa) new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], bch)) -> new_esEs2(xuu3110000, xuu6000, bch) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_[], ef)) -> new_esEs2(xuu3110002, xuu6002, ef) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(xuu3110002, xuu6002, dg, dh) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(xuu3110000, xuu6000, ce, cf, cg) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_[], ga), fb) -> new_esEs2(xuu3110001, xuu6001, ga) new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu3110000, xuu6000, bag, bah) new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], bad), hf) -> new_esEs2(xuu3110000, xuu6000, bad) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], hb), df, fb) -> new_esEs2(xuu3110000, xuu6000, hb) new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu3110000, xuu6000, bbd, bbe) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_[], bh)) -> new_esEs2(xuu3110001, xuu6001, bh) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(xuu3110000, xuu6000, ge, gf, gg) new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_Either, ed), ee)) -> new_esEs1(xuu3110002, xuu6002, ed, ee) new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], dc), cd) -> new_esEs2(xuu3110000, xuu6000, dc) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (58) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, beb)) -> new_esEs3(xuu3110000, xuu6000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu3110000, xuu6000, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bda)) -> new_esEs3(xuu3110000, xuu6000, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bcf), bcg)) -> new_esEs1(xuu3110000, xuu6000, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(ty_[], bea)) -> new_esEs2(xuu3110000, xuu6000, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu3110000, xuu6000, bdd, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu3110000, xuu6000, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs0(xuu3110000, xuu6000, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bca), bcb)) -> new_esEs(xuu3110000, xuu6000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_Maybe, bbg)) -> new_esEs3(xuu3110000, xuu6000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, bae), hf) -> new_esEs3(xuu3110000, xuu6000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu3110000, xuu6000, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu3110000, xuu6000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(ty_[], bbf)) -> new_esEs2(xuu3110000, xuu6000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(ty_[], bad), hf) -> new_esEs2(xuu3110000, xuu6000, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu3110000, xuu6000, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu3110000, xuu6000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu3110000, xuu6000, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(xuu3110000), Right(xuu6000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu3110000, xuu6000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_Maybe, gb), fb) -> new_esEs3(xuu3110001, xuu6001, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_Maybe, eg)) -> new_esEs3(xuu3110002, xuu6002, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, hc), df, fb) -> new_esEs3(xuu3110000, xuu6000, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_Maybe, ca)) -> new_esEs3(xuu3110001, xuu6001, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, dd), cd) -> new_esEs3(xuu3110000, xuu6000, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, gh), ha), df, fb) -> new_esEs1(xuu3110000, xuu6000, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_Either, fg), fh), fb) -> new_esEs1(xuu3110001, xuu6001, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_Either, ed), ee)) -> new_esEs1(xuu3110002, xuu6002, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_Either, bf), bg)) -> new_esEs1(xuu3110001, xuu6001, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, da), db), cd) -> new_esEs1(xuu3110000, xuu6000, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bbh) -> new_esEs2(xuu3110001, xuu6001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], bch)) -> new_esEs2(xuu3110000, xuu6000, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(ty_[], ef)) -> new_esEs2(xuu3110002, xuu6002, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(ty_[], ga), fb) -> new_esEs2(xuu3110001, xuu6001, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], hb), df, fb) -> new_esEs2(xuu3110000, xuu6000, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(ty_[], bh)) -> new_esEs2(xuu3110001, xuu6001, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], dc), cd) -> new_esEs2(xuu3110000, xuu6000, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(xuu3110001, xuu6001, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(xuu3110002, xuu6002, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(xuu3110000, xuu6000, ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(xuu3110000, xuu6000, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(xuu3110001, xuu6001, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(xuu3110002, xuu6002, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(xuu3110001, xuu6001, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(xuu3110000, xuu6000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, cb), cc), cd) -> new_esEs(xuu3110000, xuu6000, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), h, app(app(ty_@2, ba), bb)) -> new_esEs(xuu3110001, xuu6001, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (59) YES