/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 56 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) DependencyGraphProof [EQUIVALENT, 0 ms] (43) AND (44) QDP (45) TransformationProof [EQUIVALENT, 1243 ms] (46) QDP (47) DependencyGraphProof [EQUIVALENT, 0 ms] (48) QDP (49) TransformationProof [EQUIVALENT, 0 ms] (50) QDP (51) TransformationProof [EQUIVALENT, 0 ms] (52) QDP (53) TransformationProof [EQUIVALENT, 0 ms] (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 b a 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 :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = 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 :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "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 b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord 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 a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = 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; } ---------------------------------------- (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 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 a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> 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 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 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 a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap 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 _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = 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; } ---------------------------------------- (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 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 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 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 :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 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; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r 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 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 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 b a -> 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 "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 "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 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 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 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 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 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 :: (b -> a -> c -> c) -> c -> FiniteMap b a -> 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; 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 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 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'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " 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 "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " "reduce2D wxw wxx = gcd wxw wxx; " "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 "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_l wxy wxz wyu wyv = sizeFM wxy; " "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 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "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); " "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; " "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; " "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; " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM 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_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 wxz wyu fm_lr fm_r); " "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 wxz wyu fm_l 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; " "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); " "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); " "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 wxz wyu fm_lrr 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; " 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 "mkBranchUnbox wyx wyy wyz x = x; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_size wyx wyy wyz = sizeFM wyy; " "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; " "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; " "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; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; " 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 wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; " 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 a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 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 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 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 :: (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; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 2); mkBalBranch6Double_L 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 wxz wyu 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 wxz wyu 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 wxz wyu 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 wxz wyu fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 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_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz 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_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 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 wyy; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (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 :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L 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))))))) wxz wyu 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))))))))))))) wxz wyu 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))))) wxz wyu 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)))))))))) wxz wyu fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 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_l fm_r; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz 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_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyx; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (Pos (Succ Zero) + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 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 wyy; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (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.addListToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 xuu3 xuu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];4011[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 4011[label="",style="solid", color="burlywood", weight=9]; 4011 -> 7[label="",style="solid", color="burlywood", weight=3]; 4012[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 4012[label="",style="solid", color="burlywood", weight=9]; 4012 -> 8[label="",style="solid", color="burlywood", weight=3]; 7[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 (xuu40 : xuu41)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9 -> 6[label="",style="dashed", color="red", weight=0]; 9[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40) xuu41",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];4013[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 4013[label="",style="solid", color="burlywood", weight=9]; 4013 -> 13[label="",style="solid", color="burlywood", weight=3]; 12[label="xuu41",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 (xuu400,xuu401)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];4014[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 4014[label="",style="solid", color="burlywood", weight=9]; 4014 -> 15[label="",style="solid", color="burlywood", weight=3]; 4015[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 4015[label="",style="solid", color="burlywood", weight=9]; 4015 -> 16[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 16[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (xuu400 < xuu30)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 21[label="FiniteMap.Branch xuu400 xuu401 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 21 -> 24[label="",style="dashed", color="green", weight=3]; 22[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare xuu400 xuu30 == LT)",fontsize=16,color="black",shape="box"];22 -> 25[label="",style="solid", color="black", weight=3]; 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 26[label="",style="solid", color="black", weight=3]; 24 -> 23[label="",style="dashed", color="red", weight=0]; 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare3 xuu400 xuu30 == LT)",fontsize=16,color="black",shape="box"];25 -> 27[label="",style="solid", color="black", weight=3]; 26[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];27[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare2 xuu400 xuu30 (xuu400 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4016[label="xuu400/Nothing",fontsize=10,color="white",style="solid",shape="box"];27 -> 4016[label="",style="solid", color="burlywood", weight=9]; 4016 -> 28[label="",style="solid", color="burlywood", weight=3]; 4017[label="xuu400/Just xuu4000",fontsize=10,color="white",style="solid",shape="box"];27 -> 4017[label="",style="solid", color="burlywood", weight=9]; 4017 -> 29[label="",style="solid", color="burlywood", weight=3]; 28[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing xuu30 (Nothing == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4018[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];28 -> 4018[label="",style="solid", color="burlywood", weight=9]; 4018 -> 30[label="",style="solid", color="burlywood", weight=3]; 4019[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];28 -> 4019[label="",style="solid", color="burlywood", weight=9]; 4019 -> 31[label="",style="solid", color="burlywood", weight=3]; 29[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) xuu30 (Just xuu4000 == xuu30) == LT)",fontsize=16,color="burlywood",shape="box"];4020[label="xuu30/Nothing",fontsize=10,color="white",style="solid",shape="box"];29 -> 4020[label="",style="solid", color="burlywood", weight=9]; 4020 -> 32[label="",style="solid", color="burlywood", weight=3]; 4021[label="xuu30/Just xuu300",fontsize=10,color="white",style="solid",shape="box"];29 -> 4021[label="",style="solid", color="burlywood", weight=9]; 4021 -> 33[label="",style="solid", color="burlywood", weight=3]; 30[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 31[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing (Just xuu300) (Nothing == Just xuu300) == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 32[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) Nothing (Just xuu4000 == Nothing) == LT)",fontsize=16,color="black",shape="box"];32 -> 36[label="",style="solid", color="black", weight=3]; 33[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) (Just xuu300) (Just xuu4000 == Just xuu300) == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 34[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 35 -> 95[label="",style="dashed", color="red", weight=0]; 35[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (compare2 Nothing (Just xuu300) False == LT)",fontsize=16,color="magenta"];35 -> 96[label="",style="dashed", color="magenta", weight=3]; 36 -> 104[label="",style="dashed", color="red", weight=0]; 36[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) Nothing False == LT)",fontsize=16,color="magenta"];36 -> 105[label="",style="dashed", color="magenta", weight=3]; 37 -> 151[label="",style="dashed", color="red", weight=0]; 37[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300) == LT)",fontsize=16,color="magenta"];37 -> 152[label="",style="dashed", color="magenta", weight=3]; 37 -> 153[label="",style="dashed", color="magenta", weight=3]; 37 -> 154[label="",style="dashed", color="magenta", weight=3]; 37 -> 155[label="",style="dashed", color="magenta", weight=3]; 37 -> 156[label="",style="dashed", color="magenta", weight=3]; 37 -> 157[label="",style="dashed", color="magenta", weight=3]; 37 -> 158[label="",style="dashed", color="magenta", weight=3]; 37 -> 159[label="",style="dashed", color="magenta", weight=3]; 38[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (EQ == LT)",fontsize=16,color="black",shape="box"];38 -> 50[label="",style="solid", color="black", weight=3]; 96 -> 65[label="",style="dashed", color="red", weight=0]; 96[label="compare2 Nothing (Just xuu300) False == LT",fontsize=16,color="magenta"];96 -> 100[label="",style="dashed", color="magenta", weight=3]; 96 -> 101[label="",style="dashed", color="magenta", weight=3]; 95[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 xuu22",fontsize=16,color="burlywood",shape="triangle"];4022[label="xuu22/False",fontsize=10,color="white",style="solid",shape="box"];95 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 102[label="",style="solid", color="burlywood", weight=3]; 4023[label="xuu22/True",fontsize=10,color="white",style="solid",shape="box"];95 -> 4023[label="",style="solid", color="burlywood", weight=9]; 4023 -> 103[label="",style="solid", color="burlywood", weight=3]; 105 -> 65[label="",style="dashed", color="red", weight=0]; 105[label="compare2 (Just xuu4000) Nothing False == LT",fontsize=16,color="magenta"];105 -> 109[label="",style="dashed", color="magenta", weight=3]; 105 -> 110[label="",style="dashed", color="magenta", weight=3]; 104[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 xuu23",fontsize=16,color="burlywood",shape="triangle"];4024[label="xuu23/False",fontsize=10,color="white",style="solid",shape="box"];104 -> 4024[label="",style="solid", color="burlywood", weight=9]; 4024 -> 111[label="",style="solid", color="burlywood", weight=3]; 4025[label="xuu23/True",fontsize=10,color="white",style="solid",shape="box"];104 -> 4025[label="",style="solid", color="burlywood", weight=9]; 4025 -> 112[label="",style="solid", color="burlywood", weight=3]; 152[label="xuu34",fontsize=16,color="green",shape="box"];153[label="xuu300",fontsize=16,color="green",shape="box"];154[label="xuu401",fontsize=16,color="green",shape="box"];155[label="xuu33",fontsize=16,color="green",shape="box"];156[label="xuu4000",fontsize=16,color="green",shape="box"];157 -> 65[label="",style="dashed", color="red", weight=0]; 157[label="compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300) == LT",fontsize=16,color="magenta"];157 -> 163[label="",style="dashed", color="magenta", weight=3]; 157 -> 164[label="",style="dashed", color="magenta", weight=3]; 158[label="xuu31",fontsize=16,color="green",shape="box"];159[label="xuu32",fontsize=16,color="green",shape="box"];151[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 xuu24",fontsize=16,color="burlywood",shape="triangle"];4026[label="xuu24/False",fontsize=10,color="white",style="solid",shape="box"];151 -> 4026[label="",style="solid", color="burlywood", weight=9]; 4026 -> 165[label="",style="solid", color="burlywood", weight=3]; 4027[label="xuu24/True",fontsize=10,color="white",style="solid",shape="box"];151 -> 4027[label="",style="solid", color="burlywood", weight=9]; 4027 -> 166[label="",style="solid", color="burlywood", weight=3]; 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];50 -> 69[label="",style="solid", color="black", weight=3]; 100 -> 1973[label="",style="dashed", color="red", weight=0]; 100[label="compare2 Nothing (Just xuu300) False",fontsize=16,color="magenta"];100 -> 1974[label="",style="dashed", color="magenta", weight=3]; 100 -> 1975[label="",style="dashed", color="magenta", weight=3]; 100 -> 1976[label="",style="dashed", color="magenta", weight=3]; 101[label="LT",fontsize=16,color="green",shape="box"];65[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4028[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];65 -> 4028[label="",style="solid", color="burlywood", weight=9]; 4028 -> 88[label="",style="solid", color="burlywood", weight=3]; 4029[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];65 -> 4029[label="",style="solid", color="burlywood", weight=9]; 4029 -> 89[label="",style="solid", color="burlywood", weight=3]; 4030[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];65 -> 4030[label="",style="solid", color="burlywood", weight=9]; 4030 -> 90[label="",style="solid", color="burlywood", weight=3]; 102[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];102 -> 114[label="",style="solid", color="black", weight=3]; 103[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];103 -> 115[label="",style="solid", color="black", weight=3]; 109 -> 1973[label="",style="dashed", color="red", weight=0]; 109[label="compare2 (Just xuu4000) Nothing False",fontsize=16,color="magenta"];109 -> 1977[label="",style="dashed", color="magenta", weight=3]; 109 -> 1978[label="",style="dashed", color="magenta", weight=3]; 109 -> 1979[label="",style="dashed", color="magenta", weight=3]; 110[label="LT",fontsize=16,color="green",shape="box"];111[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];111 -> 168[label="",style="solid", color="black", weight=3]; 112[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];112 -> 169[label="",style="solid", color="black", weight=3]; 163 -> 1973[label="",style="dashed", color="red", weight=0]; 163[label="compare2 (Just xuu4000) (Just xuu300) (xuu4000 == xuu300)",fontsize=16,color="magenta"];163 -> 1980[label="",style="dashed", color="magenta", weight=3]; 163 -> 1981[label="",style="dashed", color="magenta", weight=3]; 163 -> 1982[label="",style="dashed", color="magenta", weight=3]; 164[label="LT",fontsize=16,color="green",shape="box"];165[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 False",fontsize=16,color="black",shape="box"];165 -> 178[label="",style="solid", color="black", weight=3]; 166[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 True",fontsize=16,color="black",shape="box"];166 -> 179[label="",style="solid", color="black", weight=3]; 69 -> 205[label="",style="dashed", color="red", weight=0]; 69[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (Nothing > Nothing)",fontsize=16,color="magenta"];69 -> 206[label="",style="dashed", color="magenta", weight=3]; 1974[label="Nothing",fontsize=16,color="green",shape="box"];1975[label="Just xuu300",fontsize=16,color="green",shape="box"];1976[label="False",fontsize=16,color="green",shape="box"];1973[label="compare2 xuu300 xuu310 xuu103",fontsize=16,color="burlywood",shape="triangle"];4031[label="xuu103/False",fontsize=10,color="white",style="solid",shape="box"];1973 -> 4031[label="",style="solid", color="burlywood", weight=9]; 4031 -> 2008[label="",style="solid", color="burlywood", weight=3]; 4032[label="xuu103/True",fontsize=10,color="white",style="solid",shape="box"];1973 -> 4032[label="",style="solid", color="burlywood", weight=9]; 4032 -> 2009[label="",style="solid", color="burlywood", weight=3]; 88[label="LT == xuu300",fontsize=16,color="burlywood",shape="box"];4033[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];88 -> 4033[label="",style="solid", color="burlywood", weight=9]; 4033 -> 116[label="",style="solid", color="burlywood", weight=3]; 4034[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];88 -> 4034[label="",style="solid", color="burlywood", weight=9]; 4034 -> 117[label="",style="solid", color="burlywood", weight=3]; 4035[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];88 -> 4035[label="",style="solid", color="burlywood", weight=9]; 4035 -> 118[label="",style="solid", color="burlywood", weight=3]; 89[label="EQ == xuu300",fontsize=16,color="burlywood",shape="box"];4036[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];89 -> 4036[label="",style="solid", color="burlywood", weight=9]; 4036 -> 119[label="",style="solid", color="burlywood", weight=3]; 4037[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];89 -> 4037[label="",style="solid", color="burlywood", weight=9]; 4037 -> 120[label="",style="solid", color="burlywood", weight=3]; 4038[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];89 -> 4038[label="",style="solid", color="burlywood", weight=9]; 4038 -> 121[label="",style="solid", color="burlywood", weight=3]; 90[label="GT == xuu300",fontsize=16,color="burlywood",shape="box"];4039[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];90 -> 4039[label="",style="solid", color="burlywood", weight=9]; 4039 -> 122[label="",style="solid", color="burlywood", weight=3]; 4040[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];90 -> 4040[label="",style="solid", color="burlywood", weight=9]; 4040 -> 123[label="",style="solid", color="burlywood", weight=3]; 4041[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];90 -> 4041[label="",style="solid", color="burlywood", weight=9]; 4041 -> 124[label="",style="solid", color="burlywood", weight=3]; 114 -> 221[label="",style="dashed", color="red", weight=0]; 114[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 (Nothing > Just xuu300)",fontsize=16,color="magenta"];114 -> 222[label="",style="dashed", color="magenta", weight=3]; 115 -> 172[label="",style="dashed", color="red", weight=0]; 115[label="FiniteMap.mkBalBranch (Just xuu300) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 Nothing xuu401) xuu34",fontsize=16,color="magenta"];115 -> 173[label="",style="dashed", color="magenta", weight=3]; 1977[label="Just xuu4000",fontsize=16,color="green",shape="box"];1978[label="Nothing",fontsize=16,color="green",shape="box"];1979[label="False",fontsize=16,color="green",shape="box"];168 -> 231[label="",style="dashed", color="red", weight=0]; 168[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 (Just xuu4000 > Nothing)",fontsize=16,color="magenta"];168 -> 232[label="",style="dashed", color="magenta", weight=3]; 169 -> 182[label="",style="dashed", color="red", weight=0]; 169[label="FiniteMap.mkBalBranch Nothing xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Just xuu4000) xuu401) xuu34",fontsize=16,color="magenta"];169 -> 183[label="",style="dashed", color="magenta", weight=3]; 1980[label="Just xuu4000",fontsize=16,color="green",shape="box"];1981[label="Just xuu300",fontsize=16,color="green",shape="box"];1982[label="xuu4000 == xuu300",fontsize=16,color="blue",shape="box"];4042[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4042[label="",style="solid", color="blue", weight=9]; 4042 -> 2010[label="",style="solid", color="blue", weight=3]; 4043[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4043[label="",style="solid", color="blue", weight=9]; 4043 -> 2011[label="",style="solid", color="blue", weight=3]; 4044[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4044[label="",style="solid", color="blue", weight=9]; 4044 -> 2012[label="",style="solid", color="blue", weight=3]; 4045[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4045[label="",style="solid", color="blue", weight=9]; 4045 -> 2013[label="",style="solid", color="blue", weight=3]; 4046[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4046[label="",style="solid", color="blue", weight=9]; 4046 -> 2014[label="",style="solid", color="blue", weight=3]; 4047[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4047[label="",style="solid", color="blue", weight=9]; 4047 -> 2015[label="",style="solid", color="blue", weight=3]; 4048[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4048[label="",style="solid", color="blue", weight=9]; 4048 -> 2016[label="",style="solid", color="blue", weight=3]; 4049[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4049[label="",style="solid", color="blue", weight=9]; 4049 -> 2017[label="",style="solid", color="blue", weight=3]; 4050[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4050[label="",style="solid", color="blue", weight=9]; 4050 -> 2018[label="",style="solid", color="blue", weight=3]; 4051[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4051[label="",style="solid", color="blue", weight=9]; 4051 -> 2019[label="",style="solid", color="blue", weight=3]; 4052[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4052[label="",style="solid", color="blue", weight=9]; 4052 -> 2020[label="",style="solid", color="blue", weight=3]; 4053[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 2021[label="",style="solid", color="blue", weight=3]; 4054[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4054[label="",style="solid", color="blue", weight=9]; 4054 -> 2022[label="",style="solid", color="blue", weight=3]; 4055[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1982 -> 4055[label="",style="solid", color="blue", weight=9]; 4055 -> 2023[label="",style="solid", color="blue", weight=3]; 178 -> 259[label="",style="dashed", color="red", weight=0]; 178[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 (Just xuu19 > Just xuu14)",fontsize=16,color="magenta"];178 -> 260[label="",style="dashed", color="magenta", weight=3]; 179 -> 172[label="",style="dashed", color="red", weight=0]; 179[label="FiniteMap.mkBalBranch (Just xuu14) xuu15 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Just xuu19) xuu20) xuu18",fontsize=16,color="magenta"];179 -> 201[label="",style="dashed", color="magenta", weight=3]; 179 -> 202[label="",style="dashed", color="magenta", weight=3]; 179 -> 203[label="",style="dashed", color="magenta", weight=3]; 179 -> 204[label="",style="dashed", color="magenta", weight=3]; 206[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];206 -> 208[label="",style="solid", color="black", weight=3]; 205[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 xuu34",fontsize=16,color="burlywood",shape="triangle"];4056[label="xuu34/False",fontsize=10,color="white",style="solid",shape="box"];205 -> 4056[label="",style="solid", color="burlywood", weight=9]; 4056 -> 209[label="",style="solid", color="burlywood", weight=3]; 4057[label="xuu34/True",fontsize=10,color="white",style="solid",shape="box"];205 -> 4057[label="",style="solid", color="burlywood", weight=9]; 4057 -> 210[label="",style="solid", color="burlywood", weight=3]; 2008[label="compare2 xuu300 xuu310 False",fontsize=16,color="black",shape="box"];2008 -> 2030[label="",style="solid", color="black", weight=3]; 2009[label="compare2 xuu300 xuu310 True",fontsize=16,color="black",shape="box"];2009 -> 2031[label="",style="solid", color="black", weight=3]; 116[label="LT == LT",fontsize=16,color="black",shape="box"];116 -> 212[label="",style="solid", color="black", weight=3]; 117[label="LT == EQ",fontsize=16,color="black",shape="box"];117 -> 213[label="",style="solid", color="black", weight=3]; 118[label="LT == GT",fontsize=16,color="black",shape="box"];118 -> 214[label="",style="solid", color="black", weight=3]; 119[label="EQ == LT",fontsize=16,color="black",shape="box"];119 -> 215[label="",style="solid", color="black", weight=3]; 120[label="EQ == EQ",fontsize=16,color="black",shape="box"];120 -> 216[label="",style="solid", color="black", weight=3]; 121[label="EQ == GT",fontsize=16,color="black",shape="box"];121 -> 217[label="",style="solid", color="black", weight=3]; 122[label="GT == LT",fontsize=16,color="black",shape="box"];122 -> 218[label="",style="solid", color="black", weight=3]; 123[label="GT == EQ",fontsize=16,color="black",shape="box"];123 -> 219[label="",style="solid", color="black", weight=3]; 124[label="GT == GT",fontsize=16,color="black",shape="box"];124 -> 220[label="",style="solid", color="black", weight=3]; 222[label="Nothing > Just xuu300",fontsize=16,color="black",shape="box"];222 -> 224[label="",style="solid", color="black", weight=3]; 221[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 xuu35",fontsize=16,color="burlywood",shape="triangle"];4058[label="xuu35/False",fontsize=10,color="white",style="solid",shape="box"];221 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 225[label="",style="solid", color="burlywood", weight=3]; 4059[label="xuu35/True",fontsize=10,color="white",style="solid",shape="box"];221 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 226[label="",style="solid", color="burlywood", weight=3]; 173 -> 14[label="",style="dashed", color="red", weight=0]; 173[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 Nothing xuu401",fontsize=16,color="magenta"];173 -> 227[label="",style="dashed", color="magenta", weight=3]; 173 -> 228[label="",style="dashed", color="magenta", weight=3]; 172[label="FiniteMap.mkBalBranch (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="black",shape="triangle"];172 -> 229[label="",style="solid", color="black", weight=3]; 232[label="Just xuu4000 > Nothing",fontsize=16,color="black",shape="box"];232 -> 234[label="",style="solid", color="black", weight=3]; 231[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 xuu36",fontsize=16,color="burlywood",shape="triangle"];4060[label="xuu36/False",fontsize=10,color="white",style="solid",shape="box"];231 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 235[label="",style="solid", color="burlywood", weight=3]; 4061[label="xuu36/True",fontsize=10,color="white",style="solid",shape="box"];231 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 236[label="",style="solid", color="burlywood", weight=3]; 183 -> 14[label="",style="dashed", color="red", weight=0]; 183[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 (Just xuu4000) xuu401",fontsize=16,color="magenta"];183 -> 237[label="",style="dashed", color="magenta", weight=3]; 183 -> 238[label="",style="dashed", color="magenta", weight=3]; 182[label="FiniteMap.mkBalBranch Nothing xuu31 xuu33 xuu34",fontsize=16,color="black",shape="triangle"];182 -> 239[label="",style="solid", color="black", weight=3]; 2010[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2010 -> 2032[label="",style="solid", color="black", weight=3]; 2011[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4062[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];2011 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 2033[label="",style="solid", color="burlywood", weight=3]; 4063[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];2011 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 2034[label="",style="solid", color="burlywood", weight=3]; 2012[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4064[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];2012 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 2035[label="",style="solid", color="burlywood", weight=3]; 4065[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];2012 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 2036[label="",style="solid", color="burlywood", weight=3]; 2013[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4066[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2013 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 2037[label="",style="solid", color="burlywood", weight=3]; 4067[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];2013 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 2038[label="",style="solid", color="burlywood", weight=3]; 2014[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4068[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];2014 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 2039[label="",style="solid", color="burlywood", weight=3]; 2015[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2015 -> 2040[label="",style="solid", color="black", weight=3]; 2016[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4069[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];2016 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 2041[label="",style="solid", color="burlywood", weight=3]; 2017[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4070[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];2017 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 2042[label="",style="solid", color="burlywood", weight=3]; 2018[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4071[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];2018 -> 4071[label="",style="solid", color="burlywood", weight=9]; 4071 -> 2043[label="",style="solid", color="burlywood", weight=3]; 4072[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];2018 -> 4072[label="",style="solid", color="burlywood", weight=9]; 4072 -> 2044[label="",style="solid", color="burlywood", weight=3]; 2019[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2019 -> 2045[label="",style="solid", color="black", weight=3]; 2020[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4073[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];2020 -> 4073[label="",style="solid", color="burlywood", weight=9]; 4073 -> 2046[label="",style="solid", color="burlywood", weight=3]; 2021[label="xuu4000 == xuu300",fontsize=16,color="burlywood",shape="triangle"];4074[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];2021 -> 4074[label="",style="solid", color="burlywood", weight=9]; 4074 -> 2047[label="",style="solid", color="burlywood", weight=3]; 2022 -> 65[label="",style="dashed", color="red", weight=0]; 2022[label="xuu4000 == xuu300",fontsize=16,color="magenta"];2023[label="xuu4000 == xuu300",fontsize=16,color="black",shape="triangle"];2023 -> 2048[label="",style="solid", color="black", weight=3]; 260[label="Just xuu19 > Just xuu14",fontsize=16,color="black",shape="box"];260 -> 262[label="",style="solid", color="black", weight=3]; 259[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 xuu37",fontsize=16,color="burlywood",shape="triangle"];4075[label="xuu37/False",fontsize=10,color="white",style="solid",shape="box"];259 -> 4075[label="",style="solid", color="burlywood", weight=9]; 4075 -> 263[label="",style="solid", color="burlywood", weight=3]; 4076[label="xuu37/True",fontsize=10,color="white",style="solid",shape="box"];259 -> 4076[label="",style="solid", color="burlywood", weight=9]; 4076 -> 264[label="",style="solid", color="burlywood", weight=3]; 201 -> 14[label="",style="dashed", color="red", weight=0]; 201[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu17 (Just xuu19) xuu20",fontsize=16,color="magenta"];201 -> 265[label="",style="dashed", color="magenta", weight=3]; 201 -> 266[label="",style="dashed", color="magenta", weight=3]; 201 -> 267[label="",style="dashed", color="magenta", weight=3]; 202[label="xuu15",fontsize=16,color="green",shape="box"];203[label="xuu18",fontsize=16,color="green",shape="box"];204[label="xuu14",fontsize=16,color="green",shape="box"];208 -> 65[label="",style="dashed", color="red", weight=0]; 208[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];208 -> 268[label="",style="dashed", color="magenta", weight=3]; 208 -> 269[label="",style="dashed", color="magenta", weight=3]; 209[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];209 -> 270[label="",style="solid", color="black", weight=3]; 210[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];210 -> 271[label="",style="solid", color="black", weight=3]; 2030[label="compare1 xuu300 xuu310 (xuu300 <= xuu310)",fontsize=16,color="burlywood",shape="box"];4077[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4077[label="",style="solid", color="burlywood", weight=9]; 4077 -> 2075[label="",style="solid", color="burlywood", weight=3]; 4078[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4078[label="",style="solid", color="burlywood", weight=9]; 4078 -> 2076[label="",style="solid", color="burlywood", weight=3]; 2031[label="EQ",fontsize=16,color="green",shape="box"];212[label="True",fontsize=16,color="green",shape="box"];213[label="False",fontsize=16,color="green",shape="box"];214[label="False",fontsize=16,color="green",shape="box"];215[label="False",fontsize=16,color="green",shape="box"];216[label="True",fontsize=16,color="green",shape="box"];217[label="False",fontsize=16,color="green",shape="box"];218[label="False",fontsize=16,color="green",shape="box"];219[label="False",fontsize=16,color="green",shape="box"];220[label="True",fontsize=16,color="green",shape="box"];224 -> 65[label="",style="dashed", color="red", weight=0]; 224[label="compare Nothing (Just xuu300) == GT",fontsize=16,color="magenta"];224 -> 272[label="",style="dashed", color="magenta", weight=3]; 224 -> 273[label="",style="dashed", color="magenta", weight=3]; 225[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 False",fontsize=16,color="black",shape="box"];225 -> 274[label="",style="solid", color="black", weight=3]; 226[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];226 -> 275[label="",style="solid", color="black", weight=3]; 227[label="xuu33",fontsize=16,color="green",shape="box"];228[label="Nothing",fontsize=16,color="green",shape="box"];229[label="FiniteMap.mkBalBranch6 (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="black",shape="box"];229 -> 276[label="",style="solid", color="black", weight=3]; 234 -> 65[label="",style="dashed", color="red", weight=0]; 234[label="compare (Just xuu4000) Nothing == GT",fontsize=16,color="magenta"];234 -> 278[label="",style="dashed", color="magenta", weight=3]; 234 -> 279[label="",style="dashed", color="magenta", weight=3]; 235[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 False",fontsize=16,color="black",shape="box"];235 -> 280[label="",style="solid", color="black", weight=3]; 236[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];236 -> 281[label="",style="solid", color="black", weight=3]; 237[label="xuu33",fontsize=16,color="green",shape="box"];238[label="Just xuu4000",fontsize=16,color="green",shape="box"];239[label="FiniteMap.mkBalBranch6 Nothing xuu31 xuu33 xuu34",fontsize=16,color="black",shape="box"];239 -> 282[label="",style="solid", color="black", weight=3]; 2032[label="primEqInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];4079[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];2032 -> 4079[label="",style="solid", color="burlywood", weight=9]; 4079 -> 2077[label="",style="solid", color="burlywood", weight=3]; 4080[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];2032 -> 4080[label="",style="solid", color="burlywood", weight=9]; 4080 -> 2078[label="",style="solid", color="burlywood", weight=3]; 2033[label="xuu40000 : xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4081[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2033 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 2079[label="",style="solid", color="burlywood", weight=3]; 4082[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2033 -> 4082[label="",style="solid", color="burlywood", weight=9]; 4082 -> 2080[label="",style="solid", color="burlywood", weight=3]; 2034[label="[] == xuu300",fontsize=16,color="burlywood",shape="box"];4083[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];2034 -> 4083[label="",style="solid", color="burlywood", weight=9]; 4083 -> 2081[label="",style="solid", color="burlywood", weight=3]; 4084[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];2034 -> 4084[label="",style="solid", color="burlywood", weight=9]; 4084 -> 2082[label="",style="solid", color="burlywood", weight=3]; 2035[label="Left xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4085[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4085[label="",style="solid", color="burlywood", weight=9]; 4085 -> 2083[label="",style="solid", color="burlywood", weight=3]; 4086[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2035 -> 4086[label="",style="solid", color="burlywood", weight=9]; 4086 -> 2084[label="",style="solid", color="burlywood", weight=3]; 2036[label="Right xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4087[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];2036 -> 4087[label="",style="solid", color="burlywood", weight=9]; 4087 -> 2085[label="",style="solid", color="burlywood", weight=3]; 4088[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];2036 -> 4088[label="",style="solid", color="burlywood", weight=9]; 4088 -> 2086[label="",style="solid", color="burlywood", weight=3]; 2037[label="Nothing == xuu300",fontsize=16,color="burlywood",shape="box"];4089[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2037 -> 4089[label="",style="solid", color="burlywood", weight=9]; 4089 -> 2087[label="",style="solid", color="burlywood", weight=3]; 4090[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2037 -> 4090[label="",style="solid", color="burlywood", weight=9]; 4090 -> 2088[label="",style="solid", color="burlywood", weight=3]; 2038[label="Just xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4091[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2038 -> 4091[label="",style="solid", color="burlywood", weight=9]; 4091 -> 2089[label="",style="solid", color="burlywood", weight=3]; 4092[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];2038 -> 4092[label="",style="solid", color="burlywood", weight=9]; 4092 -> 2090[label="",style="solid", color="burlywood", weight=3]; 2039[label="(xuu40000,xuu40001,xuu40002) == xuu300",fontsize=16,color="burlywood",shape="box"];4093[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4093[label="",style="solid", color="burlywood", weight=9]; 4093 -> 2091[label="",style="solid", color="burlywood", weight=3]; 2040[label="primEqChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4094[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4094[label="",style="solid", color="burlywood", weight=9]; 4094 -> 2092[label="",style="solid", color="burlywood", weight=3]; 2041[label="Integer xuu40000 == xuu300",fontsize=16,color="burlywood",shape="box"];4095[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];2041 -> 4095[label="",style="solid", color="burlywood", weight=9]; 4095 -> 2093[label="",style="solid", color="burlywood", weight=3]; 2042[label="() == xuu300",fontsize=16,color="burlywood",shape="box"];4096[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];2042 -> 4096[label="",style="solid", color="burlywood", weight=9]; 4096 -> 2094[label="",style="solid", color="burlywood", weight=3]; 2043[label="False == xuu300",fontsize=16,color="burlywood",shape="box"];4097[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2043 -> 4097[label="",style="solid", color="burlywood", weight=9]; 4097 -> 2095[label="",style="solid", color="burlywood", weight=3]; 4098[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2043 -> 4098[label="",style="solid", color="burlywood", weight=9]; 4098 -> 2096[label="",style="solid", color="burlywood", weight=3]; 2044[label="True == xuu300",fontsize=16,color="burlywood",shape="box"];4099[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];2044 -> 4099[label="",style="solid", color="burlywood", weight=9]; 4099 -> 2097[label="",style="solid", color="burlywood", weight=3]; 4100[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];2044 -> 4100[label="",style="solid", color="burlywood", weight=9]; 4100 -> 2098[label="",style="solid", color="burlywood", weight=3]; 2045[label="primEqFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4101[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2045 -> 4101[label="",style="solid", color="burlywood", weight=9]; 4101 -> 2099[label="",style="solid", color="burlywood", weight=3]; 2046[label="(xuu40000,xuu40001) == xuu300",fontsize=16,color="burlywood",shape="box"];4102[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4102[label="",style="solid", color="burlywood", weight=9]; 4102 -> 2100[label="",style="solid", color="burlywood", weight=3]; 2047[label="xuu40000 :% xuu40001 == xuu300",fontsize=16,color="burlywood",shape="box"];4103[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4103[label="",style="solid", color="burlywood", weight=9]; 4103 -> 2101[label="",style="solid", color="burlywood", weight=3]; 2048[label="primEqDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];4104[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4104[label="",style="solid", color="burlywood", weight=9]; 4104 -> 2102[label="",style="solid", color="burlywood", weight=3]; 262 -> 65[label="",style="dashed", color="red", weight=0]; 262[label="compare (Just xuu19) (Just xuu14) == GT",fontsize=16,color="magenta"];262 -> 310[label="",style="dashed", color="magenta", weight=3]; 262 -> 311[label="",style="dashed", color="magenta", weight=3]; 263[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 False",fontsize=16,color="black",shape="box"];263 -> 312[label="",style="solid", color="black", weight=3]; 264[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 True",fontsize=16,color="black",shape="box"];264 -> 313[label="",style="solid", color="black", weight=3]; 265[label="xuu17",fontsize=16,color="green",shape="box"];266[label="Just xuu19",fontsize=16,color="green",shape="box"];267[label="xuu20",fontsize=16,color="green",shape="box"];268[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];268 -> 314[label="",style="solid", color="black", weight=3]; 269[label="GT",fontsize=16,color="green",shape="box"];270[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 otherwise",fontsize=16,color="black",shape="box"];270 -> 315[label="",style="solid", color="black", weight=3]; 271 -> 182[label="",style="dashed", color="red", weight=0]; 271[label="FiniteMap.mkBalBranch Nothing xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401)",fontsize=16,color="magenta"];271 -> 316[label="",style="dashed", color="magenta", weight=3]; 271 -> 317[label="",style="dashed", color="magenta", weight=3]; 2075[label="compare1 Nothing xuu310 (Nothing <= xuu310)",fontsize=16,color="burlywood",shape="box"];4105[label="xuu310/Nothing",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4105[label="",style="solid", color="burlywood", weight=9]; 4105 -> 2169[label="",style="solid", color="burlywood", weight=3]; 4106[label="xuu310/Just xuu3100",fontsize=10,color="white",style="solid",shape="box"];2075 -> 4106[label="",style="solid", color="burlywood", weight=9]; 4106 -> 2170[label="",style="solid", color="burlywood", weight=3]; 2076[label="compare1 (Just xuu3000) xuu310 (Just xuu3000 <= xuu310)",fontsize=16,color="burlywood",shape="box"];4107[label="xuu310/Nothing",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4107[label="",style="solid", color="burlywood", weight=9]; 4107 -> 2171[label="",style="solid", color="burlywood", weight=3]; 4108[label="xuu310/Just xuu3100",fontsize=10,color="white",style="solid",shape="box"];2076 -> 4108[label="",style="solid", color="burlywood", weight=9]; 4108 -> 2172[label="",style="solid", color="burlywood", weight=3]; 272[label="compare Nothing (Just xuu300)",fontsize=16,color="black",shape="box"];272 -> 318[label="",style="solid", color="black", weight=3]; 273[label="GT",fontsize=16,color="green",shape="box"];274[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 otherwise",fontsize=16,color="black",shape="box"];274 -> 319[label="",style="solid", color="black", weight=3]; 275 -> 172[label="",style="dashed", color="red", weight=0]; 275[label="FiniteMap.mkBalBranch (Just xuu300) xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401)",fontsize=16,color="magenta"];275 -> 320[label="",style="dashed", color="magenta", weight=3]; 275 -> 321[label="",style="dashed", color="magenta", weight=3]; 276 -> 381[label="",style="dashed", color="red", weight=0]; 276[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];276 -> 382[label="",style="dashed", color="magenta", weight=3]; 278[label="compare (Just xuu4000) Nothing",fontsize=16,color="black",shape="box"];278 -> 324[label="",style="solid", color="black", weight=3]; 279[label="GT",fontsize=16,color="green",shape="box"];280[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 otherwise",fontsize=16,color="black",shape="box"];280 -> 325[label="",style="solid", color="black", weight=3]; 281 -> 182[label="",style="dashed", color="red", weight=0]; 281[label="FiniteMap.mkBalBranch Nothing xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Just xuu4000) xuu401)",fontsize=16,color="magenta"];281 -> 326[label="",style="dashed", color="magenta", weight=3]; 281 -> 327[label="",style="dashed", color="magenta", weight=3]; 282 -> 391[label="",style="dashed", color="red", weight=0]; 282[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];282 -> 392[label="",style="dashed", color="magenta", weight=3]; 2077[label="primEqInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4109[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4109[label="",style="solid", color="burlywood", weight=9]; 4109 -> 2173[label="",style="solid", color="burlywood", weight=3]; 4110[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2077 -> 4110[label="",style="solid", color="burlywood", weight=9]; 4110 -> 2174[label="",style="solid", color="burlywood", weight=3]; 2078[label="primEqInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4111[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 2175[label="",style="solid", color="burlywood", weight=3]; 4112[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2078 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 2176[label="",style="solid", color="burlywood", weight=3]; 2079[label="xuu40000 : xuu40001 == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2079 -> 2177[label="",style="solid", color="black", weight=3]; 2080[label="xuu40000 : xuu40001 == []",fontsize=16,color="black",shape="box"];2080 -> 2178[label="",style="solid", color="black", weight=3]; 2081[label="[] == xuu3000 : xuu3001",fontsize=16,color="black",shape="box"];2081 -> 2179[label="",style="solid", color="black", weight=3]; 2082[label="[] == []",fontsize=16,color="black",shape="box"];2082 -> 2180[label="",style="solid", color="black", weight=3]; 2083[label="Left xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2083 -> 2181[label="",style="solid", color="black", weight=3]; 2084[label="Left xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2084 -> 2182[label="",style="solid", color="black", weight=3]; 2085[label="Right xuu40000 == Left xuu3000",fontsize=16,color="black",shape="box"];2085 -> 2183[label="",style="solid", color="black", weight=3]; 2086[label="Right xuu40000 == Right xuu3000",fontsize=16,color="black",shape="box"];2086 -> 2184[label="",style="solid", color="black", weight=3]; 2087[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2087 -> 2185[label="",style="solid", color="black", weight=3]; 2088[label="Nothing == Just xuu3000",fontsize=16,color="black",shape="box"];2088 -> 2186[label="",style="solid", color="black", weight=3]; 2089[label="Just xuu40000 == Nothing",fontsize=16,color="black",shape="box"];2089 -> 2187[label="",style="solid", color="black", weight=3]; 2090[label="Just xuu40000 == Just xuu3000",fontsize=16,color="black",shape="box"];2090 -> 2188[label="",style="solid", color="black", weight=3]; 2091[label="(xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002)",fontsize=16,color="black",shape="box"];2091 -> 2189[label="",style="solid", color="black", weight=3]; 2092[label="primEqChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];4113[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];2092 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 2190[label="",style="solid", color="burlywood", weight=3]; 2093[label="Integer xuu40000 == Integer xuu3000",fontsize=16,color="black",shape="box"];2093 -> 2191[label="",style="solid", color="black", weight=3]; 2094[label="() == ()",fontsize=16,color="black",shape="box"];2094 -> 2192[label="",style="solid", color="black", weight=3]; 2095[label="False == False",fontsize=16,color="black",shape="box"];2095 -> 2193[label="",style="solid", color="black", weight=3]; 2096[label="False == True",fontsize=16,color="black",shape="box"];2096 -> 2194[label="",style="solid", color="black", weight=3]; 2097[label="True == False",fontsize=16,color="black",shape="box"];2097 -> 2195[label="",style="solid", color="black", weight=3]; 2098[label="True == True",fontsize=16,color="black",shape="box"];2098 -> 2196[label="",style="solid", color="black", weight=3]; 2099[label="primEqFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4114[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2099 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 2197[label="",style="solid", color="burlywood", weight=3]; 2100[label="(xuu40000,xuu40001) == (xuu3000,xuu3001)",fontsize=16,color="black",shape="box"];2100 -> 2198[label="",style="solid", color="black", weight=3]; 2101[label="xuu40000 :% xuu40001 == xuu3000 :% xuu3001",fontsize=16,color="black",shape="box"];2101 -> 2199[label="",style="solid", color="black", weight=3]; 2102[label="primEqDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];4115[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];2102 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 2200[label="",style="solid", color="burlywood", weight=3]; 310[label="compare (Just xuu19) (Just xuu14)",fontsize=16,color="black",shape="box"];310 -> 367[label="",style="solid", color="black", weight=3]; 311[label="GT",fontsize=16,color="green",shape="box"];312[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 otherwise",fontsize=16,color="black",shape="box"];312 -> 368[label="",style="solid", color="black", weight=3]; 313 -> 172[label="",style="dashed", color="red", weight=0]; 313[label="FiniteMap.mkBalBranch (Just xuu14) xuu15 xuu17 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Just xuu19) xuu20)",fontsize=16,color="magenta"];313 -> 369[label="",style="dashed", color="magenta", weight=3]; 313 -> 370[label="",style="dashed", color="magenta", weight=3]; 313 -> 371[label="",style="dashed", color="magenta", weight=3]; 313 -> 372[label="",style="dashed", color="magenta", weight=3]; 314[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];314 -> 373[label="",style="solid", color="black", weight=3]; 315[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];315 -> 374[label="",style="solid", color="black", weight=3]; 316[label="xuu33",fontsize=16,color="green",shape="box"];317 -> 14[label="",style="dashed", color="red", weight=0]; 317[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401",fontsize=16,color="magenta"];317 -> 375[label="",style="dashed", color="magenta", weight=3]; 317 -> 376[label="",style="dashed", color="magenta", weight=3]; 2169[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2169 -> 2232[label="",style="solid", color="black", weight=3]; 2170[label="compare1 Nothing (Just xuu3100) (Nothing <= Just xuu3100)",fontsize=16,color="black",shape="box"];2170 -> 2233[label="",style="solid", color="black", weight=3]; 2171[label="compare1 (Just xuu3000) Nothing (Just xuu3000 <= Nothing)",fontsize=16,color="black",shape="box"];2171 -> 2234[label="",style="solid", color="black", weight=3]; 2172[label="compare1 (Just xuu3000) (Just xuu3100) (Just xuu3000 <= Just xuu3100)",fontsize=16,color="black",shape="box"];2172 -> 2235[label="",style="solid", color="black", weight=3]; 318[label="compare3 Nothing (Just xuu300)",fontsize=16,color="black",shape="box"];318 -> 377[label="",style="solid", color="black", weight=3]; 319[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu300) xuu31 xuu32 xuu33 xuu34 Nothing xuu401 True",fontsize=16,color="black",shape="box"];319 -> 378[label="",style="solid", color="black", weight=3]; 320[label="xuu33",fontsize=16,color="green",shape="box"];321 -> 14[label="",style="dashed", color="red", weight=0]; 321[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 Nothing xuu401",fontsize=16,color="magenta"];321 -> 379[label="",style="dashed", color="magenta", weight=3]; 321 -> 380[label="",style="dashed", color="magenta", weight=3]; 382[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];382 -> 384[label="",style="solid", color="black", weight=3]; 381[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 xuu45",fontsize=16,color="burlywood",shape="triangle"];4116[label="xuu45/False",fontsize=10,color="white",style="solid",shape="box"];381 -> 4116[label="",style="solid", color="burlywood", weight=9]; 4116 -> 385[label="",style="solid", color="burlywood", weight=3]; 4117[label="xuu45/True",fontsize=10,color="white",style="solid",shape="box"];381 -> 4117[label="",style="solid", color="burlywood", weight=9]; 4117 -> 386[label="",style="solid", color="burlywood", weight=3]; 324[label="compare3 (Just xuu4000) Nothing",fontsize=16,color="black",shape="box"];324 -> 387[label="",style="solid", color="black", weight=3]; 325[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu31 xuu32 xuu33 xuu34 (Just xuu4000) xuu401 True",fontsize=16,color="black",shape="box"];325 -> 388[label="",style="solid", color="black", weight=3]; 326[label="xuu33",fontsize=16,color="green",shape="box"];327 -> 14[label="",style="dashed", color="red", weight=0]; 327[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (Just xuu4000) xuu401",fontsize=16,color="magenta"];327 -> 389[label="",style="dashed", color="magenta", weight=3]; 327 -> 390[label="",style="dashed", color="magenta", weight=3]; 392[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];392 -> 394[label="",style="solid", color="black", weight=3]; 391[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 xuu46",fontsize=16,color="burlywood",shape="triangle"];4118[label="xuu46/False",fontsize=10,color="white",style="solid",shape="box"];391 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 395[label="",style="solid", color="burlywood", weight=3]; 4119[label="xuu46/True",fontsize=10,color="white",style="solid",shape="box"];391 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 396[label="",style="solid", color="burlywood", weight=3]; 2173[label="primEqInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4120[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 2236[label="",style="solid", color="burlywood", weight=3]; 4121[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4121[label="",style="solid", color="burlywood", weight=9]; 4121 -> 2237[label="",style="solid", color="burlywood", weight=3]; 2174[label="primEqInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4122[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4122[label="",style="solid", color="burlywood", weight=9]; 4122 -> 2238[label="",style="solid", color="burlywood", weight=3]; 4123[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4123[label="",style="solid", color="burlywood", weight=9]; 4123 -> 2239[label="",style="solid", color="burlywood", weight=3]; 2175[label="primEqInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];4124[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4124[label="",style="solid", color="burlywood", weight=9]; 4124 -> 2240[label="",style="solid", color="burlywood", weight=3]; 4125[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2175 -> 4125[label="",style="solid", color="burlywood", weight=9]; 4125 -> 2241[label="",style="solid", color="burlywood", weight=3]; 2176[label="primEqInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];4126[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];2176 -> 4126[label="",style="solid", color="burlywood", weight=9]; 4126 -> 2242[label="",style="solid", color="burlywood", weight=3]; 4127[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];2176 -> 4127[label="",style="solid", color="burlywood", weight=9]; 4127 -> 2243[label="",style="solid", color="burlywood", weight=3]; 2177 -> 2325[label="",style="dashed", color="red", weight=0]; 2177[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2177 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2178[label="False",fontsize=16,color="green",shape="box"];2179[label="False",fontsize=16,color="green",shape="box"];2180[label="True",fontsize=16,color="green",shape="box"];2181[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4128[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 2255[label="",style="solid", color="blue", weight=3]; 4129[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 2256[label="",style="solid", color="blue", weight=3]; 4130[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 2257[label="",style="solid", color="blue", weight=3]; 4131[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 2258[label="",style="solid", color="blue", weight=3]; 4132[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 2259[label="",style="solid", color="blue", weight=3]; 4133[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 2260[label="",style="solid", color="blue", weight=3]; 4134[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 2261[label="",style="solid", color="blue", weight=3]; 4135[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 2262[label="",style="solid", color="blue", weight=3]; 4136[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4136[label="",style="solid", color="blue", weight=9]; 4136 -> 2263[label="",style="solid", color="blue", weight=3]; 4137[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4137[label="",style="solid", color="blue", weight=9]; 4137 -> 2264[label="",style="solid", color="blue", weight=3]; 4138[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 2265[label="",style="solid", color="blue", weight=3]; 4139[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 2266[label="",style="solid", color="blue", weight=3]; 4140[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 2267[label="",style="solid", color="blue", weight=3]; 4141[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 2268[label="",style="solid", color="blue", weight=3]; 2182[label="False",fontsize=16,color="green",shape="box"];2183[label="False",fontsize=16,color="green",shape="box"];2184[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4142[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 2269[label="",style="solid", color="blue", weight=3]; 4143[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 2270[label="",style="solid", color="blue", weight=3]; 4144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 2271[label="",style="solid", color="blue", weight=3]; 4145[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 2272[label="",style="solid", color="blue", weight=3]; 4146[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 2273[label="",style="solid", color="blue", weight=3]; 4147[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 2274[label="",style="solid", color="blue", weight=3]; 4148[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 2275[label="",style="solid", color="blue", weight=3]; 4149[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 2276[label="",style="solid", color="blue", weight=3]; 4150[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 2277[label="",style="solid", color="blue", weight=3]; 4151[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4151[label="",style="solid", color="blue", weight=9]; 4151 -> 2278[label="",style="solid", color="blue", weight=3]; 4152[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4152[label="",style="solid", color="blue", weight=9]; 4152 -> 2279[label="",style="solid", color="blue", weight=3]; 4153[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 2280[label="",style="solid", color="blue", weight=3]; 4154[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 2281[label="",style="solid", color="blue", weight=3]; 4155[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 2282[label="",style="solid", color="blue", weight=3]; 2185[label="True",fontsize=16,color="green",shape="box"];2186[label="False",fontsize=16,color="green",shape="box"];2187[label="False",fontsize=16,color="green",shape="box"];2188[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4156[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 2283[label="",style="solid", color="blue", weight=3]; 4157[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 2284[label="",style="solid", color="blue", weight=3]; 4158[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 2285[label="",style="solid", color="blue", weight=3]; 4159[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 2286[label="",style="solid", color="blue", weight=3]; 4160[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 2287[label="",style="solid", color="blue", weight=3]; 4161[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 2288[label="",style="solid", color="blue", weight=3]; 4162[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 2289[label="",style="solid", color="blue", weight=3]; 4163[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 2290[label="",style="solid", color="blue", weight=3]; 4164[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 2291[label="",style="solid", color="blue", weight=3]; 4165[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 2292[label="",style="solid", color="blue", weight=3]; 4166[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 2293[label="",style="solid", color="blue", weight=3]; 4167[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 2294[label="",style="solid", color="blue", weight=3]; 4168[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 2295[label="",style="solid", color="blue", weight=3]; 4169[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2188 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 2296[label="",style="solid", color="blue", weight=3]; 2189 -> 2325[label="",style="dashed", color="red", weight=0]; 2189[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2189 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2190[label="primEqChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];2190 -> 2297[label="",style="solid", color="black", weight=3]; 2191 -> 2032[label="",style="dashed", color="red", weight=0]; 2191[label="primEqInt xuu40000 xuu3000",fontsize=16,color="magenta"];2191 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2192[label="True",fontsize=16,color="green",shape="box"];2193[label="True",fontsize=16,color="green",shape="box"];2194[label="False",fontsize=16,color="green",shape="box"];2195[label="False",fontsize=16,color="green",shape="box"];2196[label="True",fontsize=16,color="green",shape="box"];2197[label="primEqFloat (Float xuu40000 xuu40001) (Float xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2197 -> 2300[label="",style="solid", color="black", weight=3]; 2198 -> 2325[label="",style="dashed", color="red", weight=0]; 2198[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2198 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2325[label="",style="dashed", color="red", weight=0]; 2199[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];2199 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2200[label="primEqDouble (Double xuu40000 xuu40001) (Double xuu3000 xuu3001)",fontsize=16,color="black",shape="box"];2200 -> 2301[label="",style="solid", color="black", weight=3]; 367[label="compare3 (Just xuu19) (Just xuu14)",fontsize=16,color="black",shape="box"];367 -> 479[label="",style="solid", color="black", weight=3]; 368[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu14) xuu15 xuu16 xuu17 xuu18 (Just xuu19) xuu20 True",fontsize=16,color="black",shape="box"];368 -> 480[label="",style="solid", color="black", weight=3]; 369[label="xuu17",fontsize=16,color="green",shape="box"];370[label="xuu15",fontsize=16,color="green",shape="box"];371 -> 14[label="",style="dashed", color="red", weight=0]; 371[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu18 (Just xuu19) xuu20",fontsize=16,color="magenta"];371 -> 481[label="",style="dashed", color="magenta", weight=3]; 371 -> 482[label="",style="dashed", color="magenta", weight=3]; 371 -> 483[label="",style="dashed", color="magenta", weight=3]; 372[label="xuu14",fontsize=16,color="green",shape="box"];373 -> 1973[label="",style="dashed", color="red", weight=0]; 373[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];373 -> 1992[label="",style="dashed", color="magenta", weight=3]; 373 -> 1993[label="",style="dashed", color="magenta", weight=3]; 373 -> 1994[label="",style="dashed", color="magenta", weight=3]; 374[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];374 -> 486[label="",style="dashed", color="green", weight=3]; 375[label="xuu34",fontsize=16,color="green",shape="box"];376[label="Nothing",fontsize=16,color="green",shape="box"];2232[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2232 -> 2302[label="",style="solid", color="black", weight=3]; 2233[label="compare1 Nothing (Just xuu3100) True",fontsize=16,color="black",shape="box"];2233 -> 2303[label="",style="solid", color="black", weight=3]; 2234[label="compare1 (Just xuu3000) Nothing False",fontsize=16,color="black",shape="box"];2234 -> 2304[label="",style="solid", color="black", weight=3]; 2235 -> 2305[label="",style="dashed", color="red", weight=0]; 2235[label="compare1 (Just xuu3000) (Just xuu3100) (xuu3000 <= xuu3100)",fontsize=16,color="magenta"];2235 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2308[label="",style="dashed", color="magenta", weight=3]; 377 -> 1973[label="",style="dashed", color="red", weight=0]; 377[label="compare2 Nothing (Just xuu300) (Nothing == Just xuu300)",fontsize=16,color="magenta"];377 -> 1995[label="",style="dashed", color="magenta", weight=3]; 377 -> 1996[label="",style="dashed", color="magenta", weight=3]; 377 -> 1997[label="",style="dashed", color="magenta", weight=3]; 378[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];378 -> 492[label="",style="dashed", color="green", weight=3]; 379[label="xuu34",fontsize=16,color="green",shape="box"];380[label="Nothing",fontsize=16,color="green",shape="box"];384 -> 65[label="",style="dashed", color="red", weight=0]; 384[label="compare (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];384 -> 493[label="",style="dashed", color="magenta", weight=3]; 384 -> 494[label="",style="dashed", color="magenta", weight=3]; 385[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 False",fontsize=16,color="black",shape="box"];385 -> 495[label="",style="solid", color="black", weight=3]; 386[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];386 -> 496[label="",style="solid", color="black", weight=3]; 387 -> 1973[label="",style="dashed", color="red", weight=0]; 387[label="compare2 (Just xuu4000) Nothing (Just xuu4000 == Nothing)",fontsize=16,color="magenta"];387 -> 1998[label="",style="dashed", color="magenta", weight=3]; 387 -> 1999[label="",style="dashed", color="magenta", weight=3]; 387 -> 2000[label="",style="dashed", color="magenta", weight=3]; 388[label="FiniteMap.Branch (Just xuu4000) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];388 -> 504[label="",style="dashed", color="green", weight=3]; 389[label="xuu34",fontsize=16,color="green",shape="box"];390[label="Just xuu4000",fontsize=16,color="green",shape="box"];394 -> 65[label="",style="dashed", color="red", weight=0]; 394[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];394 -> 505[label="",style="dashed", color="magenta", weight=3]; 394 -> 506[label="",style="dashed", color="magenta", weight=3]; 395[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 False",fontsize=16,color="black",shape="box"];395 -> 507[label="",style="solid", color="black", weight=3]; 396[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];396 -> 508[label="",style="solid", color="black", weight=3]; 2236[label="primEqInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4170[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2236 -> 4170[label="",style="solid", color="burlywood", weight=9]; 4170 -> 2309[label="",style="solid", color="burlywood", weight=3]; 4171[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2236 -> 4171[label="",style="solid", color="burlywood", weight=9]; 4171 -> 2310[label="",style="solid", color="burlywood", weight=3]; 2237[label="primEqInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];2237 -> 2311[label="",style="solid", color="black", weight=3]; 2238[label="primEqInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4172[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4172[label="",style="solid", color="burlywood", weight=9]; 4172 -> 2312[label="",style="solid", color="burlywood", weight=3]; 4173[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2238 -> 4173[label="",style="solid", color="burlywood", weight=9]; 4173 -> 2313[label="",style="solid", color="burlywood", weight=3]; 2239[label="primEqInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4174[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2239 -> 4174[label="",style="solid", color="burlywood", weight=9]; 4174 -> 2314[label="",style="solid", color="burlywood", weight=3]; 4175[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2239 -> 4175[label="",style="solid", color="burlywood", weight=9]; 4175 -> 2315[label="",style="solid", color="burlywood", weight=3]; 2240[label="primEqInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];2240 -> 2316[label="",style="solid", color="black", weight=3]; 2241[label="primEqInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4176[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2241 -> 4176[label="",style="solid", color="burlywood", weight=9]; 4176 -> 2317[label="",style="solid", color="burlywood", weight=3]; 4177[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2241 -> 4177[label="",style="solid", color="burlywood", weight=9]; 4177 -> 2318[label="",style="solid", color="burlywood", weight=3]; 2242[label="primEqInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];4178[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2242 -> 4178[label="",style="solid", color="burlywood", weight=9]; 4178 -> 2319[label="",style="solid", color="burlywood", weight=3]; 4179[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2242 -> 4179[label="",style="solid", color="burlywood", weight=9]; 4179 -> 2320[label="",style="solid", color="burlywood", weight=3]; 2243[label="primEqInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];4180[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2243 -> 4180[label="",style="solid", color="burlywood", weight=9]; 4180 -> 2321[label="",style="solid", color="burlywood", weight=3]; 4181[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2243 -> 4181[label="",style="solid", color="burlywood", weight=9]; 4181 -> 2322[label="",style="solid", color="burlywood", weight=3]; 2326[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4182[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 2338[label="",style="solid", color="blue", weight=3]; 4183[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 2339[label="",style="solid", color="blue", weight=3]; 4184[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 2340[label="",style="solid", color="blue", weight=3]; 4185[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 2341[label="",style="solid", color="blue", weight=3]; 4186[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 2342[label="",style="solid", color="blue", weight=3]; 4187[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 2343[label="",style="solid", color="blue", weight=3]; 4188[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 2344[label="",style="solid", color="blue", weight=3]; 4189[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 2345[label="",style="solid", color="blue", weight=3]; 4190[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 2346[label="",style="solid", color="blue", weight=3]; 4191[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 2347[label="",style="solid", color="blue", weight=3]; 4192[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 2348[label="",style="solid", color="blue", weight=3]; 4193[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 2349[label="",style="solid", color="blue", weight=3]; 4194[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 2350[label="",style="solid", color="blue", weight=3]; 4195[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 2351[label="",style="solid", color="blue", weight=3]; 2327 -> 2011[label="",style="dashed", color="red", weight=0]; 2327[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2327 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2325[label="xuu123 && xuu124",fontsize=16,color="burlywood",shape="triangle"];4196[label="xuu123/False",fontsize=10,color="white",style="solid",shape="box"];2325 -> 4196[label="",style="solid", color="burlywood", weight=9]; 4196 -> 2354[label="",style="solid", color="burlywood", weight=3]; 4197[label="xuu123/True",fontsize=10,color="white",style="solid",shape="box"];2325 -> 4197[label="",style="solid", color="burlywood", weight=9]; 4197 -> 2355[label="",style="solid", color="burlywood", weight=3]; 2255 -> 2010[label="",style="dashed", color="red", weight=0]; 2255[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2255 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2255 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2256 -> 2011[label="",style="dashed", color="red", weight=0]; 2256[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2256 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2256 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2012[label="",style="dashed", color="red", weight=0]; 2257[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2257 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2013[label="",style="dashed", color="red", weight=0]; 2258[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2258 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2014[label="",style="dashed", color="red", weight=0]; 2259[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2259 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2015[label="",style="dashed", color="red", weight=0]; 2260[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2260 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2016[label="",style="dashed", color="red", weight=0]; 2261[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2261 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2017[label="",style="dashed", color="red", weight=0]; 2262[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2262 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2018[label="",style="dashed", color="red", weight=0]; 2263[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2263 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2019[label="",style="dashed", color="red", weight=0]; 2264[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2264 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2020[label="",style="dashed", color="red", weight=0]; 2265[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2265 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2021[label="",style="dashed", color="red", weight=0]; 2266[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2266 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2267 -> 65[label="",style="dashed", color="red", weight=0]; 2267[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2267 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2023[label="",style="dashed", color="red", weight=0]; 2268[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2268 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2010[label="",style="dashed", color="red", weight=0]; 2269[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2269 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2011[label="",style="dashed", color="red", weight=0]; 2270[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2270 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2012[label="",style="dashed", color="red", weight=0]; 2271[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2271 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2013[label="",style="dashed", color="red", weight=0]; 2272[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2272 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2014[label="",style="dashed", color="red", weight=0]; 2273[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2273 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2015[label="",style="dashed", color="red", weight=0]; 2274[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2274 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2016[label="",style="dashed", color="red", weight=0]; 2275[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2275 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2017[label="",style="dashed", color="red", weight=0]; 2276[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2276 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2018[label="",style="dashed", color="red", weight=0]; 2277[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2277 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2019[label="",style="dashed", color="red", weight=0]; 2278[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2278 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2020[label="",style="dashed", color="red", weight=0]; 2279[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2279 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2021[label="",style="dashed", color="red", weight=0]; 2280[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2280 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2281 -> 65[label="",style="dashed", color="red", weight=0]; 2281[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2281 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2023[label="",style="dashed", color="red", weight=0]; 2282[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2282 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2010[label="",style="dashed", color="red", weight=0]; 2283[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2283 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2011[label="",style="dashed", color="red", weight=0]; 2284[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2284 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2012[label="",style="dashed", color="red", weight=0]; 2285[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2285 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2013[label="",style="dashed", color="red", weight=0]; 2286[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2286 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2014[label="",style="dashed", color="red", weight=0]; 2287[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2287 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2015[label="",style="dashed", color="red", weight=0]; 2288[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2288 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2016[label="",style="dashed", color="red", weight=0]; 2289[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2289 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2017[label="",style="dashed", color="red", weight=0]; 2290[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2290 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2018[label="",style="dashed", color="red", weight=0]; 2291[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2291 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2019[label="",style="dashed", color="red", weight=0]; 2292[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2292 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2020[label="",style="dashed", color="red", weight=0]; 2293[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2293 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2021[label="",style="dashed", color="red", weight=0]; 2294[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2294 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2295 -> 65[label="",style="dashed", color="red", weight=0]; 2295[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2295 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2023[label="",style="dashed", color="red", weight=0]; 2296[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2296 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2328[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4198[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 2440[label="",style="solid", color="blue", weight=3]; 4199[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 2441[label="",style="solid", color="blue", weight=3]; 4200[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 2442[label="",style="solid", color="blue", weight=3]; 4201[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 2443[label="",style="solid", color="blue", weight=3]; 4202[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 2444[label="",style="solid", color="blue", weight=3]; 4203[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 2445[label="",style="solid", color="blue", weight=3]; 4204[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 2446[label="",style="solid", color="blue", weight=3]; 4205[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 2447[label="",style="solid", color="blue", weight=3]; 4206[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4206[label="",style="solid", color="blue", weight=9]; 4206 -> 2448[label="",style="solid", color="blue", weight=3]; 4207[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4207[label="",style="solid", color="blue", weight=9]; 4207 -> 2449[label="",style="solid", color="blue", weight=3]; 4208[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 2450[label="",style="solid", color="blue", weight=3]; 4209[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 2451[label="",style="solid", color="blue", weight=3]; 4210[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 2452[label="",style="solid", color="blue", weight=3]; 4211[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 2453[label="",style="solid", color="blue", weight=3]; 2329 -> 2325[label="",style="dashed", color="red", weight=0]; 2329[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];2329 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2297[label="primEqNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];4212[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4212[label="",style="solid", color="burlywood", weight=9]; 4212 -> 2456[label="",style="solid", color="burlywood", weight=3]; 4213[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2297 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 2457[label="",style="solid", color="burlywood", weight=3]; 2298[label="xuu40000",fontsize=16,color="green",shape="box"];2299[label="xuu3000",fontsize=16,color="green",shape="box"];2300 -> 2010[label="",style="dashed", color="red", weight=0]; 2300[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2300 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2330[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4214[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 2460[label="",style="solid", color="blue", weight=3]; 4215[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 2461[label="",style="solid", color="blue", weight=3]; 4216[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 2462[label="",style="solid", color="blue", weight=3]; 4217[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 2463[label="",style="solid", color="blue", weight=3]; 4218[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 2464[label="",style="solid", color="blue", weight=3]; 4219[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 2465[label="",style="solid", color="blue", weight=3]; 4220[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 2466[label="",style="solid", color="blue", weight=3]; 4221[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 2467[label="",style="solid", color="blue", weight=3]; 4222[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 2468[label="",style="solid", color="blue", weight=3]; 4223[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 2469[label="",style="solid", color="blue", weight=3]; 4224[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 2470[label="",style="solid", color="blue", weight=3]; 4225[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 2471[label="",style="solid", color="blue", weight=3]; 4226[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 2472[label="",style="solid", color="blue", weight=3]; 4227[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 2473[label="",style="solid", color="blue", weight=3]; 2331[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4228[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 2474[label="",style="solid", color="blue", weight=3]; 4229[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 2475[label="",style="solid", color="blue", weight=3]; 4230[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 2476[label="",style="solid", color="blue", weight=3]; 4231[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 2477[label="",style="solid", color="blue", weight=3]; 4232[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 2478[label="",style="solid", color="blue", weight=3]; 4233[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 2479[label="",style="solid", color="blue", weight=3]; 4234[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 2480[label="",style="solid", color="blue", weight=3]; 4235[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 2481[label="",style="solid", color="blue", weight=3]; 4236[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 2482[label="",style="solid", color="blue", weight=3]; 4237[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 2483[label="",style="solid", color="blue", weight=3]; 4238[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 2484[label="",style="solid", color="blue", weight=3]; 4239[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 2485[label="",style="solid", color="blue", weight=3]; 4240[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 2486[label="",style="solid", color="blue", weight=3]; 4241[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 2487[label="",style="solid", color="blue", weight=3]; 2332[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];4242[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 2488[label="",style="solid", color="blue", weight=3]; 4243[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 2489[label="",style="solid", color="blue", weight=3]; 2333[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4244[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2333 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 2490[label="",style="solid", color="blue", weight=3]; 4245[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2333 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 2491[label="",style="solid", color="blue", weight=3]; 2301 -> 2010[label="",style="dashed", color="red", weight=0]; 2301[label="xuu40000 * xuu3001 == xuu40001 * xuu3000",fontsize=16,color="magenta"];2301 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2493[label="",style="dashed", color="magenta", weight=3]; 479 -> 1973[label="",style="dashed", color="red", weight=0]; 479[label="compare2 (Just xuu19) (Just xuu14) (Just xuu19 == Just xuu14)",fontsize=16,color="magenta"];479 -> 2001[label="",style="dashed", color="magenta", weight=3]; 479 -> 2002[label="",style="dashed", color="magenta", weight=3]; 479 -> 2003[label="",style="dashed", color="magenta", weight=3]; 480[label="FiniteMap.Branch (Just xuu19) (FiniteMap.addListToFM0 xuu15 xuu20) xuu16 xuu17 xuu18",fontsize=16,color="green",shape="box"];480 -> 720[label="",style="dashed", color="green", weight=3]; 481[label="xuu18",fontsize=16,color="green",shape="box"];482[label="Just xuu19",fontsize=16,color="green",shape="box"];483[label="xuu20",fontsize=16,color="green",shape="box"];1992[label="Nothing",fontsize=16,color="green",shape="box"];1993[label="Nothing",fontsize=16,color="green",shape="box"];1994[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1994 -> 2024[label="",style="solid", color="black", weight=3]; 486[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="black",shape="triangle"];486 -> 725[label="",style="solid", color="black", weight=3]; 2302[label="LT",fontsize=16,color="green",shape="box"];2303[label="LT",fontsize=16,color="green",shape="box"];2304[label="compare0 (Just xuu3000) Nothing otherwise",fontsize=16,color="black",shape="box"];2304 -> 2494[label="",style="solid", color="black", weight=3]; 2306[label="xuu3000",fontsize=16,color="green",shape="box"];2307[label="xuu3000 <= xuu3100",fontsize=16,color="blue",shape="box"];4246[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 2495[label="",style="solid", color="blue", weight=3]; 4247[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 2496[label="",style="solid", color="blue", weight=3]; 4248[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 2497[label="",style="solid", color="blue", weight=3]; 4249[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 2498[label="",style="solid", color="blue", weight=3]; 4250[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 2499[label="",style="solid", color="blue", weight=3]; 4251[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 2500[label="",style="solid", color="blue", weight=3]; 4252[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 2501[label="",style="solid", color="blue", weight=3]; 4253[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 2502[label="",style="solid", color="blue", weight=3]; 4254[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 2503[label="",style="solid", color="blue", weight=3]; 4255[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 2504[label="",style="solid", color="blue", weight=3]; 4256[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 2505[label="",style="solid", color="blue", weight=3]; 4257[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 2506[label="",style="solid", color="blue", weight=3]; 4258[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 2507[label="",style="solid", color="blue", weight=3]; 4259[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 2508[label="",style="solid", color="blue", weight=3]; 2308[label="xuu3100",fontsize=16,color="green",shape="box"];2305[label="compare1 (Just xuu117) (Just xuu118) xuu119",fontsize=16,color="burlywood",shape="triangle"];4260[label="xuu119/False",fontsize=10,color="white",style="solid",shape="box"];2305 -> 4260[label="",style="solid", color="burlywood", weight=9]; 4260 -> 2509[label="",style="solid", color="burlywood", weight=3]; 4261[label="xuu119/True",fontsize=10,color="white",style="solid",shape="box"];2305 -> 4261[label="",style="solid", color="burlywood", weight=9]; 4261 -> 2510[label="",style="solid", color="burlywood", weight=3]; 1995[label="Nothing",fontsize=16,color="green",shape="box"];1996[label="Just xuu300",fontsize=16,color="green",shape="box"];1997[label="Nothing == Just xuu300",fontsize=16,color="black",shape="box"];1997 -> 2025[label="",style="solid", color="black", weight=3]; 492 -> 486[label="",style="dashed", color="red", weight=0]; 492[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];493[label="compare (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];493 -> 728[label="",style="solid", color="black", weight=3]; 494[label="LT",fontsize=16,color="green",shape="box"];495 -> 955[label="",style="dashed", color="red", weight=0]; 495[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 (FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];495 -> 956[label="",style="dashed", color="magenta", weight=3]; 496 -> 3783[label="",style="dashed", color="red", weight=0]; 496[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="magenta"];496 -> 3784[label="",style="dashed", color="magenta", weight=3]; 496 -> 3785[label="",style="dashed", color="magenta", weight=3]; 496 -> 3786[label="",style="dashed", color="magenta", weight=3]; 496 -> 3787[label="",style="dashed", color="magenta", weight=3]; 496 -> 3788[label="",style="dashed", color="magenta", weight=3]; 1998[label="Just xuu4000",fontsize=16,color="green",shape="box"];1999[label="Nothing",fontsize=16,color="green",shape="box"];2000[label="Just xuu4000 == Nothing",fontsize=16,color="black",shape="box"];2000 -> 2026[label="",style="solid", color="black", weight=3]; 504 -> 486[label="",style="dashed", color="red", weight=0]; 504[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];505[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];505 -> 733[label="",style="solid", color="black", weight=3]; 506[label="LT",fontsize=16,color="green",shape="box"];507 -> 985[label="",style="dashed", color="red", weight=0]; 507[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 (FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34)",fontsize=16,color="magenta"];507 -> 986[label="",style="dashed", color="magenta", weight=3]; 508 -> 3783[label="",style="dashed", color="red", weight=0]; 508[label="FiniteMap.mkBranch (Pos (Succ Zero)) Nothing xuu31 xuu33 xuu34",fontsize=16,color="magenta"];508 -> 3789[label="",style="dashed", color="magenta", weight=3]; 508 -> 3790[label="",style="dashed", color="magenta", weight=3]; 508 -> 3791[label="",style="dashed", color="magenta", weight=3]; 508 -> 3792[label="",style="dashed", color="magenta", weight=3]; 508 -> 3793[label="",style="dashed", color="magenta", weight=3]; 2309[label="primEqInt (Pos (Succ xuu400000)) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2309 -> 2511[label="",style="solid", color="black", weight=3]; 2310[label="primEqInt (Pos (Succ xuu400000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2310 -> 2512[label="",style="solid", color="black", weight=3]; 2311[label="False",fontsize=16,color="green",shape="box"];2312[label="primEqInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2312 -> 2513[label="",style="solid", color="black", weight=3]; 2313[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2313 -> 2514[label="",style="solid", color="black", weight=3]; 2314[label="primEqInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2314 -> 2515[label="",style="solid", color="black", weight=3]; 2315[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2315 -> 2516[label="",style="solid", color="black", weight=3]; 2316[label="False",fontsize=16,color="green",shape="box"];2317[label="primEqInt (Neg (Succ xuu400000)) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2317 -> 2517[label="",style="solid", color="black", weight=3]; 2318[label="primEqInt (Neg (Succ xuu400000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2318 -> 2518[label="",style="solid", color="black", weight=3]; 2319[label="primEqInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];2319 -> 2519[label="",style="solid", color="black", weight=3]; 2320[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2320 -> 2520[label="",style="solid", color="black", weight=3]; 2321[label="primEqInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];2321 -> 2521[label="",style="solid", color="black", weight=3]; 2322[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2322 -> 2522[label="",style="solid", color="black", weight=3]; 2338 -> 2010[label="",style="dashed", color="red", weight=0]; 2338[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2338 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2011[label="",style="dashed", color="red", weight=0]; 2339[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2339 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2012[label="",style="dashed", color="red", weight=0]; 2340[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2340 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2013[label="",style="dashed", color="red", weight=0]; 2341[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2341 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2014[label="",style="dashed", color="red", weight=0]; 2342[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2342 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2015[label="",style="dashed", color="red", weight=0]; 2343[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2343 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2016[label="",style="dashed", color="red", weight=0]; 2344[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2344 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2017[label="",style="dashed", color="red", weight=0]; 2345[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2345 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2018[label="",style="dashed", color="red", weight=0]; 2346[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2346 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2019[label="",style="dashed", color="red", weight=0]; 2347[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2347 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2020[label="",style="dashed", color="red", weight=0]; 2348[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2348 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2021[label="",style="dashed", color="red", weight=0]; 2349[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2349 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2350 -> 65[label="",style="dashed", color="red", weight=0]; 2350[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2350 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2023[label="",style="dashed", color="red", weight=0]; 2351[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2351 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2352[label="xuu40001",fontsize=16,color="green",shape="box"];2353[label="xuu3001",fontsize=16,color="green",shape="box"];2354[label="False && xuu124",fontsize=16,color="black",shape="box"];2354 -> 2574[label="",style="solid", color="black", weight=3]; 2355[label="True && xuu124",fontsize=16,color="black",shape="box"];2355 -> 2575[label="",style="solid", color="black", weight=3]; 2356[label="xuu40000",fontsize=16,color="green",shape="box"];2357[label="xuu3000",fontsize=16,color="green",shape="box"];2358[label="xuu40000",fontsize=16,color="green",shape="box"];2359[label="xuu3000",fontsize=16,color="green",shape="box"];2360[label="xuu40000",fontsize=16,color="green",shape="box"];2361[label="xuu3000",fontsize=16,color="green",shape="box"];2362[label="xuu40000",fontsize=16,color="green",shape="box"];2363[label="xuu3000",fontsize=16,color="green",shape="box"];2364[label="xuu40000",fontsize=16,color="green",shape="box"];2365[label="xuu3000",fontsize=16,color="green",shape="box"];2366[label="xuu40000",fontsize=16,color="green",shape="box"];2367[label="xuu3000",fontsize=16,color="green",shape="box"];2368[label="xuu40000",fontsize=16,color="green",shape="box"];2369[label="xuu3000",fontsize=16,color="green",shape="box"];2370[label="xuu40000",fontsize=16,color="green",shape="box"];2371[label="xuu3000",fontsize=16,color="green",shape="box"];2372[label="xuu40000",fontsize=16,color="green",shape="box"];2373[label="xuu3000",fontsize=16,color="green",shape="box"];2374[label="xuu40000",fontsize=16,color="green",shape="box"];2375[label="xuu3000",fontsize=16,color="green",shape="box"];2376[label="xuu40000",fontsize=16,color="green",shape="box"];2377[label="xuu3000",fontsize=16,color="green",shape="box"];2378[label="xuu40000",fontsize=16,color="green",shape="box"];2379[label="xuu3000",fontsize=16,color="green",shape="box"];2380[label="xuu40000",fontsize=16,color="green",shape="box"];2381[label="xuu3000",fontsize=16,color="green",shape="box"];2382[label="xuu40000",fontsize=16,color="green",shape="box"];2383[label="xuu3000",fontsize=16,color="green",shape="box"];2384[label="xuu40000",fontsize=16,color="green",shape="box"];2385[label="xuu3000",fontsize=16,color="green",shape="box"];2386[label="xuu40000",fontsize=16,color="green",shape="box"];2387[label="xuu3000",fontsize=16,color="green",shape="box"];2388[label="xuu40000",fontsize=16,color="green",shape="box"];2389[label="xuu3000",fontsize=16,color="green",shape="box"];2390[label="xuu40000",fontsize=16,color="green",shape="box"];2391[label="xuu3000",fontsize=16,color="green",shape="box"];2392[label="xuu40000",fontsize=16,color="green",shape="box"];2393[label="xuu3000",fontsize=16,color="green",shape="box"];2394[label="xuu40000",fontsize=16,color="green",shape="box"];2395[label="xuu3000",fontsize=16,color="green",shape="box"];2396[label="xuu40000",fontsize=16,color="green",shape="box"];2397[label="xuu3000",fontsize=16,color="green",shape="box"];2398[label="xuu40000",fontsize=16,color="green",shape="box"];2399[label="xuu3000",fontsize=16,color="green",shape="box"];2400[label="xuu40000",fontsize=16,color="green",shape="box"];2401[label="xuu3000",fontsize=16,color="green",shape="box"];2402[label="xuu40000",fontsize=16,color="green",shape="box"];2403[label="xuu3000",fontsize=16,color="green",shape="box"];2404[label="xuu40000",fontsize=16,color="green",shape="box"];2405[label="xuu3000",fontsize=16,color="green",shape="box"];2406[label="xuu40000",fontsize=16,color="green",shape="box"];2407[label="xuu3000",fontsize=16,color="green",shape="box"];2408[label="xuu40000",fontsize=16,color="green",shape="box"];2409[label="xuu3000",fontsize=16,color="green",shape="box"];2410[label="xuu40000",fontsize=16,color="green",shape="box"];2411[label="xuu3000",fontsize=16,color="green",shape="box"];2412[label="xuu40000",fontsize=16,color="green",shape="box"];2413[label="xuu3000",fontsize=16,color="green",shape="box"];2414[label="xuu40000",fontsize=16,color="green",shape="box"];2415[label="xuu3000",fontsize=16,color="green",shape="box"];2416[label="xuu40000",fontsize=16,color="green",shape="box"];2417[label="xuu3000",fontsize=16,color="green",shape="box"];2418[label="xuu40000",fontsize=16,color="green",shape="box"];2419[label="xuu3000",fontsize=16,color="green",shape="box"];2420[label="xuu40000",fontsize=16,color="green",shape="box"];2421[label="xuu3000",fontsize=16,color="green",shape="box"];2422[label="xuu40000",fontsize=16,color="green",shape="box"];2423[label="xuu3000",fontsize=16,color="green",shape="box"];2424[label="xuu40000",fontsize=16,color="green",shape="box"];2425[label="xuu3000",fontsize=16,color="green",shape="box"];2426[label="xuu40000",fontsize=16,color="green",shape="box"];2427[label="xuu3000",fontsize=16,color="green",shape="box"];2428[label="xuu40000",fontsize=16,color="green",shape="box"];2429[label="xuu3000",fontsize=16,color="green",shape="box"];2430[label="xuu40000",fontsize=16,color="green",shape="box"];2431[label="xuu3000",fontsize=16,color="green",shape="box"];2432[label="xuu40000",fontsize=16,color="green",shape="box"];2433[label="xuu3000",fontsize=16,color="green",shape="box"];2434[label="xuu40000",fontsize=16,color="green",shape="box"];2435[label="xuu3000",fontsize=16,color="green",shape="box"];2436[label="xuu40000",fontsize=16,color="green",shape="box"];2437[label="xuu3000",fontsize=16,color="green",shape="box"];2438[label="xuu40000",fontsize=16,color="green",shape="box"];2439[label="xuu3000",fontsize=16,color="green",shape="box"];2440 -> 2010[label="",style="dashed", color="red", weight=0]; 2440[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2440 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2011[label="",style="dashed", color="red", weight=0]; 2441[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2441 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2012[label="",style="dashed", color="red", weight=0]; 2442[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2442 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2013[label="",style="dashed", color="red", weight=0]; 2443[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2443 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2014[label="",style="dashed", color="red", weight=0]; 2444[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2444 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2015[label="",style="dashed", color="red", weight=0]; 2445[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2445 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2016[label="",style="dashed", color="red", weight=0]; 2446[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2446 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2017[label="",style="dashed", color="red", weight=0]; 2447[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2447 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2018[label="",style="dashed", color="red", weight=0]; 2448[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2448 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2019[label="",style="dashed", color="red", weight=0]; 2449[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2449 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2020[label="",style="dashed", color="red", weight=0]; 2450[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2450 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2021[label="",style="dashed", color="red", weight=0]; 2451[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2451 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2452 -> 65[label="",style="dashed", color="red", weight=0]; 2452[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2452 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2023[label="",style="dashed", color="red", weight=0]; 2453[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2453 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2454[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4262[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 2604[label="",style="solid", color="blue", weight=3]; 4263[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 2605[label="",style="solid", color="blue", weight=3]; 4264[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 2606[label="",style="solid", color="blue", weight=3]; 4265[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 2607[label="",style="solid", color="blue", weight=3]; 4266[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 2608[label="",style="solid", color="blue", weight=3]; 4267[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 2609[label="",style="solid", color="blue", weight=3]; 4268[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 2610[label="",style="solid", color="blue", weight=3]; 4269[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 2611[label="",style="solid", color="blue", weight=3]; 4270[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 2612[label="",style="solid", color="blue", weight=3]; 4271[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4271[label="",style="solid", color="blue", weight=9]; 4271 -> 2613[label="",style="solid", color="blue", weight=3]; 4272[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4272[label="",style="solid", color="blue", weight=9]; 4272 -> 2614[label="",style="solid", color="blue", weight=3]; 4273[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4273[label="",style="solid", color="blue", weight=9]; 4273 -> 2615[label="",style="solid", color="blue", weight=3]; 4274[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4274[label="",style="solid", color="blue", weight=9]; 4274 -> 2616[label="",style="solid", color="blue", weight=3]; 4275[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2454 -> 4275[label="",style="solid", color="blue", weight=9]; 4275 -> 2617[label="",style="solid", color="blue", weight=3]; 2455[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];4276[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 2618[label="",style="solid", color="blue", weight=3]; 4277[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 2619[label="",style="solid", color="blue", weight=3]; 4278[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 2620[label="",style="solid", color="blue", weight=3]; 4279[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 2621[label="",style="solid", color="blue", weight=3]; 4280[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 2622[label="",style="solid", color="blue", weight=3]; 4281[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 2623[label="",style="solid", color="blue", weight=3]; 4282[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4282[label="",style="solid", color="blue", weight=9]; 4282 -> 2624[label="",style="solid", color="blue", weight=3]; 4283[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4283[label="",style="solid", color="blue", weight=9]; 4283 -> 2625[label="",style="solid", color="blue", weight=3]; 4284[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4284[label="",style="solid", color="blue", weight=9]; 4284 -> 2626[label="",style="solid", color="blue", weight=3]; 4285[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4285[label="",style="solid", color="blue", weight=9]; 4285 -> 2627[label="",style="solid", color="blue", weight=3]; 4286[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4286[label="",style="solid", color="blue", weight=9]; 4286 -> 2628[label="",style="solid", color="blue", weight=3]; 4287[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4287[label="",style="solid", color="blue", weight=9]; 4287 -> 2629[label="",style="solid", color="blue", weight=3]; 4288[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 2630[label="",style="solid", color="blue", weight=3]; 4289[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 2631[label="",style="solid", color="blue", weight=3]; 2456[label="primEqNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4290[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2456 -> 4290[label="",style="solid", color="burlywood", weight=9]; 4290 -> 2632[label="",style="solid", color="burlywood", weight=3]; 4291[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2456 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 2633[label="",style="solid", color="burlywood", weight=3]; 2457[label="primEqNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];4292[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4292[label="",style="solid", color="burlywood", weight=9]; 4292 -> 2634[label="",style="solid", color="burlywood", weight=3]; 4293[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2457 -> 4293[label="",style="solid", color="burlywood", weight=9]; 4293 -> 2635[label="",style="solid", color="burlywood", weight=3]; 2458 -> 661[label="",style="dashed", color="red", weight=0]; 2458[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2459 -> 661[label="",style="dashed", color="red", weight=0]; 2459[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2459 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2010[label="",style="dashed", color="red", weight=0]; 2460[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2460 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2011[label="",style="dashed", color="red", weight=0]; 2461[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2461 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2012[label="",style="dashed", color="red", weight=0]; 2462[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2462 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2013[label="",style="dashed", color="red", weight=0]; 2463[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2463 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2014[label="",style="dashed", color="red", weight=0]; 2464[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2464 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2015[label="",style="dashed", color="red", weight=0]; 2465[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2465 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2016[label="",style="dashed", color="red", weight=0]; 2466[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2466 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2017[label="",style="dashed", color="red", weight=0]; 2467[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2467 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2018[label="",style="dashed", color="red", weight=0]; 2468[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2468 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2019[label="",style="dashed", color="red", weight=0]; 2469[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2469 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2020[label="",style="dashed", color="red", weight=0]; 2470[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2470 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2021[label="",style="dashed", color="red", weight=0]; 2471[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2471 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2472 -> 65[label="",style="dashed", color="red", weight=0]; 2472[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2472 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2023[label="",style="dashed", color="red", weight=0]; 2473[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2473 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2010[label="",style="dashed", color="red", weight=0]; 2474[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2474 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2011[label="",style="dashed", color="red", weight=0]; 2475[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2475 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2012[label="",style="dashed", color="red", weight=0]; 2476[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2476 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2013[label="",style="dashed", color="red", weight=0]; 2477[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2477 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2014[label="",style="dashed", color="red", weight=0]; 2478[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2478 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2015[label="",style="dashed", color="red", weight=0]; 2479[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2479 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2016[label="",style="dashed", color="red", weight=0]; 2480[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2480 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2017[label="",style="dashed", color="red", weight=0]; 2481[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2481 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2018[label="",style="dashed", color="red", weight=0]; 2482[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2482 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2019[label="",style="dashed", color="red", weight=0]; 2483[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2483 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2020[label="",style="dashed", color="red", weight=0]; 2484[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2484 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2021[label="",style="dashed", color="red", weight=0]; 2485[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2485 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2486 -> 65[label="",style="dashed", color="red", weight=0]; 2486[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2486 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2023[label="",style="dashed", color="red", weight=0]; 2487[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2487 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2010[label="",style="dashed", color="red", weight=0]; 2488[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2488 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2016[label="",style="dashed", color="red", weight=0]; 2489[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];2489 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2010[label="",style="dashed", color="red", weight=0]; 2490[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2490 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2016[label="",style="dashed", color="red", weight=0]; 2491[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2491 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2492 -> 661[label="",style="dashed", color="red", weight=0]; 2492[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];2492 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2493 -> 661[label="",style="dashed", color="red", weight=0]; 2493[label="xuu40001 * xuu3000",fontsize=16,color="magenta"];2493 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2001[label="Just xuu19",fontsize=16,color="green",shape="box"];2002[label="Just xuu14",fontsize=16,color="green",shape="box"];2003[label="Just xuu19 == Just xuu14",fontsize=16,color="black",shape="box"];2003 -> 2027[label="",style="solid", color="black", weight=3]; 720 -> 486[label="",style="dashed", color="red", weight=0]; 720[label="FiniteMap.addListToFM0 xuu15 xuu20",fontsize=16,color="magenta"];720 -> 950[label="",style="dashed", color="magenta", weight=3]; 720 -> 951[label="",style="dashed", color="magenta", weight=3]; 2024[label="True",fontsize=16,color="green",shape="box"];725[label="xuu401",fontsize=16,color="green",shape="box"];2494[label="compare0 (Just xuu3000) Nothing True",fontsize=16,color="black",shape="box"];2494 -> 2706[label="",style="solid", color="black", weight=3]; 2495[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2495 -> 2707[label="",style="solid", color="black", weight=3]; 2496[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2496 -> 2708[label="",style="solid", color="black", weight=3]; 2497[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2497 -> 2709[label="",style="solid", color="black", weight=3]; 2498[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4294[label="xuu3000/(xuu30000,xuu30001)",fontsize=10,color="white",style="solid",shape="box"];2498 -> 4294[label="",style="solid", color="burlywood", weight=9]; 4294 -> 2710[label="",style="solid", color="burlywood", weight=3]; 2499[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4295[label="xuu3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2499 -> 4295[label="",style="solid", color="burlywood", weight=9]; 4295 -> 2711[label="",style="solid", color="burlywood", weight=3]; 4296[label="xuu3000/Just xuu30000",fontsize=10,color="white",style="solid",shape="box"];2499 -> 4296[label="",style="solid", color="burlywood", weight=9]; 4296 -> 2712[label="",style="solid", color="burlywood", weight=3]; 2500[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2500 -> 2713[label="",style="solid", color="black", weight=3]; 2501[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2501 -> 2714[label="",style="solid", color="black", weight=3]; 2502[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4297[label="xuu3000/Left xuu30000",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4297[label="",style="solid", color="burlywood", weight=9]; 4297 -> 2715[label="",style="solid", color="burlywood", weight=3]; 4298[label="xuu3000/Right xuu30000",fontsize=10,color="white",style="solid",shape="box"];2502 -> 4298[label="",style="solid", color="burlywood", weight=9]; 4298 -> 2716[label="",style="solid", color="burlywood", weight=3]; 2503[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2503 -> 2717[label="",style="solid", color="black", weight=3]; 2504[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4299[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4299[label="",style="solid", color="burlywood", weight=9]; 4299 -> 2718[label="",style="solid", color="burlywood", weight=3]; 4300[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4300[label="",style="solid", color="burlywood", weight=9]; 4300 -> 2719[label="",style="solid", color="burlywood", weight=3]; 4301[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];2504 -> 4301[label="",style="solid", color="burlywood", weight=9]; 4301 -> 2720[label="",style="solid", color="burlywood", weight=3]; 2505[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4302[label="xuu3000/False",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4302[label="",style="solid", color="burlywood", weight=9]; 4302 -> 2721[label="",style="solid", color="burlywood", weight=3]; 4303[label="xuu3000/True",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4303[label="",style="solid", color="burlywood", weight=9]; 4303 -> 2722[label="",style="solid", color="burlywood", weight=3]; 2506[label="xuu3000 <= xuu3100",fontsize=16,color="burlywood",shape="triangle"];4304[label="xuu3000/(xuu30000,xuu30001,xuu30002)",fontsize=10,color="white",style="solid",shape="box"];2506 -> 4304[label="",style="solid", color="burlywood", weight=9]; 4304 -> 2723[label="",style="solid", color="burlywood", weight=3]; 2507[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2507 -> 2724[label="",style="solid", color="black", weight=3]; 2508[label="xuu3000 <= xuu3100",fontsize=16,color="black",shape="triangle"];2508 -> 2725[label="",style="solid", color="black", weight=3]; 2509[label="compare1 (Just xuu117) (Just xuu118) False",fontsize=16,color="black",shape="box"];2509 -> 2726[label="",style="solid", color="black", weight=3]; 2510[label="compare1 (Just xuu117) (Just xuu118) True",fontsize=16,color="black",shape="box"];2510 -> 2727[label="",style="solid", color="black", weight=3]; 2025[label="False",fontsize=16,color="green",shape="box"];728[label="primCmpInt (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];728 -> 954[label="",style="solid", color="black", weight=3]; 956 -> 1471[label="",style="dashed", color="red", weight=0]; 956[label="FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];956 -> 1472[label="",style="dashed", color="magenta", weight=3]; 956 -> 1473[label="",style="dashed", color="magenta", weight=3]; 955[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 xuu57",fontsize=16,color="burlywood",shape="triangle"];4305[label="xuu57/False",fontsize=10,color="white",style="solid",shape="box"];955 -> 4305[label="",style="solid", color="burlywood", weight=9]; 4305 -> 967[label="",style="solid", color="burlywood", weight=3]; 4306[label="xuu57/True",fontsize=10,color="white",style="solid",shape="box"];955 -> 4306[label="",style="solid", color="burlywood", weight=9]; 4306 -> 968[label="",style="solid", color="burlywood", weight=3]; 3784[label="xuu34",fontsize=16,color="green",shape="box"];3785[label="Zero",fontsize=16,color="green",shape="box"];3786[label="xuu25",fontsize=16,color="green",shape="box"];3787[label="Just xuu300",fontsize=16,color="green",shape="box"];3788[label="xuu31",fontsize=16,color="green",shape="box"];3783[label="FiniteMap.mkBranch (Pos (Succ xuu192)) xuu193 xuu194 xuu195 xuu196",fontsize=16,color="black",shape="triangle"];3783 -> 3914[label="",style="solid", color="black", weight=3]; 2026[label="False",fontsize=16,color="green",shape="box"];733[label="primCmpInt (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];733 -> 984[label="",style="solid", color="black", weight=3]; 986 -> 1471[label="",style="dashed", color="red", weight=0]; 986[label="FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];986 -> 1474[label="",style="dashed", color="magenta", weight=3]; 986 -> 1475[label="",style="dashed", color="magenta", weight=3]; 985[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 xuu60",fontsize=16,color="burlywood",shape="triangle"];4307[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];985 -> 4307[label="",style="solid", color="burlywood", weight=9]; 4307 -> 991[label="",style="solid", color="burlywood", weight=3]; 4308[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];985 -> 4308[label="",style="solid", color="burlywood", weight=9]; 4308 -> 992[label="",style="solid", color="burlywood", weight=3]; 3789[label="xuu34",fontsize=16,color="green",shape="box"];3790[label="Zero",fontsize=16,color="green",shape="box"];3791[label="xuu33",fontsize=16,color="green",shape="box"];3792[label="Nothing",fontsize=16,color="green",shape="box"];3793[label="xuu31",fontsize=16,color="green",shape="box"];2511 -> 2297[label="",style="dashed", color="red", weight=0]; 2511[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2511 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2512[label="False",fontsize=16,color="green",shape="box"];2513[label="False",fontsize=16,color="green",shape="box"];2514[label="True",fontsize=16,color="green",shape="box"];2515[label="False",fontsize=16,color="green",shape="box"];2516[label="True",fontsize=16,color="green",shape="box"];2517 -> 2297[label="",style="dashed", color="red", weight=0]; 2517[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2517 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2518[label="False",fontsize=16,color="green",shape="box"];2519[label="False",fontsize=16,color="green",shape="box"];2520[label="True",fontsize=16,color="green",shape="box"];2521[label="False",fontsize=16,color="green",shape="box"];2522[label="True",fontsize=16,color="green",shape="box"];2546[label="xuu40000",fontsize=16,color="green",shape="box"];2547[label="xuu3000",fontsize=16,color="green",shape="box"];2548[label="xuu40000",fontsize=16,color="green",shape="box"];2549[label="xuu3000",fontsize=16,color="green",shape="box"];2550[label="xuu40000",fontsize=16,color="green",shape="box"];2551[label="xuu3000",fontsize=16,color="green",shape="box"];2552[label="xuu40000",fontsize=16,color="green",shape="box"];2553[label="xuu3000",fontsize=16,color="green",shape="box"];2554[label="xuu40000",fontsize=16,color="green",shape="box"];2555[label="xuu3000",fontsize=16,color="green",shape="box"];2556[label="xuu40000",fontsize=16,color="green",shape="box"];2557[label="xuu3000",fontsize=16,color="green",shape="box"];2558[label="xuu40000",fontsize=16,color="green",shape="box"];2559[label="xuu3000",fontsize=16,color="green",shape="box"];2560[label="xuu40000",fontsize=16,color="green",shape="box"];2561[label="xuu3000",fontsize=16,color="green",shape="box"];2562[label="xuu40000",fontsize=16,color="green",shape="box"];2563[label="xuu3000",fontsize=16,color="green",shape="box"];2564[label="xuu40000",fontsize=16,color="green",shape="box"];2565[label="xuu3000",fontsize=16,color="green",shape="box"];2566[label="xuu40000",fontsize=16,color="green",shape="box"];2567[label="xuu3000",fontsize=16,color="green",shape="box"];2568[label="xuu40000",fontsize=16,color="green",shape="box"];2569[label="xuu3000",fontsize=16,color="green",shape="box"];2570[label="xuu40000",fontsize=16,color="green",shape="box"];2571[label="xuu3000",fontsize=16,color="green",shape="box"];2572[label="xuu40000",fontsize=16,color="green",shape="box"];2573[label="xuu3000",fontsize=16,color="green",shape="box"];2574[label="False",fontsize=16,color="green",shape="box"];2575[label="xuu124",fontsize=16,color="green",shape="box"];2576[label="xuu40000",fontsize=16,color="green",shape="box"];2577[label="xuu3000",fontsize=16,color="green",shape="box"];2578[label="xuu40000",fontsize=16,color="green",shape="box"];2579[label="xuu3000",fontsize=16,color="green",shape="box"];2580[label="xuu40000",fontsize=16,color="green",shape="box"];2581[label="xuu3000",fontsize=16,color="green",shape="box"];2582[label="xuu40000",fontsize=16,color="green",shape="box"];2583[label="xuu3000",fontsize=16,color="green",shape="box"];2584[label="xuu40000",fontsize=16,color="green",shape="box"];2585[label="xuu3000",fontsize=16,color="green",shape="box"];2586[label="xuu40000",fontsize=16,color="green",shape="box"];2587[label="xuu3000",fontsize=16,color="green",shape="box"];2588[label="xuu40000",fontsize=16,color="green",shape="box"];2589[label="xuu3000",fontsize=16,color="green",shape="box"];2590[label="xuu40000",fontsize=16,color="green",shape="box"];2591[label="xuu3000",fontsize=16,color="green",shape="box"];2592[label="xuu40000",fontsize=16,color="green",shape="box"];2593[label="xuu3000",fontsize=16,color="green",shape="box"];2594[label="xuu40000",fontsize=16,color="green",shape="box"];2595[label="xuu3000",fontsize=16,color="green",shape="box"];2596[label="xuu40000",fontsize=16,color="green",shape="box"];2597[label="xuu3000",fontsize=16,color="green",shape="box"];2598[label="xuu40000",fontsize=16,color="green",shape="box"];2599[label="xuu3000",fontsize=16,color="green",shape="box"];2600[label="xuu40000",fontsize=16,color="green",shape="box"];2601[label="xuu3000",fontsize=16,color="green",shape="box"];2602[label="xuu40000",fontsize=16,color="green",shape="box"];2603[label="xuu3000",fontsize=16,color="green",shape="box"];2604 -> 2010[label="",style="dashed", color="red", weight=0]; 2604[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2604 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2011[label="",style="dashed", color="red", weight=0]; 2605[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2605 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2012[label="",style="dashed", color="red", weight=0]; 2606[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2606 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2013[label="",style="dashed", color="red", weight=0]; 2607[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2607 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2014[label="",style="dashed", color="red", weight=0]; 2608[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2608 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2015[label="",style="dashed", color="red", weight=0]; 2609[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2609 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2016[label="",style="dashed", color="red", weight=0]; 2610[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2610 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2017[label="",style="dashed", color="red", weight=0]; 2611[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2611 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2018[label="",style="dashed", color="red", weight=0]; 2612[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2612 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2019[label="",style="dashed", color="red", weight=0]; 2613[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2613 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2020[label="",style="dashed", color="red", weight=0]; 2614[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2614 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2021[label="",style="dashed", color="red", weight=0]; 2615[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2615 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2616 -> 65[label="",style="dashed", color="red", weight=0]; 2616[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2616 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2023[label="",style="dashed", color="red", weight=0]; 2617[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];2617 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2010[label="",style="dashed", color="red", weight=0]; 2618[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2618 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2011[label="",style="dashed", color="red", weight=0]; 2619[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2619 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2012[label="",style="dashed", color="red", weight=0]; 2620[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2620 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2013[label="",style="dashed", color="red", weight=0]; 2621[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2621 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2014[label="",style="dashed", color="red", weight=0]; 2622[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2622 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2015[label="",style="dashed", color="red", weight=0]; 2623[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2623 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2016[label="",style="dashed", color="red", weight=0]; 2624[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2624 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2017[label="",style="dashed", color="red", weight=0]; 2625[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2625 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2018[label="",style="dashed", color="red", weight=0]; 2626[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2626 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2019[label="",style="dashed", color="red", weight=0]; 2627[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2627 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2020[label="",style="dashed", color="red", weight=0]; 2628[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2628 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2021[label="",style="dashed", color="red", weight=0]; 2629[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2629 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2630 -> 65[label="",style="dashed", color="red", weight=0]; 2630[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2630 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2023[label="",style="dashed", color="red", weight=0]; 2631[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];2631 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2632[label="primEqNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];2632 -> 2806[label="",style="solid", color="black", weight=3]; 2633[label="primEqNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];2633 -> 2807[label="",style="solid", color="black", weight=3]; 2634[label="primEqNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];2634 -> 2808[label="",style="solid", color="black", weight=3]; 2635[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2635 -> 2809[label="",style="solid", color="black", weight=3]; 661[label="xuu40000 * xuu3001",fontsize=16,color="black",shape="triangle"];661 -> 845[label="",style="solid", color="black", weight=3]; 2636[label="xuu3000",fontsize=16,color="green",shape="box"];2637[label="xuu40001",fontsize=16,color="green",shape="box"];2638[label="xuu40000",fontsize=16,color="green",shape="box"];2639[label="xuu3000",fontsize=16,color="green",shape="box"];2640[label="xuu40000",fontsize=16,color="green",shape="box"];2641[label="xuu3000",fontsize=16,color="green",shape="box"];2642[label="xuu40000",fontsize=16,color="green",shape="box"];2643[label="xuu3000",fontsize=16,color="green",shape="box"];2644[label="xuu40000",fontsize=16,color="green",shape="box"];2645[label="xuu3000",fontsize=16,color="green",shape="box"];2646[label="xuu40000",fontsize=16,color="green",shape="box"];2647[label="xuu3000",fontsize=16,color="green",shape="box"];2648[label="xuu40000",fontsize=16,color="green",shape="box"];2649[label="xuu3000",fontsize=16,color="green",shape="box"];2650[label="xuu40000",fontsize=16,color="green",shape="box"];2651[label="xuu3000",fontsize=16,color="green",shape="box"];2652[label="xuu40000",fontsize=16,color="green",shape="box"];2653[label="xuu3000",fontsize=16,color="green",shape="box"];2654[label="xuu40000",fontsize=16,color="green",shape="box"];2655[label="xuu3000",fontsize=16,color="green",shape="box"];2656[label="xuu40000",fontsize=16,color="green",shape="box"];2657[label="xuu3000",fontsize=16,color="green",shape="box"];2658[label="xuu40000",fontsize=16,color="green",shape="box"];2659[label="xuu3000",fontsize=16,color="green",shape="box"];2660[label="xuu40000",fontsize=16,color="green",shape="box"];2661[label="xuu3000",fontsize=16,color="green",shape="box"];2662[label="xuu40000",fontsize=16,color="green",shape="box"];2663[label="xuu3000",fontsize=16,color="green",shape="box"];2664[label="xuu40000",fontsize=16,color="green",shape="box"];2665[label="xuu3000",fontsize=16,color="green",shape="box"];2666[label="xuu40001",fontsize=16,color="green",shape="box"];2667[label="xuu3001",fontsize=16,color="green",shape="box"];2668[label="xuu40001",fontsize=16,color="green",shape="box"];2669[label="xuu3001",fontsize=16,color="green",shape="box"];2670[label="xuu40001",fontsize=16,color="green",shape="box"];2671[label="xuu3001",fontsize=16,color="green",shape="box"];2672[label="xuu40001",fontsize=16,color="green",shape="box"];2673[label="xuu3001",fontsize=16,color="green",shape="box"];2674[label="xuu40001",fontsize=16,color="green",shape="box"];2675[label="xuu3001",fontsize=16,color="green",shape="box"];2676[label="xuu40001",fontsize=16,color="green",shape="box"];2677[label="xuu3001",fontsize=16,color="green",shape="box"];2678[label="xuu40001",fontsize=16,color="green",shape="box"];2679[label="xuu3001",fontsize=16,color="green",shape="box"];2680[label="xuu40001",fontsize=16,color="green",shape="box"];2681[label="xuu3001",fontsize=16,color="green",shape="box"];2682[label="xuu40001",fontsize=16,color="green",shape="box"];2683[label="xuu3001",fontsize=16,color="green",shape="box"];2684[label="xuu40001",fontsize=16,color="green",shape="box"];2685[label="xuu3001",fontsize=16,color="green",shape="box"];2686[label="xuu40001",fontsize=16,color="green",shape="box"];2687[label="xuu3001",fontsize=16,color="green",shape="box"];2688[label="xuu40001",fontsize=16,color="green",shape="box"];2689[label="xuu3001",fontsize=16,color="green",shape="box"];2690[label="xuu40001",fontsize=16,color="green",shape="box"];2691[label="xuu3001",fontsize=16,color="green",shape="box"];2692[label="xuu40001",fontsize=16,color="green",shape="box"];2693[label="xuu3001",fontsize=16,color="green",shape="box"];2694[label="xuu40000",fontsize=16,color="green",shape="box"];2695[label="xuu3000",fontsize=16,color="green",shape="box"];2696[label="xuu40000",fontsize=16,color="green",shape="box"];2697[label="xuu3000",fontsize=16,color="green",shape="box"];2698[label="xuu40001",fontsize=16,color="green",shape="box"];2699[label="xuu3001",fontsize=16,color="green",shape="box"];2700[label="xuu40001",fontsize=16,color="green",shape="box"];2701[label="xuu3001",fontsize=16,color="green",shape="box"];2702[label="xuu3001",fontsize=16,color="green",shape="box"];2703[label="xuu40000",fontsize=16,color="green",shape="box"];2704[label="xuu3000",fontsize=16,color="green",shape="box"];2705[label="xuu40001",fontsize=16,color="green",shape="box"];2027[label="xuu19 == xuu14",fontsize=16,color="blue",shape="box"];4309[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 2049[label="",style="solid", color="blue", weight=3]; 4310[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 2050[label="",style="solid", color="blue", weight=3]; 4311[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 2051[label="",style="solid", color="blue", weight=3]; 4312[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 2052[label="",style="solid", color="blue", weight=3]; 4313[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 2053[label="",style="solid", color="blue", weight=3]; 4314[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 2054[label="",style="solid", color="blue", weight=3]; 4315[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 2055[label="",style="solid", color="blue", weight=3]; 4316[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 2056[label="",style="solid", color="blue", weight=3]; 4317[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 2057[label="",style="solid", color="blue", weight=3]; 4318[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 2058[label="",style="solid", color="blue", weight=3]; 4319[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 2059[label="",style="solid", color="blue", weight=3]; 4320[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 2060[label="",style="solid", color="blue", weight=3]; 4321[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 2061[label="",style="solid", color="blue", weight=3]; 4322[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2027 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 2062[label="",style="solid", color="blue", weight=3]; 950[label="xuu15",fontsize=16,color="green",shape="box"];951[label="xuu20",fontsize=16,color="green",shape="box"];2706[label="GT",fontsize=16,color="green",shape="box"];2707 -> 2824[label="",style="dashed", color="red", weight=0]; 2707[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2707 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2824[label="",style="dashed", color="red", weight=0]; 2708[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2708 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2824[label="",style="dashed", color="red", weight=0]; 2709[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2709 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2710[label="(xuu30000,xuu30001) <= xuu3100",fontsize=16,color="burlywood",shape="box"];4323[label="xuu3100/(xuu31000,xuu31001)",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4323[label="",style="solid", color="burlywood", weight=9]; 4323 -> 2813[label="",style="solid", color="burlywood", weight=3]; 2711[label="Nothing <= xuu3100",fontsize=16,color="burlywood",shape="box"];4324[label="xuu3100/Nothing",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4324[label="",style="solid", color="burlywood", weight=9]; 4324 -> 2814[label="",style="solid", color="burlywood", weight=3]; 4325[label="xuu3100/Just xuu31000",fontsize=10,color="white",style="solid",shape="box"];2711 -> 4325[label="",style="solid", color="burlywood", weight=9]; 4325 -> 2815[label="",style="solid", color="burlywood", weight=3]; 2712[label="Just xuu30000 <= xuu3100",fontsize=16,color="burlywood",shape="box"];4326[label="xuu3100/Nothing",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4326[label="",style="solid", color="burlywood", weight=9]; 4326 -> 2816[label="",style="solid", color="burlywood", weight=3]; 4327[label="xuu3100/Just xuu31000",fontsize=10,color="white",style="solid",shape="box"];2712 -> 4327[label="",style="solid", color="burlywood", weight=9]; 4327 -> 2817[label="",style="solid", color="burlywood", weight=3]; 2713 -> 2824[label="",style="dashed", color="red", weight=0]; 2713[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2713 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2824[label="",style="dashed", color="red", weight=0]; 2714[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2714 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2715[label="Left xuu30000 <= xuu3100",fontsize=16,color="burlywood",shape="box"];4328[label="xuu3100/Left xuu31000",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4328[label="",style="solid", color="burlywood", weight=9]; 4328 -> 2820[label="",style="solid", color="burlywood", weight=3]; 4329[label="xuu3100/Right xuu31000",fontsize=10,color="white",style="solid",shape="box"];2715 -> 4329[label="",style="solid", color="burlywood", weight=9]; 4329 -> 2821[label="",style="solid", color="burlywood", weight=3]; 2716[label="Right xuu30000 <= xuu3100",fontsize=16,color="burlywood",shape="box"];4330[label="xuu3100/Left xuu31000",fontsize=10,color="white",style="solid",shape="box"];2716 -> 4330[label="",style="solid", color="burlywood", weight=9]; 4330 -> 2822[label="",style="solid", color="burlywood", weight=3]; 4331[label="xuu3100/Right xuu31000",fontsize=10,color="white",style="solid",shape="box"];2716 -> 4331[label="",style="solid", color="burlywood", weight=9]; 4331 -> 2823[label="",style="solid", color="burlywood", weight=3]; 2717 -> 2824[label="",style="dashed", color="red", weight=0]; 2717[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2717 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2718[label="LT <= xuu3100",fontsize=16,color="burlywood",shape="box"];4332[label="xuu3100/LT",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4332[label="",style="solid", color="burlywood", weight=9]; 4332 -> 2833[label="",style="solid", color="burlywood", weight=3]; 4333[label="xuu3100/EQ",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 2834[label="",style="solid", color="burlywood", weight=3]; 4334[label="xuu3100/GT",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 2835[label="",style="solid", color="burlywood", weight=3]; 2719[label="EQ <= xuu3100",fontsize=16,color="burlywood",shape="box"];4335[label="xuu3100/LT",fontsize=10,color="white",style="solid",shape="box"];2719 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 2836[label="",style="solid", color="burlywood", weight=3]; 4336[label="xuu3100/EQ",fontsize=10,color="white",style="solid",shape="box"];2719 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 2837[label="",style="solid", color="burlywood", weight=3]; 4337[label="xuu3100/GT",fontsize=10,color="white",style="solid",shape="box"];2719 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 2838[label="",style="solid", color="burlywood", weight=3]; 2720[label="GT <= xuu3100",fontsize=16,color="burlywood",shape="box"];4338[label="xuu3100/LT",fontsize=10,color="white",style="solid",shape="box"];2720 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 2839[label="",style="solid", color="burlywood", weight=3]; 4339[label="xuu3100/EQ",fontsize=10,color="white",style="solid",shape="box"];2720 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 2840[label="",style="solid", color="burlywood", weight=3]; 4340[label="xuu3100/GT",fontsize=10,color="white",style="solid",shape="box"];2720 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 2841[label="",style="solid", color="burlywood", weight=3]; 2721[label="False <= xuu3100",fontsize=16,color="burlywood",shape="box"];4341[label="xuu3100/False",fontsize=10,color="white",style="solid",shape="box"];2721 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 2842[label="",style="solid", color="burlywood", weight=3]; 4342[label="xuu3100/True",fontsize=10,color="white",style="solid",shape="box"];2721 -> 4342[label="",style="solid", color="burlywood", weight=9]; 4342 -> 2843[label="",style="solid", color="burlywood", weight=3]; 2722[label="True <= xuu3100",fontsize=16,color="burlywood",shape="box"];4343[label="xuu3100/False",fontsize=10,color="white",style="solid",shape="box"];2722 -> 4343[label="",style="solid", color="burlywood", weight=9]; 4343 -> 2844[label="",style="solid", color="burlywood", weight=3]; 4344[label="xuu3100/True",fontsize=10,color="white",style="solid",shape="box"];2722 -> 4344[label="",style="solid", color="burlywood", weight=9]; 4344 -> 2845[label="",style="solid", color="burlywood", weight=3]; 2723[label="(xuu30000,xuu30001,xuu30002) <= xuu3100",fontsize=16,color="burlywood",shape="box"];4345[label="xuu3100/(xuu31000,xuu31001,xuu31002)",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4345[label="",style="solid", color="burlywood", weight=9]; 4345 -> 2846[label="",style="solid", color="burlywood", weight=3]; 2724 -> 2824[label="",style="dashed", color="red", weight=0]; 2724[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2724 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2824[label="",style="dashed", color="red", weight=0]; 2725[label="compare xuu3000 xuu3100 /= GT",fontsize=16,color="magenta"];2725 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2726[label="compare0 (Just xuu117) (Just xuu118) otherwise",fontsize=16,color="black",shape="box"];2726 -> 2847[label="",style="solid", color="black", weight=3]; 2727[label="LT",fontsize=16,color="green",shape="box"];954[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34) (FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];954 -> 1090[label="",style="solid", color="black", weight=3]; 1472 -> 661[label="",style="dashed", color="red", weight=0]; 1472[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1472 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1473[label="FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1473 -> 1484[label="",style="solid", color="black", weight=3]; 1471[label="xuu80 > xuu79",fontsize=16,color="black",shape="triangle"];1471 -> 1485[label="",style="solid", color="black", weight=3]; 967[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 False",fontsize=16,color="black",shape="box"];967 -> 1094[label="",style="solid", color="black", weight=3]; 968[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];968 -> 1095[label="",style="solid", color="black", weight=3]; 3914[label="FiniteMap.mkBranchResult xuu193 xuu194 xuu195 xuu196",fontsize=16,color="black",shape="box"];3914 -> 3985[label="",style="solid", color="black", weight=3]; 984[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34) (FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];984 -> 1125[label="",style="solid", color="black", weight=3]; 1474 -> 661[label="",style="dashed", color="red", weight=0]; 1474[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1474 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1475[label="FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1475 -> 1488[label="",style="solid", color="black", weight=3]; 991[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 False",fontsize=16,color="black",shape="box"];991 -> 1129[label="",style="solid", color="black", weight=3]; 992[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];992 -> 1130[label="",style="solid", color="black", weight=3]; 2728[label="xuu30000",fontsize=16,color="green",shape="box"];2729[label="xuu400000",fontsize=16,color="green",shape="box"];2730[label="xuu30000",fontsize=16,color="green",shape="box"];2731[label="xuu400000",fontsize=16,color="green",shape="box"];2750[label="xuu40001",fontsize=16,color="green",shape="box"];2751[label="xuu3001",fontsize=16,color="green",shape="box"];2752[label="xuu40001",fontsize=16,color="green",shape="box"];2753[label="xuu3001",fontsize=16,color="green",shape="box"];2754[label="xuu40001",fontsize=16,color="green",shape="box"];2755[label="xuu3001",fontsize=16,color="green",shape="box"];2756[label="xuu40001",fontsize=16,color="green",shape="box"];2757[label="xuu3001",fontsize=16,color="green",shape="box"];2758[label="xuu40001",fontsize=16,color="green",shape="box"];2759[label="xuu3001",fontsize=16,color="green",shape="box"];2760[label="xuu40001",fontsize=16,color="green",shape="box"];2761[label="xuu3001",fontsize=16,color="green",shape="box"];2762[label="xuu40001",fontsize=16,color="green",shape="box"];2763[label="xuu3001",fontsize=16,color="green",shape="box"];2764[label="xuu40001",fontsize=16,color="green",shape="box"];2765[label="xuu3001",fontsize=16,color="green",shape="box"];2766[label="xuu40001",fontsize=16,color="green",shape="box"];2767[label="xuu3001",fontsize=16,color="green",shape="box"];2768[label="xuu40001",fontsize=16,color="green",shape="box"];2769[label="xuu3001",fontsize=16,color="green",shape="box"];2770[label="xuu40001",fontsize=16,color="green",shape="box"];2771[label="xuu3001",fontsize=16,color="green",shape="box"];2772[label="xuu40001",fontsize=16,color="green",shape="box"];2773[label="xuu3001",fontsize=16,color="green",shape="box"];2774[label="xuu40001",fontsize=16,color="green",shape="box"];2775[label="xuu3001",fontsize=16,color="green",shape="box"];2776[label="xuu40001",fontsize=16,color="green",shape="box"];2777[label="xuu3001",fontsize=16,color="green",shape="box"];2778[label="xuu40002",fontsize=16,color="green",shape="box"];2779[label="xuu3002",fontsize=16,color="green",shape="box"];2780[label="xuu40002",fontsize=16,color="green",shape="box"];2781[label="xuu3002",fontsize=16,color="green",shape="box"];2782[label="xuu40002",fontsize=16,color="green",shape="box"];2783[label="xuu3002",fontsize=16,color="green",shape="box"];2784[label="xuu40002",fontsize=16,color="green",shape="box"];2785[label="xuu3002",fontsize=16,color="green",shape="box"];2786[label="xuu40002",fontsize=16,color="green",shape="box"];2787[label="xuu3002",fontsize=16,color="green",shape="box"];2788[label="xuu40002",fontsize=16,color="green",shape="box"];2789[label="xuu3002",fontsize=16,color="green",shape="box"];2790[label="xuu40002",fontsize=16,color="green",shape="box"];2791[label="xuu3002",fontsize=16,color="green",shape="box"];2792[label="xuu40002",fontsize=16,color="green",shape="box"];2793[label="xuu3002",fontsize=16,color="green",shape="box"];2794[label="xuu40002",fontsize=16,color="green",shape="box"];2795[label="xuu3002",fontsize=16,color="green",shape="box"];2796[label="xuu40002",fontsize=16,color="green",shape="box"];2797[label="xuu3002",fontsize=16,color="green",shape="box"];2798[label="xuu40002",fontsize=16,color="green",shape="box"];2799[label="xuu3002",fontsize=16,color="green",shape="box"];2800[label="xuu40002",fontsize=16,color="green",shape="box"];2801[label="xuu3002",fontsize=16,color="green",shape="box"];2802[label="xuu40002",fontsize=16,color="green",shape="box"];2803[label="xuu3002",fontsize=16,color="green",shape="box"];2804[label="xuu40002",fontsize=16,color="green",shape="box"];2805[label="xuu3002",fontsize=16,color="green",shape="box"];2806 -> 2297[label="",style="dashed", color="red", weight=0]; 2806[label="primEqNat xuu400000 xuu30000",fontsize=16,color="magenta"];2806 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2807[label="False",fontsize=16,color="green",shape="box"];2808[label="False",fontsize=16,color="green",shape="box"];2809[label="True",fontsize=16,color="green",shape="box"];845[label="primMulInt xuu40000 xuu3001",fontsize=16,color="burlywood",shape="triangle"];4346[label="xuu40000/Pos xuu400000",fontsize=10,color="white",style="solid",shape="box"];845 -> 4346[label="",style="solid", color="burlywood", weight=9]; 4346 -> 1058[label="",style="solid", color="burlywood", weight=3]; 4347[label="xuu40000/Neg xuu400000",fontsize=10,color="white",style="solid",shape="box"];845 -> 4347[label="",style="solid", color="burlywood", weight=9]; 4347 -> 1059[label="",style="solid", color="burlywood", weight=3]; 2049 -> 2010[label="",style="dashed", color="red", weight=0]; 2049[label="xuu19 == xuu14",fontsize=16,color="magenta"];2049 -> 2103[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2104[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2011[label="",style="dashed", color="red", weight=0]; 2050[label="xuu19 == xuu14",fontsize=16,color="magenta"];2050 -> 2105[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2106[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2012[label="",style="dashed", color="red", weight=0]; 2051[label="xuu19 == xuu14",fontsize=16,color="magenta"];2051 -> 2107[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2108[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2013[label="",style="dashed", color="red", weight=0]; 2052[label="xuu19 == xuu14",fontsize=16,color="magenta"];2052 -> 2109[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2110[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2014[label="",style="dashed", color="red", weight=0]; 2053[label="xuu19 == xuu14",fontsize=16,color="magenta"];2053 -> 2111[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2112[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2015[label="",style="dashed", color="red", weight=0]; 2054[label="xuu19 == xuu14",fontsize=16,color="magenta"];2054 -> 2113[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2114[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2016[label="",style="dashed", color="red", weight=0]; 2055[label="xuu19 == xuu14",fontsize=16,color="magenta"];2055 -> 2115[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2116[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2017[label="",style="dashed", color="red", weight=0]; 2056[label="xuu19 == xuu14",fontsize=16,color="magenta"];2056 -> 2117[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2118[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2018[label="",style="dashed", color="red", weight=0]; 2057[label="xuu19 == xuu14",fontsize=16,color="magenta"];2057 -> 2119[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2120[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2019[label="",style="dashed", color="red", weight=0]; 2058[label="xuu19 == xuu14",fontsize=16,color="magenta"];2058 -> 2121[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2122[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2020[label="",style="dashed", color="red", weight=0]; 2059[label="xuu19 == xuu14",fontsize=16,color="magenta"];2059 -> 2123[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2021[label="",style="dashed", color="red", weight=0]; 2060[label="xuu19 == xuu14",fontsize=16,color="magenta"];2060 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2061 -> 65[label="",style="dashed", color="red", weight=0]; 2061[label="xuu19 == xuu14",fontsize=16,color="magenta"];2061 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2023[label="",style="dashed", color="red", weight=0]; 2062[label="xuu19 == xuu14",fontsize=16,color="magenta"];2062 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2825[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4348[label="xuu3000/()",fontsize=10,color="white",style="solid",shape="box"];2825 -> 4348[label="",style="solid", color="burlywood", weight=9]; 4348 -> 2850[label="",style="solid", color="burlywood", weight=3]; 2824[label="xuu134 /= GT",fontsize=16,color="black",shape="triangle"];2824 -> 2851[label="",style="solid", color="black", weight=3]; 2826[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4349[label="xuu3000/xuu30000 : xuu30001",fontsize=10,color="white",style="solid",shape="box"];2826 -> 4349[label="",style="solid", color="burlywood", weight=9]; 4349 -> 2852[label="",style="solid", color="burlywood", weight=3]; 4350[label="xuu3000/[]",fontsize=10,color="white",style="solid",shape="box"];2826 -> 4350[label="",style="solid", color="burlywood", weight=9]; 4350 -> 2853[label="",style="solid", color="burlywood", weight=3]; 2827[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4351[label="xuu3000/xuu30000 :% xuu30001",fontsize=10,color="white",style="solid",shape="box"];2827 -> 4351[label="",style="solid", color="burlywood", weight=9]; 4351 -> 2854[label="",style="solid", color="burlywood", weight=3]; 2813[label="(xuu30000,xuu30001) <= (xuu31000,xuu31001)",fontsize=16,color="black",shape="box"];2813 -> 2855[label="",style="solid", color="black", weight=3]; 2814[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2814 -> 2856[label="",style="solid", color="black", weight=3]; 2815[label="Nothing <= Just xuu31000",fontsize=16,color="black",shape="box"];2815 -> 2857[label="",style="solid", color="black", weight=3]; 2816[label="Just xuu30000 <= Nothing",fontsize=16,color="black",shape="box"];2816 -> 2858[label="",style="solid", color="black", weight=3]; 2817[label="Just xuu30000 <= Just xuu31000",fontsize=16,color="black",shape="box"];2817 -> 2859[label="",style="solid", color="black", weight=3]; 2828[label="compare xuu3000 xuu3100",fontsize=16,color="black",shape="triangle"];2828 -> 2860[label="",style="solid", color="black", weight=3]; 2829[label="compare xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4352[label="xuu3000/Integer xuu30000",fontsize=10,color="white",style="solid",shape="box"];2829 -> 4352[label="",style="solid", color="burlywood", weight=9]; 4352 -> 2861[label="",style="solid", color="burlywood", weight=3]; 2820[label="Left xuu30000 <= Left xuu31000",fontsize=16,color="black",shape="box"];2820 -> 2862[label="",style="solid", color="black", weight=3]; 2821[label="Left xuu30000 <= Right xuu31000",fontsize=16,color="black",shape="box"];2821 -> 2863[label="",style="solid", color="black", weight=3]; 2822[label="Right xuu30000 <= Left xuu31000",fontsize=16,color="black",shape="box"];2822 -> 2864[label="",style="solid", color="black", weight=3]; 2823[label="Right xuu30000 <= Right xuu31000",fontsize=16,color="black",shape="box"];2823 -> 2865[label="",style="solid", color="black", weight=3]; 2830 -> 1183[label="",style="dashed", color="red", weight=0]; 2830[label="compare xuu3000 xuu3100",fontsize=16,color="magenta"];2830 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2833[label="LT <= LT",fontsize=16,color="black",shape="box"];2833 -> 2883[label="",style="solid", color="black", weight=3]; 2834[label="LT <= EQ",fontsize=16,color="black",shape="box"];2834 -> 2884[label="",style="solid", color="black", weight=3]; 2835[label="LT <= GT",fontsize=16,color="black",shape="box"];2835 -> 2885[label="",style="solid", color="black", weight=3]; 2836[label="EQ <= LT",fontsize=16,color="black",shape="box"];2836 -> 2886[label="",style="solid", color="black", weight=3]; 2837[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2837 -> 2887[label="",style="solid", color="black", weight=3]; 2838[label="EQ <= GT",fontsize=16,color="black",shape="box"];2838 -> 2888[label="",style="solid", color="black", weight=3]; 2839[label="GT <= LT",fontsize=16,color="black",shape="box"];2839 -> 2889[label="",style="solid", color="black", weight=3]; 2840[label="GT <= EQ",fontsize=16,color="black",shape="box"];2840 -> 2890[label="",style="solid", color="black", weight=3]; 2841[label="GT <= GT",fontsize=16,color="black",shape="box"];2841 -> 2891[label="",style="solid", color="black", weight=3]; 2842[label="False <= False",fontsize=16,color="black",shape="box"];2842 -> 2892[label="",style="solid", color="black", weight=3]; 2843[label="False <= True",fontsize=16,color="black",shape="box"];2843 -> 2893[label="",style="solid", color="black", weight=3]; 2844[label="True <= False",fontsize=16,color="black",shape="box"];2844 -> 2894[label="",style="solid", color="black", weight=3]; 2845[label="True <= True",fontsize=16,color="black",shape="box"];2845 -> 2895[label="",style="solid", color="black", weight=3]; 2846[label="(xuu30000,xuu30001,xuu30002) <= (xuu31000,xuu31001,xuu31002)",fontsize=16,color="black",shape="box"];2846 -> 2896[label="",style="solid", color="black", weight=3]; 2831[label="compare xuu3000 xuu3100",fontsize=16,color="black",shape="triangle"];2831 -> 2868[label="",style="solid", color="black", weight=3]; 2832[label="compare xuu3000 xuu3100",fontsize=16,color="black",shape="triangle"];2832 -> 2869[label="",style="solid", color="black", weight=3]; 2847[label="compare0 (Just xuu117) (Just xuu118) True",fontsize=16,color="black",shape="box"];2847 -> 2897[label="",style="solid", color="black", weight=3]; 1090[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu25) (FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4353[label="xuu25/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1090 -> 4353[label="",style="solid", color="burlywood", weight=9]; 4353 -> 1193[label="",style="solid", color="burlywood", weight=3]; 4354[label="xuu25/FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254",fontsize=10,color="white",style="solid",shape="box"];1090 -> 4354[label="",style="solid", color="burlywood", weight=9]; 4354 -> 1194[label="",style="solid", color="burlywood", weight=3]; 1482 -> 1481[label="",style="dashed", color="red", weight=0]; 1482[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1483[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1483 -> 1505[label="",style="solid", color="black", weight=3]; 1484[label="FiniteMap.sizeFM xuu34",fontsize=16,color="burlywood",shape="triangle"];4355[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4355[label="",style="solid", color="burlywood", weight=9]; 4355 -> 1506[label="",style="solid", color="burlywood", weight=3]; 4356[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1484 -> 4356[label="",style="solid", color="burlywood", weight=9]; 4356 -> 1507[label="",style="solid", color="burlywood", weight=3]; 1485 -> 65[label="",style="dashed", color="red", weight=0]; 1485[label="compare xuu80 xuu79 == GT",fontsize=16,color="magenta"];1485 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1467[label="",style="dashed", color="red", weight=0]; 1094[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 (FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];1094 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1095[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu25 (Just xuu300) xuu31 xuu34 xuu25 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4357[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1095 -> 4357[label="",style="solid", color="burlywood", weight=9]; 4357 -> 1202[label="",style="solid", color="burlywood", weight=3]; 4358[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1095 -> 4358[label="",style="solid", color="burlywood", weight=9]; 4358 -> 1203[label="",style="solid", color="burlywood", weight=3]; 3985[label="FiniteMap.Branch xuu193 xuu194 (FiniteMap.mkBranchUnbox xuu195 xuu196 xuu193 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu196 xuu193 + FiniteMap.mkBranchRight_size xuu195 xuu196 xuu193)) xuu195 xuu196",fontsize=16,color="green",shape="box"];3985 -> 3991[label="",style="dashed", color="green", weight=3]; 1125[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu33) (FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4359[label="xuu33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1125 -> 4359[label="",style="solid", color="burlywood", weight=9]; 4359 -> 1205[label="",style="solid", color="burlywood", weight=3]; 4360[label="xuu33/FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=10,color="white",style="solid",shape="box"];1125 -> 4360[label="",style="solid", color="burlywood", weight=9]; 4360 -> 1206[label="",style="solid", color="burlywood", weight=3]; 1486[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1486 -> 1510[label="",style="solid", color="black", weight=3]; 1487 -> 1483[label="",style="dashed", color="red", weight=0]; 1487[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1488 -> 1484[label="",style="dashed", color="red", weight=0]; 1488[label="FiniteMap.sizeFM xuu34",fontsize=16,color="magenta"];1129 -> 1501[label="",style="dashed", color="red", weight=0]; 1129[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 (FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34)",fontsize=16,color="magenta"];1129 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1130[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 Nothing xuu31 xuu34 xuu33 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4361[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4361[label="",style="solid", color="burlywood", weight=9]; 4361 -> 1213[label="",style="solid", color="burlywood", weight=3]; 4362[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4362[label="",style="solid", color="burlywood", weight=9]; 4362 -> 1214[label="",style="solid", color="burlywood", weight=3]; 2848[label="xuu30000",fontsize=16,color="green",shape="box"];2849[label="xuu400000",fontsize=16,color="green",shape="box"];1058[label="primMulInt (Pos xuu400000) xuu3001",fontsize=16,color="burlywood",shape="box"];4363[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];1058 -> 4363[label="",style="solid", color="burlywood", weight=9]; 4363 -> 1134[label="",style="solid", color="burlywood", weight=3]; 4364[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];1058 -> 4364[label="",style="solid", color="burlywood", weight=9]; 4364 -> 1135[label="",style="solid", color="burlywood", weight=3]; 1059[label="primMulInt (Neg xuu400000) xuu3001",fontsize=16,color="burlywood",shape="box"];4365[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];1059 -> 4365[label="",style="solid", color="burlywood", weight=9]; 4365 -> 1136[label="",style="solid", color="burlywood", weight=3]; 4366[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];1059 -> 4366[label="",style="solid", color="burlywood", weight=9]; 4366 -> 1137[label="",style="solid", color="burlywood", weight=3]; 2103[label="xuu19",fontsize=16,color="green",shape="box"];2104[label="xuu14",fontsize=16,color="green",shape="box"];2105[label="xuu19",fontsize=16,color="green",shape="box"];2106[label="xuu14",fontsize=16,color="green",shape="box"];2107[label="xuu19",fontsize=16,color="green",shape="box"];2108[label="xuu14",fontsize=16,color="green",shape="box"];2109[label="xuu19",fontsize=16,color="green",shape="box"];2110[label="xuu14",fontsize=16,color="green",shape="box"];2111[label="xuu19",fontsize=16,color="green",shape="box"];2112[label="xuu14",fontsize=16,color="green",shape="box"];2113[label="xuu19",fontsize=16,color="green",shape="box"];2114[label="xuu14",fontsize=16,color="green",shape="box"];2115[label="xuu19",fontsize=16,color="green",shape="box"];2116[label="xuu14",fontsize=16,color="green",shape="box"];2117[label="xuu19",fontsize=16,color="green",shape="box"];2118[label="xuu14",fontsize=16,color="green",shape="box"];2119[label="xuu19",fontsize=16,color="green",shape="box"];2120[label="xuu14",fontsize=16,color="green",shape="box"];2121[label="xuu19",fontsize=16,color="green",shape="box"];2122[label="xuu14",fontsize=16,color="green",shape="box"];2123[label="xuu19",fontsize=16,color="green",shape="box"];2124[label="xuu14",fontsize=16,color="green",shape="box"];2125[label="xuu19",fontsize=16,color="green",shape="box"];2126[label="xuu14",fontsize=16,color="green",shape="box"];2127[label="xuu19",fontsize=16,color="green",shape="box"];2128[label="xuu14",fontsize=16,color="green",shape="box"];2129[label="xuu19",fontsize=16,color="green",shape="box"];2130[label="xuu14",fontsize=16,color="green",shape="box"];2850[label="compare () xuu3100",fontsize=16,color="burlywood",shape="box"];4367[label="xuu3100/()",fontsize=10,color="white",style="solid",shape="box"];2850 -> 4367[label="",style="solid", color="burlywood", weight=9]; 4367 -> 2898[label="",style="solid", color="burlywood", weight=3]; 2851 -> 2899[label="",style="dashed", color="red", weight=0]; 2851[label="not (xuu134 == GT)",fontsize=16,color="magenta"];2851 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2852[label="compare (xuu30000 : xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4368[label="xuu3100/xuu31000 : xuu31001",fontsize=10,color="white",style="solid",shape="box"];2852 -> 4368[label="",style="solid", color="burlywood", weight=9]; 4368 -> 2901[label="",style="solid", color="burlywood", weight=3]; 4369[label="xuu3100/[]",fontsize=10,color="white",style="solid",shape="box"];2852 -> 4369[label="",style="solid", color="burlywood", weight=9]; 4369 -> 2902[label="",style="solid", color="burlywood", weight=3]; 2853[label="compare [] xuu3100",fontsize=16,color="burlywood",shape="box"];4370[label="xuu3100/xuu31000 : xuu31001",fontsize=10,color="white",style="solid",shape="box"];2853 -> 4370[label="",style="solid", color="burlywood", weight=9]; 4370 -> 2903[label="",style="solid", color="burlywood", weight=3]; 4371[label="xuu3100/[]",fontsize=10,color="white",style="solid",shape="box"];2853 -> 4371[label="",style="solid", color="burlywood", weight=9]; 4371 -> 2904[label="",style="solid", color="burlywood", weight=3]; 2854[label="compare (xuu30000 :% xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4372[label="xuu3100/xuu31000 :% xuu31001",fontsize=10,color="white",style="solid",shape="box"];2854 -> 4372[label="",style="solid", color="burlywood", weight=9]; 4372 -> 2905[label="",style="solid", color="burlywood", weight=3]; 2855 -> 2969[label="",style="dashed", color="red", weight=0]; 2855[label="xuu30000 < xuu31000 || xuu30000 == xuu31000 && xuu30001 <= xuu31001",fontsize=16,color="magenta"];2855 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2856[label="True",fontsize=16,color="green",shape="box"];2857[label="True",fontsize=16,color="green",shape="box"];2858[label="False",fontsize=16,color="green",shape="box"];2859[label="xuu30000 <= xuu31000",fontsize=16,color="blue",shape="box"];4373[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4373[label="",style="solid", color="blue", weight=9]; 4373 -> 2911[label="",style="solid", color="blue", weight=3]; 4374[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4374[label="",style="solid", color="blue", weight=9]; 4374 -> 2912[label="",style="solid", color="blue", weight=3]; 4375[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4375[label="",style="solid", color="blue", weight=9]; 4375 -> 2913[label="",style="solid", color="blue", weight=3]; 4376[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4376[label="",style="solid", color="blue", weight=9]; 4376 -> 2914[label="",style="solid", color="blue", weight=3]; 4377[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4377[label="",style="solid", color="blue", weight=9]; 4377 -> 2915[label="",style="solid", color="blue", weight=3]; 4378[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4378[label="",style="solid", color="blue", weight=9]; 4378 -> 2916[label="",style="solid", color="blue", weight=3]; 4379[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4379[label="",style="solid", color="blue", weight=9]; 4379 -> 2917[label="",style="solid", color="blue", weight=3]; 4380[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4380[label="",style="solid", color="blue", weight=9]; 4380 -> 2918[label="",style="solid", color="blue", weight=3]; 4381[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 2919[label="",style="solid", color="blue", weight=3]; 4382[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 2920[label="",style="solid", color="blue", weight=3]; 4383[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 2921[label="",style="solid", color="blue", weight=3]; 4384[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 2922[label="",style="solid", color="blue", weight=3]; 4385[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 2923[label="",style="solid", color="blue", weight=3]; 4386[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2859 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 2924[label="",style="solid", color="blue", weight=3]; 2860[label="primCmpFloat xuu3000 xuu3100",fontsize=16,color="burlywood",shape="box"];4387[label="xuu3000/Float xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];2860 -> 4387[label="",style="solid", color="burlywood", weight=9]; 4387 -> 2925[label="",style="solid", color="burlywood", weight=3]; 2861[label="compare (Integer xuu30000) xuu3100",fontsize=16,color="burlywood",shape="box"];4388[label="xuu3100/Integer xuu31000",fontsize=10,color="white",style="solid",shape="box"];2861 -> 4388[label="",style="solid", color="burlywood", weight=9]; 4388 -> 2926[label="",style="solid", color="burlywood", weight=3]; 2862[label="xuu30000 <= xuu31000",fontsize=16,color="blue",shape="box"];4389[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 2927[label="",style="solid", color="blue", weight=3]; 4390[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 2928[label="",style="solid", color="blue", weight=3]; 4391[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4391[label="",style="solid", color="blue", weight=9]; 4391 -> 2929[label="",style="solid", color="blue", weight=3]; 4392[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4392[label="",style="solid", color="blue", weight=9]; 4392 -> 2930[label="",style="solid", color="blue", weight=3]; 4393[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4393[label="",style="solid", color="blue", weight=9]; 4393 -> 2931[label="",style="solid", color="blue", weight=3]; 4394[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4394[label="",style="solid", color="blue", weight=9]; 4394 -> 2932[label="",style="solid", color="blue", weight=3]; 4395[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4395[label="",style="solid", color="blue", weight=9]; 4395 -> 2933[label="",style="solid", color="blue", weight=3]; 4396[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4396[label="",style="solid", color="blue", weight=9]; 4396 -> 2934[label="",style="solid", color="blue", weight=3]; 4397[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4397[label="",style="solid", color="blue", weight=9]; 4397 -> 2935[label="",style="solid", color="blue", weight=3]; 4398[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4398[label="",style="solid", color="blue", weight=9]; 4398 -> 2936[label="",style="solid", color="blue", weight=3]; 4399[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4399[label="",style="solid", color="blue", weight=9]; 4399 -> 2937[label="",style="solid", color="blue", weight=3]; 4400[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4400[label="",style="solid", color="blue", weight=9]; 4400 -> 2938[label="",style="solid", color="blue", weight=3]; 4401[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 2939[label="",style="solid", color="blue", weight=3]; 4402[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 2940[label="",style="solid", color="blue", weight=3]; 2863[label="True",fontsize=16,color="green",shape="box"];2864[label="False",fontsize=16,color="green",shape="box"];2865[label="xuu30000 <= xuu31000",fontsize=16,color="blue",shape="box"];4403[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 2941[label="",style="solid", color="blue", weight=3]; 4404[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 2942[label="",style="solid", color="blue", weight=3]; 4405[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 2943[label="",style="solid", color="blue", weight=3]; 4406[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 2944[label="",style="solid", color="blue", weight=3]; 4407[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 2945[label="",style="solid", color="blue", weight=3]; 4408[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 2946[label="",style="solid", color="blue", weight=3]; 4409[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 2947[label="",style="solid", color="blue", weight=3]; 4410[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 2948[label="",style="solid", color="blue", weight=3]; 4411[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 2949[label="",style="solid", color="blue", weight=3]; 4412[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 2950[label="",style="solid", color="blue", weight=3]; 4413[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 2951[label="",style="solid", color="blue", weight=3]; 4414[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 2952[label="",style="solid", color="blue", weight=3]; 4415[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4415[label="",style="solid", color="blue", weight=9]; 4415 -> 2953[label="",style="solid", color="blue", weight=3]; 4416[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 2954[label="",style="solid", color="blue", weight=3]; 2866[label="xuu3100",fontsize=16,color="green",shape="box"];2867[label="xuu3000",fontsize=16,color="green",shape="box"];1183[label="compare xuu30 xuu31",fontsize=16,color="black",shape="triangle"];1183 -> 1311[label="",style="solid", color="black", weight=3]; 2883[label="True",fontsize=16,color="green",shape="box"];2884[label="True",fontsize=16,color="green",shape="box"];2885[label="True",fontsize=16,color="green",shape="box"];2886[label="False",fontsize=16,color="green",shape="box"];2887[label="True",fontsize=16,color="green",shape="box"];2888[label="True",fontsize=16,color="green",shape="box"];2889[label="False",fontsize=16,color="green",shape="box"];2890[label="False",fontsize=16,color="green",shape="box"];2891[label="True",fontsize=16,color="green",shape="box"];2892[label="True",fontsize=16,color="green",shape="box"];2893[label="True",fontsize=16,color="green",shape="box"];2894[label="False",fontsize=16,color="green",shape="box"];2895[label="True",fontsize=16,color="green",shape="box"];2896 -> 2969[label="",style="dashed", color="red", weight=0]; 2896[label="xuu30000 < xuu31000 || xuu30000 == xuu31000 && (xuu30001 < xuu31001 || xuu30001 == xuu31001 && xuu30002 <= xuu31002)",fontsize=16,color="magenta"];2896 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2896 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2868[label="primCmpDouble xuu3000 xuu3100",fontsize=16,color="burlywood",shape="box"];4417[label="xuu3000/Double xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];2868 -> 4417[label="",style="solid", color="burlywood", weight=9]; 4417 -> 2955[label="",style="solid", color="burlywood", weight=3]; 2869[label="primCmpChar xuu3000 xuu3100",fontsize=16,color="burlywood",shape="box"];4418[label="xuu3000/Char xuu30000",fontsize=10,color="white",style="solid",shape="box"];2869 -> 4418[label="",style="solid", color="burlywood", weight=9]; 4418 -> 2956[label="",style="solid", color="burlywood", weight=3]; 2897[label="GT",fontsize=16,color="green",shape="box"];1193[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1193 -> 1332[label="",style="solid", color="black", weight=3]; 1194[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254)) (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1194 -> 1333[label="",style="solid", color="black", weight=3]; 1481[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1481 -> 1493[label="",style="solid", color="black", weight=3]; 1505[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1506[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1506 -> 1673[label="",style="solid", color="black", weight=3]; 1507[label="FiniteMap.sizeFM (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1507 -> 1674[label="",style="solid", color="black", weight=3]; 1508 -> 1183[label="",style="dashed", color="red", weight=0]; 1508[label="compare xuu80 xuu79",fontsize=16,color="magenta"];1508 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1509[label="GT",fontsize=16,color="green",shape="box"];1468 -> 1471[label="",style="dashed", color="red", weight=0]; 1468[label="FiniteMap.mkBalBranch6Size_l xuu25 (Just xuu300) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1468 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1468 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1467[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 xuu77",fontsize=16,color="burlywood",shape="triangle"];4419[label="xuu77/False",fontsize=10,color="white",style="solid",shape="box"];1467 -> 4419[label="",style="solid", color="burlywood", weight=9]; 4419 -> 1489[label="",style="solid", color="burlywood", weight=3]; 4420[label="xuu77/True",fontsize=10,color="white",style="solid",shape="box"];1467 -> 4420[label="",style="solid", color="burlywood", weight=9]; 4420 -> 1490[label="",style="solid", color="burlywood", weight=3]; 1202[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu25 (Just xuu300) xuu31 FiniteMap.EmptyFM xuu25 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1202 -> 1341[label="",style="solid", color="black", weight=3]; 1203[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1203 -> 1342[label="",style="solid", color="black", weight=3]; 3991[label="FiniteMap.mkBranchUnbox xuu195 xuu196 xuu193 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu196 xuu193 + FiniteMap.mkBranchRight_size xuu195 xuu196 xuu193)",fontsize=16,color="black",shape="box"];3991 -> 3997[label="",style="solid", color="black", weight=3]; 1205[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1205 -> 1344[label="",style="solid", color="black", weight=3]; 1206[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)) (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1206 -> 1345[label="",style="solid", color="black", weight=3]; 1510 -> 1484[label="",style="dashed", color="red", weight=0]; 1510[label="FiniteMap.sizeFM xuu33",fontsize=16,color="magenta"];1510 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1471[label="",style="dashed", color="red", weight=0]; 1502[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1502 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1501[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 xuu83",fontsize=16,color="burlywood",shape="triangle"];4421[label="xuu83/False",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4421[label="",style="solid", color="burlywood", weight=9]; 4421 -> 1513[label="",style="solid", color="burlywood", weight=3]; 4422[label="xuu83/True",fontsize=10,color="white",style="solid",shape="box"];1501 -> 4422[label="",style="solid", color="burlywood", weight=9]; 4422 -> 1514[label="",style="solid", color="burlywood", weight=3]; 1213[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 Nothing xuu31 FiniteMap.EmptyFM xuu33 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1213 -> 1352[label="",style="solid", color="black", weight=3]; 1214[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1214 -> 1353[label="",style="solid", color="black", weight=3]; 1134[label="primMulInt (Pos xuu400000) (Pos xuu30010)",fontsize=16,color="black",shape="box"];1134 -> 1216[label="",style="solid", color="black", weight=3]; 1135[label="primMulInt (Pos xuu400000) (Neg xuu30010)",fontsize=16,color="black",shape="box"];1135 -> 1217[label="",style="solid", color="black", weight=3]; 1136[label="primMulInt (Neg xuu400000) (Pos xuu30010)",fontsize=16,color="black",shape="box"];1136 -> 1218[label="",style="solid", color="black", weight=3]; 1137[label="primMulInt (Neg xuu400000) (Neg xuu30010)",fontsize=16,color="black",shape="box"];1137 -> 1219[label="",style="solid", color="black", weight=3]; 2898[label="compare () ()",fontsize=16,color="black",shape="box"];2898 -> 2957[label="",style="solid", color="black", weight=3]; 2900 -> 65[label="",style="dashed", color="red", weight=0]; 2900[label="xuu134 == GT",fontsize=16,color="magenta"];2900 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2900 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2899[label="not xuu143",fontsize=16,color="burlywood",shape="triangle"];4423[label="xuu143/False",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4423[label="",style="solid", color="burlywood", weight=9]; 4423 -> 2960[label="",style="solid", color="burlywood", weight=3]; 4424[label="xuu143/True",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4424[label="",style="solid", color="burlywood", weight=9]; 4424 -> 2961[label="",style="solid", color="burlywood", weight=3]; 2901[label="compare (xuu30000 : xuu30001) (xuu31000 : xuu31001)",fontsize=16,color="black",shape="box"];2901 -> 2962[label="",style="solid", color="black", weight=3]; 2902[label="compare (xuu30000 : xuu30001) []",fontsize=16,color="black",shape="box"];2902 -> 2963[label="",style="solid", color="black", weight=3]; 2903[label="compare [] (xuu31000 : xuu31001)",fontsize=16,color="black",shape="box"];2903 -> 2964[label="",style="solid", color="black", weight=3]; 2904[label="compare [] []",fontsize=16,color="black",shape="box"];2904 -> 2965[label="",style="solid", color="black", weight=3]; 2905[label="compare (xuu30000 :% xuu30001) (xuu31000 :% xuu31001)",fontsize=16,color="black",shape="box"];2905 -> 2966[label="",style="solid", color="black", weight=3]; 2970 -> 2325[label="",style="dashed", color="red", weight=0]; 2970[label="xuu30000 == xuu31000 && xuu30001 <= xuu31001",fontsize=16,color="magenta"];2970 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2970 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2971[label="xuu30000 < xuu31000",fontsize=16,color="blue",shape="box"];4425[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2978[label="",style="solid", color="blue", weight=3]; 4426[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2979[label="",style="solid", color="blue", weight=3]; 4427[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2980[label="",style="solid", color="blue", weight=3]; 4428[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4428[label="",style="solid", color="blue", weight=9]; 4428 -> 2981[label="",style="solid", color="blue", weight=3]; 4429[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4429[label="",style="solid", color="blue", weight=9]; 4429 -> 2982[label="",style="solid", color="blue", weight=3]; 4430[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4430[label="",style="solid", color="blue", weight=9]; 4430 -> 2983[label="",style="solid", color="blue", weight=3]; 4431[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4431[label="",style="solid", color="blue", weight=9]; 4431 -> 2984[label="",style="solid", color="blue", weight=3]; 4432[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4432[label="",style="solid", color="blue", weight=9]; 4432 -> 2985[label="",style="solid", color="blue", weight=3]; 4433[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2986[label="",style="solid", color="blue", weight=3]; 4434[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2987[label="",style="solid", color="blue", weight=3]; 4435[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2988[label="",style="solid", color="blue", weight=3]; 4436[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2989[label="",style="solid", color="blue", weight=3]; 4437[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2990[label="",style="solid", color="blue", weight=3]; 4438[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2971 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2991[label="",style="solid", color="blue", weight=3]; 2969[label="xuu148 || xuu149",fontsize=16,color="burlywood",shape="triangle"];4439[label="xuu148/False",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4439[label="",style="solid", color="burlywood", weight=9]; 4439 -> 2992[label="",style="solid", color="burlywood", weight=3]; 4440[label="xuu148/True",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4440[label="",style="solid", color="burlywood", weight=9]; 4440 -> 2993[label="",style="solid", color="burlywood", weight=3]; 2911 -> 2495[label="",style="dashed", color="red", weight=0]; 2911[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2911 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2911 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2912 -> 2496[label="",style="dashed", color="red", weight=0]; 2912[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2912 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2912 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2913 -> 2497[label="",style="dashed", color="red", weight=0]; 2913[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2913 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2913 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2914 -> 2498[label="",style="dashed", color="red", weight=0]; 2914[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2914 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2914 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2915 -> 2499[label="",style="dashed", color="red", weight=0]; 2915[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2915 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2915 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2916 -> 2500[label="",style="dashed", color="red", weight=0]; 2916[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2916 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2916 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2917 -> 2501[label="",style="dashed", color="red", weight=0]; 2917[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2917 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2917 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2918 -> 2502[label="",style="dashed", color="red", weight=0]; 2918[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2918 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2918 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2919 -> 2503[label="",style="dashed", color="red", weight=0]; 2919[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2919 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2919 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2920 -> 2504[label="",style="dashed", color="red", weight=0]; 2920[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2920 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2921 -> 2505[label="",style="dashed", color="red", weight=0]; 2921[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2921 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2922 -> 2506[label="",style="dashed", color="red", weight=0]; 2922[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2922 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2923 -> 2507[label="",style="dashed", color="red", weight=0]; 2923[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2923 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2924 -> 2508[label="",style="dashed", color="red", weight=0]; 2924[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2924 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2925[label="primCmpFloat (Float xuu30000 xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4441[label="xuu30001/Pos xuu300010",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4441[label="",style="solid", color="burlywood", weight=9]; 4441 -> 3022[label="",style="solid", color="burlywood", weight=3]; 4442[label="xuu30001/Neg xuu300010",fontsize=10,color="white",style="solid",shape="box"];2925 -> 4442[label="",style="solid", color="burlywood", weight=9]; 4442 -> 3023[label="",style="solid", color="burlywood", weight=3]; 2926[label="compare (Integer xuu30000) (Integer xuu31000)",fontsize=16,color="black",shape="box"];2926 -> 3024[label="",style="solid", color="black", weight=3]; 2927 -> 2495[label="",style="dashed", color="red", weight=0]; 2927[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2927 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2496[label="",style="dashed", color="red", weight=0]; 2928[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2928 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2929 -> 2497[label="",style="dashed", color="red", weight=0]; 2929[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2929 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3030[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2498[label="",style="dashed", color="red", weight=0]; 2930[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2930 -> 3031[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3032[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2499[label="",style="dashed", color="red", weight=0]; 2931[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2931 -> 3033[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3034[label="",style="dashed", color="magenta", weight=3]; 2932 -> 2500[label="",style="dashed", color="red", weight=0]; 2932[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2932 -> 3035[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3036[label="",style="dashed", color="magenta", weight=3]; 2933 -> 2501[label="",style="dashed", color="red", weight=0]; 2933[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2933 -> 3037[label="",style="dashed", color="magenta", weight=3]; 2933 -> 3038[label="",style="dashed", color="magenta", weight=3]; 2934 -> 2502[label="",style="dashed", color="red", weight=0]; 2934[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2934 -> 3039[label="",style="dashed", color="magenta", weight=3]; 2934 -> 3040[label="",style="dashed", color="magenta", weight=3]; 2935 -> 2503[label="",style="dashed", color="red", weight=0]; 2935[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2935 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2935 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2936 -> 2504[label="",style="dashed", color="red", weight=0]; 2936[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2936 -> 3043[label="",style="dashed", color="magenta", weight=3]; 2936 -> 3044[label="",style="dashed", color="magenta", weight=3]; 2937 -> 2505[label="",style="dashed", color="red", weight=0]; 2937[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2937 -> 3045[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3046[label="",style="dashed", color="magenta", weight=3]; 2938 -> 2506[label="",style="dashed", color="red", weight=0]; 2938[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2938 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2938 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2939 -> 2507[label="",style="dashed", color="red", weight=0]; 2939[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2939 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2939 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2940 -> 2508[label="",style="dashed", color="red", weight=0]; 2940[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2940 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2940 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2941 -> 2495[label="",style="dashed", color="red", weight=0]; 2941[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2941 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2941 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2942 -> 2496[label="",style="dashed", color="red", weight=0]; 2942[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2942 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2943 -> 2497[label="",style="dashed", color="red", weight=0]; 2943[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2943 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2944 -> 2498[label="",style="dashed", color="red", weight=0]; 2944[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2944 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2944 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2945 -> 2499[label="",style="dashed", color="red", weight=0]; 2945[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2945 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2946 -> 2500[label="",style="dashed", color="red", weight=0]; 2946[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2946 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2946 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2947 -> 2501[label="",style="dashed", color="red", weight=0]; 2947[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2947 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2947 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2948 -> 2502[label="",style="dashed", color="red", weight=0]; 2948[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2948 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2948 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2949 -> 2503[label="",style="dashed", color="red", weight=0]; 2949[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2949 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2949 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2950 -> 2504[label="",style="dashed", color="red", weight=0]; 2950[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2950 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2950 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2951 -> 2505[label="",style="dashed", color="red", weight=0]; 2951[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2951 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2951 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2952 -> 2506[label="",style="dashed", color="red", weight=0]; 2952[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2952 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2953 -> 2507[label="",style="dashed", color="red", weight=0]; 2953[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2953 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2954 -> 2508[label="",style="dashed", color="red", weight=0]; 2954[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];2954 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3080[label="",style="dashed", color="magenta", weight=3]; 1311[label="primCmpInt xuu30 xuu31",fontsize=16,color="burlywood",shape="triangle"];4443[label="xuu30/Pos xuu300",fontsize=10,color="white",style="solid",shape="box"];1311 -> 4443[label="",style="solid", color="burlywood", weight=9]; 4443 -> 1411[label="",style="solid", color="burlywood", weight=3]; 4444[label="xuu30/Neg xuu300",fontsize=10,color="white",style="solid",shape="box"];1311 -> 4444[label="",style="solid", color="burlywood", weight=9]; 4444 -> 1412[label="",style="solid", color="burlywood", weight=3]; 2972 -> 2325[label="",style="dashed", color="red", weight=0]; 2972[label="xuu30000 == xuu31000 && (xuu30001 < xuu31001 || xuu30001 == xuu31001 && xuu30002 <= xuu31002)",fontsize=16,color="magenta"];2972 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2973[label="xuu30000 < xuu31000",fontsize=16,color="blue",shape="box"];4445[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 3083[label="",style="solid", color="blue", weight=3]; 4446[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 3084[label="",style="solid", color="blue", weight=3]; 4447[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4447[label="",style="solid", color="blue", weight=9]; 4447 -> 3085[label="",style="solid", color="blue", weight=3]; 4448[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4448[label="",style="solid", color="blue", weight=9]; 4448 -> 3086[label="",style="solid", color="blue", weight=3]; 4449[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4449[label="",style="solid", color="blue", weight=9]; 4449 -> 3087[label="",style="solid", color="blue", weight=3]; 4450[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4450[label="",style="solid", color="blue", weight=9]; 4450 -> 3088[label="",style="solid", color="blue", weight=3]; 4451[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4451[label="",style="solid", color="blue", weight=9]; 4451 -> 3089[label="",style="solid", color="blue", weight=3]; 4452[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4452[label="",style="solid", color="blue", weight=9]; 4452 -> 3090[label="",style="solid", color="blue", weight=3]; 4453[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4453[label="",style="solid", color="blue", weight=9]; 4453 -> 3091[label="",style="solid", color="blue", weight=3]; 4454[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4454[label="",style="solid", color="blue", weight=9]; 4454 -> 3092[label="",style="solid", color="blue", weight=3]; 4455[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 3093[label="",style="solid", color="blue", weight=3]; 4456[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 3094[label="",style="solid", color="blue", weight=3]; 4457[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 3095[label="",style="solid", color="blue", weight=3]; 4458[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 3096[label="",style="solid", color="blue", weight=3]; 2955[label="primCmpDouble (Double xuu30000 xuu30001) xuu3100",fontsize=16,color="burlywood",shape="box"];4459[label="xuu30001/Pos xuu300010",fontsize=10,color="white",style="solid",shape="box"];2955 -> 4459[label="",style="solid", color="burlywood", weight=9]; 4459 -> 3097[label="",style="solid", color="burlywood", weight=3]; 4460[label="xuu30001/Neg xuu300010",fontsize=10,color="white",style="solid",shape="box"];2955 -> 4460[label="",style="solid", color="burlywood", weight=9]; 4460 -> 3098[label="",style="solid", color="burlywood", weight=3]; 2956[label="primCmpChar (Char xuu30000) xuu3100",fontsize=16,color="burlywood",shape="box"];4461[label="xuu3100/Char xuu31000",fontsize=10,color="white",style="solid",shape="box"];2956 -> 4461[label="",style="solid", color="burlywood", weight=9]; 4461 -> 3099[label="",style="solid", color="burlywood", weight=3]; 1332 -> 1311[label="",style="dashed", color="red", weight=0]; 1332[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1332 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1311[label="",style="dashed", color="red", weight=0]; 1333[label="primCmpInt (primPlusInt xuu252 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1333 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1484[label="",style="dashed", color="red", weight=0]; 1493[label="FiniteMap.sizeFM xuu25",fontsize=16,color="magenta"];1493 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1673[label="Pos Zero",fontsize=16,color="green",shape="box"];1674[label="xuu342",fontsize=16,color="green",shape="box"];1675[label="xuu79",fontsize=16,color="green",shape="box"];1676[label="xuu80",fontsize=16,color="green",shape="box"];1480 -> 661[label="",style="dashed", color="red", weight=0]; 1480[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1480 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1489[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 False",fontsize=16,color="black",shape="box"];1489 -> 1515[label="",style="solid", color="black", weight=3]; 1490[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];1490 -> 1516[label="",style="solid", color="black", weight=3]; 1341[label="error []",fontsize=16,color="red",shape="box"];1342[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1342 -> 1494[label="",style="solid", color="black", weight=3]; 3997[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu196 xuu193 + FiniteMap.mkBranchRight_size xuu195 xuu196 xuu193",fontsize=16,color="black",shape="box"];3997 -> 3998[label="",style="solid", color="black", weight=3]; 1344 -> 1311[label="",style="dashed", color="red", weight=0]; 1344[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1344 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1311[label="",style="dashed", color="red", weight=0]; 1345[label="primCmpInt (primPlusInt xuu332 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1345 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1677[label="xuu33",fontsize=16,color="green",shape="box"];1511 -> 661[label="",style="dashed", color="red", weight=0]; 1511[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1511 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1486[label="",style="dashed", color="red", weight=0]; 1512[label="FiniteMap.mkBalBranch6Size_l xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1513[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 False",fontsize=16,color="black",shape="box"];1513 -> 1681[label="",style="solid", color="black", weight=3]; 1514[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];1514 -> 1682[label="",style="solid", color="black", weight=3]; 1352[label="error []",fontsize=16,color="red",shape="box"];1353[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1353 -> 1517[label="",style="solid", color="black", weight=3]; 1216[label="Pos (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1216 -> 1355[label="",style="dashed", color="green", weight=3]; 1217[label="Neg (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1217 -> 1356[label="",style="dashed", color="green", weight=3]; 1218[label="Neg (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1218 -> 1357[label="",style="dashed", color="green", weight=3]; 1219[label="Pos (primMulNat xuu400000 xuu30010)",fontsize=16,color="green",shape="box"];1219 -> 1358[label="",style="dashed", color="green", weight=3]; 2957[label="EQ",fontsize=16,color="green",shape="box"];2958[label="xuu134",fontsize=16,color="green",shape="box"];2959[label="GT",fontsize=16,color="green",shape="box"];2960[label="not False",fontsize=16,color="black",shape="box"];2960 -> 3100[label="",style="solid", color="black", weight=3]; 2961[label="not True",fontsize=16,color="black",shape="box"];2961 -> 3101[label="",style="solid", color="black", weight=3]; 2962 -> 3102[label="",style="dashed", color="red", weight=0]; 2962[label="primCompAux xuu30000 xuu31000 (compare xuu30001 xuu31001)",fontsize=16,color="magenta"];2962 -> 3103[label="",style="dashed", color="magenta", weight=3]; 2963[label="GT",fontsize=16,color="green",shape="box"];2964[label="LT",fontsize=16,color="green",shape="box"];2965[label="EQ",fontsize=16,color="green",shape="box"];2966[label="compare (xuu30000 * xuu31001) (xuu31000 * xuu30001)",fontsize=16,color="blue",shape="box"];4462[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2966 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 3104[label="",style="solid", color="blue", weight=3]; 4463[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2966 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 3105[label="",style="solid", color="blue", weight=3]; 2976[label="xuu30000 == xuu31000",fontsize=16,color="blue",shape="box"];4464[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 3106[label="",style="solid", color="blue", weight=3]; 4465[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4465[label="",style="solid", color="blue", weight=9]; 4465 -> 3107[label="",style="solid", color="blue", weight=3]; 4466[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4466[label="",style="solid", color="blue", weight=9]; 4466 -> 3108[label="",style="solid", color="blue", weight=3]; 4467[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4467[label="",style="solid", color="blue", weight=9]; 4467 -> 3109[label="",style="solid", color="blue", weight=3]; 4468[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4468[label="",style="solid", color="blue", weight=9]; 4468 -> 3110[label="",style="solid", color="blue", weight=3]; 4469[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4469[label="",style="solid", color="blue", weight=9]; 4469 -> 3111[label="",style="solid", color="blue", weight=3]; 4470[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4470[label="",style="solid", color="blue", weight=9]; 4470 -> 3112[label="",style="solid", color="blue", weight=3]; 4471[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4471[label="",style="solid", color="blue", weight=9]; 4471 -> 3113[label="",style="solid", color="blue", weight=3]; 4472[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4472[label="",style="solid", color="blue", weight=9]; 4472 -> 3114[label="",style="solid", color="blue", weight=3]; 4473[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4473[label="",style="solid", color="blue", weight=9]; 4473 -> 3115[label="",style="solid", color="blue", weight=3]; 4474[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4474[label="",style="solid", color="blue", weight=9]; 4474 -> 3116[label="",style="solid", color="blue", weight=3]; 4475[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4475[label="",style="solid", color="blue", weight=9]; 4475 -> 3117[label="",style="solid", color="blue", weight=3]; 4476[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 3118[label="",style="solid", color="blue", weight=3]; 4477[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2976 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 3119[label="",style="solid", color="blue", weight=3]; 2977[label="xuu30001 <= xuu31001",fontsize=16,color="blue",shape="box"];4478[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 3120[label="",style="solid", color="blue", weight=3]; 4479[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 3121[label="",style="solid", color="blue", weight=3]; 4480[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 3122[label="",style="solid", color="blue", weight=3]; 4481[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 3123[label="",style="solid", color="blue", weight=3]; 4482[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 3124[label="",style="solid", color="blue", weight=3]; 4483[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 3125[label="",style="solid", color="blue", weight=3]; 4484[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 3126[label="",style="solid", color="blue", weight=3]; 4485[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 3127[label="",style="solid", color="blue", weight=3]; 4486[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 3128[label="",style="solid", color="blue", weight=3]; 4487[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 3129[label="",style="solid", color="blue", weight=3]; 4488[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 3130[label="",style="solid", color="blue", weight=3]; 4489[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 3131[label="",style="solid", color="blue", weight=3]; 4490[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 3132[label="",style="solid", color="blue", weight=3]; 4491[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2977 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 3133[label="",style="solid", color="blue", weight=3]; 2978[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2978 -> 3134[label="",style="solid", color="black", weight=3]; 2979[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2979 -> 3135[label="",style="solid", color="black", weight=3]; 2980[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2980 -> 3136[label="",style="solid", color="black", weight=3]; 2981[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2981 -> 3137[label="",style="solid", color="black", weight=3]; 2982[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2982 -> 3138[label="",style="solid", color="black", weight=3]; 2983[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2983 -> 3139[label="",style="solid", color="black", weight=3]; 2984[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2984 -> 3140[label="",style="solid", color="black", weight=3]; 2985[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2985 -> 3141[label="",style="solid", color="black", weight=3]; 2986 -> 1243[label="",style="dashed", color="red", weight=0]; 2986[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];2986 -> 3142[label="",style="dashed", color="magenta", weight=3]; 2986 -> 3143[label="",style="dashed", color="magenta", weight=3]; 2987[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2987 -> 3144[label="",style="solid", color="black", weight=3]; 2988[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2988 -> 3145[label="",style="solid", color="black", weight=3]; 2989[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2989 -> 3146[label="",style="solid", color="black", weight=3]; 2990[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2990 -> 3147[label="",style="solid", color="black", weight=3]; 2991[label="xuu30000 < xuu31000",fontsize=16,color="black",shape="triangle"];2991 -> 3148[label="",style="solid", color="black", weight=3]; 2992[label="False || xuu149",fontsize=16,color="black",shape="box"];2992 -> 3149[label="",style="solid", color="black", weight=3]; 2993[label="True || xuu149",fontsize=16,color="black",shape="box"];2993 -> 3150[label="",style="solid", color="black", weight=3]; 2994[label="xuu30000",fontsize=16,color="green",shape="box"];2995[label="xuu31000",fontsize=16,color="green",shape="box"];2996[label="xuu30000",fontsize=16,color="green",shape="box"];2997[label="xuu31000",fontsize=16,color="green",shape="box"];2998[label="xuu30000",fontsize=16,color="green",shape="box"];2999[label="xuu31000",fontsize=16,color="green",shape="box"];3000[label="xuu30000",fontsize=16,color="green",shape="box"];3001[label="xuu31000",fontsize=16,color="green",shape="box"];3002[label="xuu30000",fontsize=16,color="green",shape="box"];3003[label="xuu31000",fontsize=16,color="green",shape="box"];3004[label="xuu30000",fontsize=16,color="green",shape="box"];3005[label="xuu31000",fontsize=16,color="green",shape="box"];3006[label="xuu30000",fontsize=16,color="green",shape="box"];3007[label="xuu31000",fontsize=16,color="green",shape="box"];3008[label="xuu30000",fontsize=16,color="green",shape="box"];3009[label="xuu31000",fontsize=16,color="green",shape="box"];3010[label="xuu30000",fontsize=16,color="green",shape="box"];3011[label="xuu31000",fontsize=16,color="green",shape="box"];3012[label="xuu30000",fontsize=16,color="green",shape="box"];3013[label="xuu31000",fontsize=16,color="green",shape="box"];3014[label="xuu30000",fontsize=16,color="green",shape="box"];3015[label="xuu31000",fontsize=16,color="green",shape="box"];3016[label="xuu30000",fontsize=16,color="green",shape="box"];3017[label="xuu31000",fontsize=16,color="green",shape="box"];3018[label="xuu30000",fontsize=16,color="green",shape="box"];3019[label="xuu31000",fontsize=16,color="green",shape="box"];3020[label="xuu30000",fontsize=16,color="green",shape="box"];3021[label="xuu31000",fontsize=16,color="green",shape="box"];3022[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4492[label="xuu3100/Float xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3022 -> 4492[label="",style="solid", color="burlywood", weight=9]; 4492 -> 3151[label="",style="solid", color="burlywood", weight=3]; 3023[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4493[label="xuu3100/Float xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4493[label="",style="solid", color="burlywood", weight=9]; 4493 -> 3152[label="",style="solid", color="burlywood", weight=3]; 3024 -> 1311[label="",style="dashed", color="red", weight=0]; 3024[label="primCmpInt xuu30000 xuu31000",fontsize=16,color="magenta"];3024 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3024 -> 3154[label="",style="dashed", color="magenta", weight=3]; 3025[label="xuu30000",fontsize=16,color="green",shape="box"];3026[label="xuu31000",fontsize=16,color="green",shape="box"];3027[label="xuu30000",fontsize=16,color="green",shape="box"];3028[label="xuu31000",fontsize=16,color="green",shape="box"];3029[label="xuu30000",fontsize=16,color="green",shape="box"];3030[label="xuu31000",fontsize=16,color="green",shape="box"];3031[label="xuu30000",fontsize=16,color="green",shape="box"];3032[label="xuu31000",fontsize=16,color="green",shape="box"];3033[label="xuu30000",fontsize=16,color="green",shape="box"];3034[label="xuu31000",fontsize=16,color="green",shape="box"];3035[label="xuu30000",fontsize=16,color="green",shape="box"];3036[label="xuu31000",fontsize=16,color="green",shape="box"];3037[label="xuu30000",fontsize=16,color="green",shape="box"];3038[label="xuu31000",fontsize=16,color="green",shape="box"];3039[label="xuu30000",fontsize=16,color="green",shape="box"];3040[label="xuu31000",fontsize=16,color="green",shape="box"];3041[label="xuu30000",fontsize=16,color="green",shape="box"];3042[label="xuu31000",fontsize=16,color="green",shape="box"];3043[label="xuu30000",fontsize=16,color="green",shape="box"];3044[label="xuu31000",fontsize=16,color="green",shape="box"];3045[label="xuu30000",fontsize=16,color="green",shape="box"];3046[label="xuu31000",fontsize=16,color="green",shape="box"];3047[label="xuu30000",fontsize=16,color="green",shape="box"];3048[label="xuu31000",fontsize=16,color="green",shape="box"];3049[label="xuu30000",fontsize=16,color="green",shape="box"];3050[label="xuu31000",fontsize=16,color="green",shape="box"];3051[label="xuu30000",fontsize=16,color="green",shape="box"];3052[label="xuu31000",fontsize=16,color="green",shape="box"];3053[label="xuu30000",fontsize=16,color="green",shape="box"];3054[label="xuu31000",fontsize=16,color="green",shape="box"];3055[label="xuu30000",fontsize=16,color="green",shape="box"];3056[label="xuu31000",fontsize=16,color="green",shape="box"];3057[label="xuu30000",fontsize=16,color="green",shape="box"];3058[label="xuu31000",fontsize=16,color="green",shape="box"];3059[label="xuu30000",fontsize=16,color="green",shape="box"];3060[label="xuu31000",fontsize=16,color="green",shape="box"];3061[label="xuu30000",fontsize=16,color="green",shape="box"];3062[label="xuu31000",fontsize=16,color="green",shape="box"];3063[label="xuu30000",fontsize=16,color="green",shape="box"];3064[label="xuu31000",fontsize=16,color="green",shape="box"];3065[label="xuu30000",fontsize=16,color="green",shape="box"];3066[label="xuu31000",fontsize=16,color="green",shape="box"];3067[label="xuu30000",fontsize=16,color="green",shape="box"];3068[label="xuu31000",fontsize=16,color="green",shape="box"];3069[label="xuu30000",fontsize=16,color="green",shape="box"];3070[label="xuu31000",fontsize=16,color="green",shape="box"];3071[label="xuu30000",fontsize=16,color="green",shape="box"];3072[label="xuu31000",fontsize=16,color="green",shape="box"];3073[label="xuu30000",fontsize=16,color="green",shape="box"];3074[label="xuu31000",fontsize=16,color="green",shape="box"];3075[label="xuu30000",fontsize=16,color="green",shape="box"];3076[label="xuu31000",fontsize=16,color="green",shape="box"];3077[label="xuu30000",fontsize=16,color="green",shape="box"];3078[label="xuu31000",fontsize=16,color="green",shape="box"];3079[label="xuu30000",fontsize=16,color="green",shape="box"];3080[label="xuu31000",fontsize=16,color="green",shape="box"];1411[label="primCmpInt (Pos xuu300) xuu31",fontsize=16,color="burlywood",shape="box"];4494[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4494[label="",style="solid", color="burlywood", weight=9]; 4494 -> 1618[label="",style="solid", color="burlywood", weight=3]; 4495[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];1411 -> 4495[label="",style="solid", color="burlywood", weight=9]; 4495 -> 1619[label="",style="solid", color="burlywood", weight=3]; 1412[label="primCmpInt (Neg xuu300) xuu31",fontsize=16,color="burlywood",shape="box"];4496[label="xuu300/Succ xuu3000",fontsize=10,color="white",style="solid",shape="box"];1412 -> 4496[label="",style="solid", color="burlywood", weight=9]; 4496 -> 1620[label="",style="solid", color="burlywood", weight=3]; 4497[label="xuu300/Zero",fontsize=10,color="white",style="solid",shape="box"];1412 -> 4497[label="",style="solid", color="burlywood", weight=9]; 4497 -> 1621[label="",style="solid", color="burlywood", weight=3]; 3081[label="xuu30000 == xuu31000",fontsize=16,color="blue",shape="box"];4498[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 3155[label="",style="solid", color="blue", weight=3]; 4499[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 3156[label="",style="solid", color="blue", weight=3]; 4500[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4500[label="",style="solid", color="blue", weight=9]; 4500 -> 3157[label="",style="solid", color="blue", weight=3]; 4501[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4501[label="",style="solid", color="blue", weight=9]; 4501 -> 3158[label="",style="solid", color="blue", weight=3]; 4502[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4502[label="",style="solid", color="blue", weight=9]; 4502 -> 3159[label="",style="solid", color="blue", weight=3]; 4503[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4503[label="",style="solid", color="blue", weight=9]; 4503 -> 3160[label="",style="solid", color="blue", weight=3]; 4504[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4504[label="",style="solid", color="blue", weight=9]; 4504 -> 3161[label="",style="solid", color="blue", weight=3]; 4505[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4505[label="",style="solid", color="blue", weight=9]; 4505 -> 3162[label="",style="solid", color="blue", weight=3]; 4506[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 3163[label="",style="solid", color="blue", weight=3]; 4507[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 3164[label="",style="solid", color="blue", weight=3]; 4508[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 3165[label="",style="solid", color="blue", weight=3]; 4509[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 3166[label="",style="solid", color="blue", weight=3]; 4510[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4510[label="",style="solid", color="blue", weight=9]; 4510 -> 3167[label="",style="solid", color="blue", weight=3]; 4511[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3081 -> 4511[label="",style="solid", color="blue", weight=9]; 4511 -> 3168[label="",style="solid", color="blue", weight=3]; 3082 -> 2969[label="",style="dashed", color="red", weight=0]; 3082[label="xuu30001 < xuu31001 || xuu30001 == xuu31001 && xuu30002 <= xuu31002",fontsize=16,color="magenta"];3082 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3083 -> 2978[label="",style="dashed", color="red", weight=0]; 3083[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3083 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3083 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3084 -> 2979[label="",style="dashed", color="red", weight=0]; 3084[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3084 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3085 -> 2980[label="",style="dashed", color="red", weight=0]; 3085[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3085 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3085 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3086 -> 2981[label="",style="dashed", color="red", weight=0]; 3086[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3086 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3086 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3087 -> 2982[label="",style="dashed", color="red", weight=0]; 3087[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3087 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3087 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3088 -> 2983[label="",style="dashed", color="red", weight=0]; 3088[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3088 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3089 -> 2984[label="",style="dashed", color="red", weight=0]; 3089[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3089 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3090 -> 2985[label="",style="dashed", color="red", weight=0]; 3090[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3090 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3091 -> 1243[label="",style="dashed", color="red", weight=0]; 3091[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3091 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3092 -> 2987[label="",style="dashed", color="red", weight=0]; 3092[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3092 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3093 -> 2988[label="",style="dashed", color="red", weight=0]; 3093[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3093 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3093 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3094 -> 2989[label="",style="dashed", color="red", weight=0]; 3094[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3094 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3094 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3095 -> 2990[label="",style="dashed", color="red", weight=0]; 3095[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3095 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3095 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3096 -> 2991[label="",style="dashed", color="red", weight=0]; 3096[label="xuu30000 < xuu31000",fontsize=16,color="magenta"];3096 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3096 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3097[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4512[label="xuu3100/Double xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4512[label="",style="solid", color="burlywood", weight=9]; 4512 -> 3199[label="",style="solid", color="burlywood", weight=3]; 3098[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) xuu3100",fontsize=16,color="burlywood",shape="box"];4513[label="xuu3100/Double xuu31000 xuu31001",fontsize=10,color="white",style="solid",shape="box"];3098 -> 4513[label="",style="solid", color="burlywood", weight=9]; 4513 -> 3200[label="",style="solid", color="burlywood", weight=3]; 3099[label="primCmpChar (Char xuu30000) (Char xuu31000)",fontsize=16,color="black",shape="box"];3099 -> 3201[label="",style="solid", color="black", weight=3]; 1460[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1461 -> 1683[label="",style="dashed", color="red", weight=0]; 1461[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];1461 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1462[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1463 -> 1683[label="",style="dashed", color="red", weight=0]; 1463[label="primPlusInt xuu252 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34)",fontsize=16,color="magenta"];1463 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1678[label="xuu25",fontsize=16,color="green",shape="box"];1491 -> 1473[label="",style="dashed", color="red", weight=0]; 1491[label="FiniteMap.mkBalBranch6Size_r xuu25 (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1492 -> 1483[label="",style="dashed", color="red", weight=0]; 1492[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1515[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 otherwise",fontsize=16,color="black",shape="box"];1515 -> 1701[label="",style="solid", color="black", weight=3]; 1516[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu25 (Just xuu300) xuu31 xuu34 xuu25 xuu34 xuu25",fontsize=16,color="burlywood",shape="box"];4514[label="xuu25/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1516 -> 4514[label="",style="solid", color="burlywood", weight=9]; 4514 -> 1702[label="",style="solid", color="burlywood", weight=3]; 4515[label="xuu25/FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254",fontsize=10,color="white",style="solid",shape="box"];1516 -> 4515[label="",style="solid", color="burlywood", weight=9]; 4515 -> 1703[label="",style="solid", color="burlywood", weight=3]; 1494 -> 1704[label="",style="dashed", color="red", weight=0]; 1494[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1494 -> 1705[label="",style="dashed", color="magenta", weight=3]; 3998 -> 1683[label="",style="dashed", color="red", weight=0]; 3998[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu196 xuu193) (FiniteMap.mkBranchRight_size xuu195 xuu196 xuu193)",fontsize=16,color="magenta"];3998 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3998 -> 4000[label="",style="dashed", color="magenta", weight=3]; 1496[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1497 -> 1683[label="",style="dashed", color="red", weight=0]; 1497[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34)",fontsize=16,color="magenta"];1497 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1498[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1499 -> 1683[label="",style="dashed", color="red", weight=0]; 1499[label="primPlusInt xuu332 (FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34)",fontsize=16,color="magenta"];1499 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1475[label="",style="dashed", color="red", weight=0]; 1679[label="FiniteMap.mkBalBranch6Size_r xuu33 Nothing xuu31 xuu34",fontsize=16,color="magenta"];1680 -> 1483[label="",style="dashed", color="red", weight=0]; 1680[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1681[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 otherwise",fontsize=16,color="black",shape="box"];1681 -> 1710[label="",style="solid", color="black", weight=3]; 1682[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu33 Nothing xuu31 xuu34 xuu33 xuu34 xuu33",fontsize=16,color="burlywood",shape="box"];4516[label="xuu33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4516[label="",style="solid", color="burlywood", weight=9]; 4516 -> 1711[label="",style="solid", color="burlywood", weight=3]; 4517[label="xuu33/FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=10,color="white",style="solid",shape="box"];1682 -> 4517[label="",style="solid", color="burlywood", weight=9]; 4517 -> 1712[label="",style="solid", color="burlywood", weight=3]; 1517 -> 1713[label="",style="dashed", color="red", weight=0]; 1517[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1517 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1355[label="primMulNat xuu400000 xuu30010",fontsize=16,color="burlywood",shape="triangle"];4518[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];1355 -> 4518[label="",style="solid", color="burlywood", weight=9]; 4518 -> 1519[label="",style="solid", color="burlywood", weight=3]; 4519[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1355 -> 4519[label="",style="solid", color="burlywood", weight=9]; 4519 -> 1520[label="",style="solid", color="burlywood", weight=3]; 1356 -> 1355[label="",style="dashed", color="red", weight=0]; 1356[label="primMulNat xuu400000 xuu30010",fontsize=16,color="magenta"];1356 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1355[label="",style="dashed", color="red", weight=0]; 1357[label="primMulNat xuu400000 xuu30010",fontsize=16,color="magenta"];1357 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1355[label="",style="dashed", color="red", weight=0]; 1358[label="primMulNat xuu400000 xuu30010",fontsize=16,color="magenta"];1358 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1524[label="",style="dashed", color="magenta", weight=3]; 3100[label="True",fontsize=16,color="green",shape="box"];3101[label="False",fontsize=16,color="green",shape="box"];3103 -> 2826[label="",style="dashed", color="red", weight=0]; 3103[label="compare xuu30001 xuu31001",fontsize=16,color="magenta"];3103 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3102[label="primCompAux xuu30000 xuu31000 xuu150",fontsize=16,color="black",shape="triangle"];3102 -> 3204[label="",style="solid", color="black", weight=3]; 3104 -> 2829[label="",style="dashed", color="red", weight=0]; 3104[label="compare (xuu30000 * xuu31001) (xuu31000 * xuu30001)",fontsize=16,color="magenta"];3104 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3104 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3105 -> 1183[label="",style="dashed", color="red", weight=0]; 3105[label="compare (xuu30000 * xuu31001) (xuu31000 * xuu30001)",fontsize=16,color="magenta"];3105 -> 3235[label="",style="dashed", color="magenta", weight=3]; 3105 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3106 -> 2017[label="",style="dashed", color="red", weight=0]; 3106[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3106 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3106 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3107 -> 2011[label="",style="dashed", color="red", weight=0]; 3107[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3107 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3108 -> 2021[label="",style="dashed", color="red", weight=0]; 3108[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3108 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3108 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3109 -> 2020[label="",style="dashed", color="red", weight=0]; 3109[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3109 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3110 -> 2013[label="",style="dashed", color="red", weight=0]; 3110[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3110 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3111 -> 2019[label="",style="dashed", color="red", weight=0]; 3111[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3111 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3112 -> 2016[label="",style="dashed", color="red", weight=0]; 3112[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3112 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3112 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3113 -> 2012[label="",style="dashed", color="red", weight=0]; 3113[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3113 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3114 -> 2010[label="",style="dashed", color="red", weight=0]; 3114[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3114 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3114 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3115 -> 65[label="",style="dashed", color="red", weight=0]; 3115[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3115 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3116 -> 2018[label="",style="dashed", color="red", weight=0]; 3116[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3116 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3116 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3117 -> 2014[label="",style="dashed", color="red", weight=0]; 3117[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3117 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3117 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3118 -> 2023[label="",style="dashed", color="red", weight=0]; 3118[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3118 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3118 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3119 -> 2015[label="",style="dashed", color="red", weight=0]; 3119[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3119 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3120 -> 2495[label="",style="dashed", color="red", weight=0]; 3120[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3120 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3121 -> 2496[label="",style="dashed", color="red", weight=0]; 3121[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3121 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3122 -> 2497[label="",style="dashed", color="red", weight=0]; 3122[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3122 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3123 -> 2498[label="",style="dashed", color="red", weight=0]; 3123[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3123 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3124 -> 2499[label="",style="dashed", color="red", weight=0]; 3124[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3124 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3125 -> 2500[label="",style="dashed", color="red", weight=0]; 3125[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3125 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3126 -> 2501[label="",style="dashed", color="red", weight=0]; 3126[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3126 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3127 -> 2502[label="",style="dashed", color="red", weight=0]; 3127[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3127 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3128 -> 2503[label="",style="dashed", color="red", weight=0]; 3128[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3128 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3128 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3129 -> 2504[label="",style="dashed", color="red", weight=0]; 3129[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3129 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3129 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3130 -> 2505[label="",style="dashed", color="red", weight=0]; 3130[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3130 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3130 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3131 -> 2506[label="",style="dashed", color="red", weight=0]; 3131[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3131 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3131 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3132 -> 2507[label="",style="dashed", color="red", weight=0]; 3132[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3132 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3132 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3133 -> 2508[label="",style="dashed", color="red", weight=0]; 3133[label="xuu30001 <= xuu31001",fontsize=16,color="magenta"];3133 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3133 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3134 -> 65[label="",style="dashed", color="red", weight=0]; 3134[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3134 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3134 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3135 -> 65[label="",style="dashed", color="red", weight=0]; 3135[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3135 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3135 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3136 -> 65[label="",style="dashed", color="red", weight=0]; 3136[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3136 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3136 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3137 -> 65[label="",style="dashed", color="red", weight=0]; 3137[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3137 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3137 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3138 -> 65[label="",style="dashed", color="red", weight=0]; 3138[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3138 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3139 -> 65[label="",style="dashed", color="red", weight=0]; 3139[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3139 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3140 -> 65[label="",style="dashed", color="red", weight=0]; 3140[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3140 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3141 -> 65[label="",style="dashed", color="red", weight=0]; 3141[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3141 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3142[label="xuu30000",fontsize=16,color="green",shape="box"];3143[label="xuu31000",fontsize=16,color="green",shape="box"];1243[label="xuu300 < xuu310",fontsize=16,color="black",shape="triangle"];1243 -> 1373[label="",style="solid", color="black", weight=3]; 3144 -> 65[label="",style="dashed", color="red", weight=0]; 3144[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3144 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3145 -> 65[label="",style="dashed", color="red", weight=0]; 3145[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3145 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3145 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3146 -> 65[label="",style="dashed", color="red", weight=0]; 3146[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3146 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3146 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3147 -> 65[label="",style="dashed", color="red", weight=0]; 3147[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3147 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3148 -> 65[label="",style="dashed", color="red", weight=0]; 3148[label="compare xuu30000 xuu31000 == LT",fontsize=16,color="magenta"];3148 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3149[label="xuu149",fontsize=16,color="green",shape="box"];3150[label="True",fontsize=16,color="green",shape="box"];3151[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) (Float xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4520[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3151 -> 4520[label="",style="solid", color="burlywood", weight=9]; 4520 -> 3319[label="",style="solid", color="burlywood", weight=3]; 4521[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3151 -> 4521[label="",style="solid", color="burlywood", weight=9]; 4521 -> 3320[label="",style="solid", color="burlywood", weight=3]; 3152[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) (Float xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4522[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3152 -> 4522[label="",style="solid", color="burlywood", weight=9]; 4522 -> 3321[label="",style="solid", color="burlywood", weight=3]; 4523[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3152 -> 4523[label="",style="solid", color="burlywood", weight=9]; 4523 -> 3322[label="",style="solid", color="burlywood", weight=3]; 3153[label="xuu31000",fontsize=16,color="green",shape="box"];3154[label="xuu30000",fontsize=16,color="green",shape="box"];1618[label="primCmpInt (Pos (Succ xuu3000)) xuu31",fontsize=16,color="burlywood",shape="box"];4524[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1618 -> 4524[label="",style="solid", color="burlywood", weight=9]; 4524 -> 1751[label="",style="solid", color="burlywood", weight=3]; 4525[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1618 -> 4525[label="",style="solid", color="burlywood", weight=9]; 4525 -> 1752[label="",style="solid", color="burlywood", weight=3]; 1619[label="primCmpInt (Pos Zero) xuu31",fontsize=16,color="burlywood",shape="box"];4526[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1619 -> 4526[label="",style="solid", color="burlywood", weight=9]; 4526 -> 1753[label="",style="solid", color="burlywood", weight=3]; 4527[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1619 -> 4527[label="",style="solid", color="burlywood", weight=9]; 4527 -> 1754[label="",style="solid", color="burlywood", weight=3]; 1620[label="primCmpInt (Neg (Succ xuu3000)) xuu31",fontsize=16,color="burlywood",shape="box"];4528[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4528[label="",style="solid", color="burlywood", weight=9]; 4528 -> 1755[label="",style="solid", color="burlywood", weight=3]; 4529[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1620 -> 4529[label="",style="solid", color="burlywood", weight=9]; 4529 -> 1756[label="",style="solid", color="burlywood", weight=3]; 1621[label="primCmpInt (Neg Zero) xuu31",fontsize=16,color="burlywood",shape="box"];4530[label="xuu31/Pos xuu310",fontsize=10,color="white",style="solid",shape="box"];1621 -> 4530[label="",style="solid", color="burlywood", weight=9]; 4530 -> 1757[label="",style="solid", color="burlywood", weight=3]; 4531[label="xuu31/Neg xuu310",fontsize=10,color="white",style="solid",shape="box"];1621 -> 4531[label="",style="solid", color="burlywood", weight=9]; 4531 -> 1758[label="",style="solid", color="burlywood", weight=3]; 3155 -> 2017[label="",style="dashed", color="red", weight=0]; 3155[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3155 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3156 -> 2011[label="",style="dashed", color="red", weight=0]; 3156[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3156 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3157 -> 2021[label="",style="dashed", color="red", weight=0]; 3157[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3157 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3158 -> 2020[label="",style="dashed", color="red", weight=0]; 3158[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3158 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3159 -> 2013[label="",style="dashed", color="red", weight=0]; 3159[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3159 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3160 -> 2019[label="",style="dashed", color="red", weight=0]; 3160[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3160 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3161 -> 2016[label="",style="dashed", color="red", weight=0]; 3161[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3161 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3162 -> 2012[label="",style="dashed", color="red", weight=0]; 3162[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3162 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3163 -> 2010[label="",style="dashed", color="red", weight=0]; 3163[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3163 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3163 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3164 -> 65[label="",style="dashed", color="red", weight=0]; 3164[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3164 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3164 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3165 -> 2018[label="",style="dashed", color="red", weight=0]; 3165[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3165 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3165 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3166 -> 2014[label="",style="dashed", color="red", weight=0]; 3166[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3166 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3167 -> 2023[label="",style="dashed", color="red", weight=0]; 3167[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3167 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3167 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3168 -> 2015[label="",style="dashed", color="red", weight=0]; 3168[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3168 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3169 -> 2325[label="",style="dashed", color="red", weight=0]; 3169[label="xuu30001 == xuu31001 && xuu30002 <= xuu31002",fontsize=16,color="magenta"];3169 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3169 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3170[label="xuu30001 < xuu31001",fontsize=16,color="blue",shape="box"];4532[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4532[label="",style="solid", color="blue", weight=9]; 4532 -> 3353[label="",style="solid", color="blue", weight=3]; 4533[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4533[label="",style="solid", color="blue", weight=9]; 4533 -> 3354[label="",style="solid", color="blue", weight=3]; 4534[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4534[label="",style="solid", color="blue", weight=9]; 4534 -> 3355[label="",style="solid", color="blue", weight=3]; 4535[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4535[label="",style="solid", color="blue", weight=9]; 4535 -> 3356[label="",style="solid", color="blue", weight=3]; 4536[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4536[label="",style="solid", color="blue", weight=9]; 4536 -> 3357[label="",style="solid", color="blue", weight=3]; 4537[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4537[label="",style="solid", color="blue", weight=9]; 4537 -> 3358[label="",style="solid", color="blue", weight=3]; 4538[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4538[label="",style="solid", color="blue", weight=9]; 4538 -> 3359[label="",style="solid", color="blue", weight=3]; 4539[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4539[label="",style="solid", color="blue", weight=9]; 4539 -> 3360[label="",style="solid", color="blue", weight=3]; 4540[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4540[label="",style="solid", color="blue", weight=9]; 4540 -> 3361[label="",style="solid", color="blue", weight=3]; 4541[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4541[label="",style="solid", color="blue", weight=9]; 4541 -> 3362[label="",style="solid", color="blue", weight=3]; 4542[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 3363[label="",style="solid", color="blue", weight=3]; 4543[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 3364[label="",style="solid", color="blue", weight=3]; 4544[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 3365[label="",style="solid", color="blue", weight=3]; 4545[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3170 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 3366[label="",style="solid", color="blue", weight=3]; 3171[label="xuu30000",fontsize=16,color="green",shape="box"];3172[label="xuu31000",fontsize=16,color="green",shape="box"];3173[label="xuu30000",fontsize=16,color="green",shape="box"];3174[label="xuu31000",fontsize=16,color="green",shape="box"];3175[label="xuu30000",fontsize=16,color="green",shape="box"];3176[label="xuu31000",fontsize=16,color="green",shape="box"];3177[label="xuu30000",fontsize=16,color="green",shape="box"];3178[label="xuu31000",fontsize=16,color="green",shape="box"];3179[label="xuu30000",fontsize=16,color="green",shape="box"];3180[label="xuu31000",fontsize=16,color="green",shape="box"];3181[label="xuu30000",fontsize=16,color="green",shape="box"];3182[label="xuu31000",fontsize=16,color="green",shape="box"];3183[label="xuu30000",fontsize=16,color="green",shape="box"];3184[label="xuu31000",fontsize=16,color="green",shape="box"];3185[label="xuu30000",fontsize=16,color="green",shape="box"];3186[label="xuu31000",fontsize=16,color="green",shape="box"];3187[label="xuu30000",fontsize=16,color="green",shape="box"];3188[label="xuu31000",fontsize=16,color="green",shape="box"];3189[label="xuu30000",fontsize=16,color="green",shape="box"];3190[label="xuu31000",fontsize=16,color="green",shape="box"];3191[label="xuu30000",fontsize=16,color="green",shape="box"];3192[label="xuu31000",fontsize=16,color="green",shape="box"];3193[label="xuu30000",fontsize=16,color="green",shape="box"];3194[label="xuu31000",fontsize=16,color="green",shape="box"];3195[label="xuu30000",fontsize=16,color="green",shape="box"];3196[label="xuu31000",fontsize=16,color="green",shape="box"];3197[label="xuu30000",fontsize=16,color="green",shape="box"];3198[label="xuu31000",fontsize=16,color="green",shape="box"];3199[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) (Double xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4546[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3199 -> 4546[label="",style="solid", color="burlywood", weight=9]; 4546 -> 3367[label="",style="solid", color="burlywood", weight=3]; 4547[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3199 -> 4547[label="",style="solid", color="burlywood", weight=9]; 4547 -> 3368[label="",style="solid", color="burlywood", weight=3]; 3200[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) (Double xuu31000 xuu31001)",fontsize=16,color="burlywood",shape="box"];4548[label="xuu31001/Pos xuu310010",fontsize=10,color="white",style="solid",shape="box"];3200 -> 4548[label="",style="solid", color="burlywood", weight=9]; 4548 -> 3369[label="",style="solid", color="burlywood", weight=3]; 4549[label="xuu31001/Neg xuu310010",fontsize=10,color="white",style="solid",shape="box"];3200 -> 4549[label="",style="solid", color="burlywood", weight=9]; 4549 -> 3370[label="",style="solid", color="burlywood", weight=3]; 3201 -> 2203[label="",style="dashed", color="red", weight=0]; 3201[label="primCmpNat xuu30000 xuu31000",fontsize=16,color="magenta"];3201 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3201 -> 3372[label="",style="dashed", color="magenta", weight=3]; 1688[label="Pos Zero",fontsize=16,color="green",shape="box"];1689 -> 1473[label="",style="dashed", color="red", weight=0]; 1689[label="FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1689 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1683[label="primPlusInt xuu252 xuu86",fontsize=16,color="burlywood",shape="triangle"];4550[label="xuu252/Pos xuu2520",fontsize=10,color="white",style="solid",shape="box"];1683 -> 4550[label="",style="solid", color="burlywood", weight=9]; 4550 -> 1708[label="",style="solid", color="burlywood", weight=3]; 4551[label="xuu252/Neg xuu2520",fontsize=10,color="white",style="solid",shape="box"];1683 -> 4551[label="",style="solid", color="burlywood", weight=9]; 4551 -> 1709[label="",style="solid", color="burlywood", weight=3]; 1690 -> 1473[label="",style="dashed", color="red", weight=0]; 1690[label="FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34",fontsize=16,color="magenta"];1690 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1701[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu25 (Just xuu300) xuu31 xuu34 (Just xuu300) xuu31 xuu25 xuu34 True",fontsize=16,color="black",shape="box"];1701 -> 1820[label="",style="solid", color="black", weight=3]; 1702[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM (Just xuu300) xuu31 xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1702 -> 1821[label="",style="solid", color="black", weight=3]; 1703[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254)",fontsize=16,color="black",shape="box"];1703 -> 1822[label="",style="solid", color="black", weight=3]; 1705 -> 1243[label="",style="dashed", color="red", weight=0]; 1705[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1705 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1705 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1704[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu87",fontsize=16,color="burlywood",shape="triangle"];4552[label="xuu87/False",fontsize=10,color="white",style="solid",shape="box"];1704 -> 4552[label="",style="solid", color="burlywood", weight=9]; 4552 -> 1825[label="",style="solid", color="burlywood", weight=3]; 4553[label="xuu87/True",fontsize=10,color="white",style="solid",shape="box"];1704 -> 4553[label="",style="solid", color="burlywood", weight=9]; 4553 -> 1826[label="",style="solid", color="burlywood", weight=3]; 3999[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu196 xuu193",fontsize=16,color="black",shape="box"];3999 -> 4001[label="",style="solid", color="black", weight=3]; 4000[label="FiniteMap.mkBranchRight_size xuu195 xuu196 xuu193",fontsize=16,color="black",shape="box"];4000 -> 4002[label="",style="solid", color="black", weight=3]; 1693[label="Pos Zero",fontsize=16,color="green",shape="box"];1694 -> 1475[label="",style="dashed", color="red", weight=0]; 1694[label="FiniteMap.mkBalBranch6Size_r FiniteMap.EmptyFM Nothing xuu31 xuu34",fontsize=16,color="magenta"];1694 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1695[label="xuu332",fontsize=16,color="green",shape="box"];1696 -> 1475[label="",style="dashed", color="red", weight=0]; 1696[label="FiniteMap.mkBalBranch6Size_r (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34",fontsize=16,color="magenta"];1696 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1710[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 Nothing xuu31 xuu34 Nothing xuu31 xuu33 xuu34 True",fontsize=16,color="black",shape="box"];1710 -> 1835[label="",style="solid", color="black", weight=3]; 1711[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM Nothing xuu31 xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1711 -> 1836[label="",style="solid", color="black", weight=3]; 1712[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];1712 -> 1837[label="",style="solid", color="black", weight=3]; 1714 -> 1243[label="",style="dashed", color="red", weight=0]; 1714[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1714 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1713[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu91",fontsize=16,color="burlywood",shape="triangle"];4554[label="xuu91/False",fontsize=10,color="white",style="solid",shape="box"];1713 -> 4554[label="",style="solid", color="burlywood", weight=9]; 4554 -> 1840[label="",style="solid", color="burlywood", weight=3]; 4555[label="xuu91/True",fontsize=10,color="white",style="solid",shape="box"];1713 -> 4555[label="",style="solid", color="burlywood", weight=9]; 4555 -> 1841[label="",style="solid", color="burlywood", weight=3]; 1519[label="primMulNat (Succ xuu4000000) xuu30010",fontsize=16,color="burlywood",shape="box"];4556[label="xuu30010/Succ xuu300100",fontsize=10,color="white",style="solid",shape="box"];1519 -> 4556[label="",style="solid", color="burlywood", weight=9]; 4556 -> 1717[label="",style="solid", color="burlywood", weight=3]; 4557[label="xuu30010/Zero",fontsize=10,color="white",style="solid",shape="box"];1519 -> 4557[label="",style="solid", color="burlywood", weight=9]; 4557 -> 1718[label="",style="solid", color="burlywood", weight=3]; 1520[label="primMulNat Zero xuu30010",fontsize=16,color="burlywood",shape="box"];4558[label="xuu30010/Succ xuu300100",fontsize=10,color="white",style="solid",shape="box"];1520 -> 4558[label="",style="solid", color="burlywood", weight=9]; 4558 -> 1719[label="",style="solid", color="burlywood", weight=3]; 4559[label="xuu30010/Zero",fontsize=10,color="white",style="solid",shape="box"];1520 -> 4559[label="",style="solid", color="burlywood", weight=9]; 4559 -> 1720[label="",style="solid", color="burlywood", weight=3]; 1521[label="xuu30010",fontsize=16,color="green",shape="box"];1522[label="xuu400000",fontsize=16,color="green",shape="box"];1523[label="xuu400000",fontsize=16,color="green",shape="box"];1524[label="xuu30010",fontsize=16,color="green",shape="box"];3202[label="xuu30001",fontsize=16,color="green",shape="box"];3203[label="xuu31001",fontsize=16,color="green",shape="box"];3204 -> 3373[label="",style="dashed", color="red", weight=0]; 3204[label="primCompAux0 xuu150 (compare xuu30000 xuu31000)",fontsize=16,color="magenta"];3204 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3204 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3233[label="xuu30000 * xuu31001",fontsize=16,color="burlywood",shape="triangle"];4560[label="xuu30000/Integer xuu300000",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4560[label="",style="solid", color="burlywood", weight=9]; 4560 -> 3376[label="",style="solid", color="burlywood", weight=3]; 3234 -> 3233[label="",style="dashed", color="red", weight=0]; 3234[label="xuu31000 * xuu30001",fontsize=16,color="magenta"];3234 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3235 -> 661[label="",style="dashed", color="red", weight=0]; 3235[label="xuu31000 * xuu30001",fontsize=16,color="magenta"];3235 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3235 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3236 -> 661[label="",style="dashed", color="red", weight=0]; 3236[label="xuu30000 * xuu31001",fontsize=16,color="magenta"];3236 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3237[label="xuu30000",fontsize=16,color="green",shape="box"];3238[label="xuu31000",fontsize=16,color="green",shape="box"];3239[label="xuu30000",fontsize=16,color="green",shape="box"];3240[label="xuu31000",fontsize=16,color="green",shape="box"];3241[label="xuu30000",fontsize=16,color="green",shape="box"];3242[label="xuu31000",fontsize=16,color="green",shape="box"];3243[label="xuu30000",fontsize=16,color="green",shape="box"];3244[label="xuu31000",fontsize=16,color="green",shape="box"];3245[label="xuu30000",fontsize=16,color="green",shape="box"];3246[label="xuu31000",fontsize=16,color="green",shape="box"];3247[label="xuu30000",fontsize=16,color="green",shape="box"];3248[label="xuu31000",fontsize=16,color="green",shape="box"];3249[label="xuu30000",fontsize=16,color="green",shape="box"];3250[label="xuu31000",fontsize=16,color="green",shape="box"];3251[label="xuu30000",fontsize=16,color="green",shape="box"];3252[label="xuu31000",fontsize=16,color="green",shape="box"];3253[label="xuu30000",fontsize=16,color="green",shape="box"];3254[label="xuu31000",fontsize=16,color="green",shape="box"];3255[label="xuu30000",fontsize=16,color="green",shape="box"];3256[label="xuu31000",fontsize=16,color="green",shape="box"];3257[label="xuu30000",fontsize=16,color="green",shape="box"];3258[label="xuu31000",fontsize=16,color="green",shape="box"];3259[label="xuu30000",fontsize=16,color="green",shape="box"];3260[label="xuu31000",fontsize=16,color="green",shape="box"];3261[label="xuu30000",fontsize=16,color="green",shape="box"];3262[label="xuu31000",fontsize=16,color="green",shape="box"];3263[label="xuu30000",fontsize=16,color="green",shape="box"];3264[label="xuu31000",fontsize=16,color="green",shape="box"];3265[label="xuu30001",fontsize=16,color="green",shape="box"];3266[label="xuu31001",fontsize=16,color="green",shape="box"];3267[label="xuu30001",fontsize=16,color="green",shape="box"];3268[label="xuu31001",fontsize=16,color="green",shape="box"];3269[label="xuu30001",fontsize=16,color="green",shape="box"];3270[label="xuu31001",fontsize=16,color="green",shape="box"];3271[label="xuu30001",fontsize=16,color="green",shape="box"];3272[label="xuu31001",fontsize=16,color="green",shape="box"];3273[label="xuu30001",fontsize=16,color="green",shape="box"];3274[label="xuu31001",fontsize=16,color="green",shape="box"];3275[label="xuu30001",fontsize=16,color="green",shape="box"];3276[label="xuu31001",fontsize=16,color="green",shape="box"];3277[label="xuu30001",fontsize=16,color="green",shape="box"];3278[label="xuu31001",fontsize=16,color="green",shape="box"];3279[label="xuu30001",fontsize=16,color="green",shape="box"];3280[label="xuu31001",fontsize=16,color="green",shape="box"];3281[label="xuu30001",fontsize=16,color="green",shape="box"];3282[label="xuu31001",fontsize=16,color="green",shape="box"];3283[label="xuu30001",fontsize=16,color="green",shape="box"];3284[label="xuu31001",fontsize=16,color="green",shape="box"];3285[label="xuu30001",fontsize=16,color="green",shape="box"];3286[label="xuu31001",fontsize=16,color="green",shape="box"];3287[label="xuu30001",fontsize=16,color="green",shape="box"];3288[label="xuu31001",fontsize=16,color="green",shape="box"];3289[label="xuu30001",fontsize=16,color="green",shape="box"];3290[label="xuu31001",fontsize=16,color="green",shape="box"];3291[label="xuu30001",fontsize=16,color="green",shape="box"];3292[label="xuu31001",fontsize=16,color="green",shape="box"];3293 -> 2825[label="",style="dashed", color="red", weight=0]; 3293[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3293 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3294[label="LT",fontsize=16,color="green",shape="box"];3295 -> 2826[label="",style="dashed", color="red", weight=0]; 3295[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3295 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3296[label="LT",fontsize=16,color="green",shape="box"];3297 -> 2827[label="",style="dashed", color="red", weight=0]; 3297[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3297 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3297 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3298[label="LT",fontsize=16,color="green",shape="box"];3299[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3299 -> 3389[label="",style="solid", color="black", weight=3]; 3300[label="LT",fontsize=16,color="green",shape="box"];3301[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3301 -> 3390[label="",style="solid", color="black", weight=3]; 3302[label="LT",fontsize=16,color="green",shape="box"];3303 -> 2828[label="",style="dashed", color="red", weight=0]; 3303[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3303 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3303 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3304[label="LT",fontsize=16,color="green",shape="box"];3305 -> 2829[label="",style="dashed", color="red", weight=0]; 3305[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3305 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3305 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3306[label="LT",fontsize=16,color="green",shape="box"];3307[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3307 -> 3395[label="",style="solid", color="black", weight=3]; 3308[label="LT",fontsize=16,color="green",shape="box"];1373 -> 65[label="",style="dashed", color="red", weight=0]; 1373[label="compare xuu300 xuu310 == LT",fontsize=16,color="magenta"];1373 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1548[label="",style="dashed", color="magenta", weight=3]; 3309[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3309 -> 3396[label="",style="solid", color="black", weight=3]; 3310[label="LT",fontsize=16,color="green",shape="box"];3311[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3311 -> 3397[label="",style="solid", color="black", weight=3]; 3312[label="LT",fontsize=16,color="green",shape="box"];3313[label="compare xuu30000 xuu31000",fontsize=16,color="black",shape="triangle"];3313 -> 3398[label="",style="solid", color="black", weight=3]; 3314[label="LT",fontsize=16,color="green",shape="box"];3315 -> 2831[label="",style="dashed", color="red", weight=0]; 3315[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3315 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3316[label="LT",fontsize=16,color="green",shape="box"];3317 -> 2832[label="",style="dashed", color="red", weight=0]; 3317[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3317 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3318[label="LT",fontsize=16,color="green",shape="box"];3319[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) (Float xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3319 -> 3403[label="",style="solid", color="black", weight=3]; 3320[label="primCmpFloat (Float xuu30000 (Pos xuu300010)) (Float xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3320 -> 3404[label="",style="solid", color="black", weight=3]; 3321[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) (Float xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3321 -> 3405[label="",style="solid", color="black", weight=3]; 3322[label="primCmpFloat (Float xuu30000 (Neg xuu300010)) (Float xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3322 -> 3406[label="",style="solid", color="black", weight=3]; 1751[label="primCmpInt (Pos (Succ xuu3000)) (Pos xuu310)",fontsize=16,color="black",shape="box"];1751 -> 1865[label="",style="solid", color="black", weight=3]; 1752[label="primCmpInt (Pos (Succ xuu3000)) (Neg xuu310)",fontsize=16,color="black",shape="box"];1752 -> 1866[label="",style="solid", color="black", weight=3]; 1753[label="primCmpInt (Pos Zero) (Pos xuu310)",fontsize=16,color="burlywood",shape="box"];4561[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1753 -> 4561[label="",style="solid", color="burlywood", weight=9]; 4561 -> 1867[label="",style="solid", color="burlywood", weight=3]; 4562[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1753 -> 4562[label="",style="solid", color="burlywood", weight=9]; 4562 -> 1868[label="",style="solid", color="burlywood", weight=3]; 1754[label="primCmpInt (Pos Zero) (Neg xuu310)",fontsize=16,color="burlywood",shape="box"];4563[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1754 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 1869[label="",style="solid", color="burlywood", weight=3]; 4564[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1754 -> 4564[label="",style="solid", color="burlywood", weight=9]; 4564 -> 1870[label="",style="solid", color="burlywood", weight=3]; 1755[label="primCmpInt (Neg (Succ xuu3000)) (Pos xuu310)",fontsize=16,color="black",shape="box"];1755 -> 1871[label="",style="solid", color="black", weight=3]; 1756[label="primCmpInt (Neg (Succ xuu3000)) (Neg xuu310)",fontsize=16,color="black",shape="box"];1756 -> 1872[label="",style="solid", color="black", weight=3]; 1757[label="primCmpInt (Neg Zero) (Pos xuu310)",fontsize=16,color="burlywood",shape="box"];4565[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 1873[label="",style="solid", color="burlywood", weight=3]; 4566[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1757 -> 4566[label="",style="solid", color="burlywood", weight=9]; 4566 -> 1874[label="",style="solid", color="burlywood", weight=3]; 1758[label="primCmpInt (Neg Zero) (Neg xuu310)",fontsize=16,color="burlywood",shape="box"];4567[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4567[label="",style="solid", color="burlywood", weight=9]; 4567 -> 1875[label="",style="solid", color="burlywood", weight=3]; 4568[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1758 -> 4568[label="",style="solid", color="burlywood", weight=9]; 4568 -> 1876[label="",style="solid", color="burlywood", weight=3]; 3323[label="xuu30000",fontsize=16,color="green",shape="box"];3324[label="xuu31000",fontsize=16,color="green",shape="box"];3325[label="xuu30000",fontsize=16,color="green",shape="box"];3326[label="xuu31000",fontsize=16,color="green",shape="box"];3327[label="xuu30000",fontsize=16,color="green",shape="box"];3328[label="xuu31000",fontsize=16,color="green",shape="box"];3329[label="xuu30000",fontsize=16,color="green",shape="box"];3330[label="xuu31000",fontsize=16,color="green",shape="box"];3331[label="xuu30000",fontsize=16,color="green",shape="box"];3332[label="xuu31000",fontsize=16,color="green",shape="box"];3333[label="xuu30000",fontsize=16,color="green",shape="box"];3334[label="xuu31000",fontsize=16,color="green",shape="box"];3335[label="xuu30000",fontsize=16,color="green",shape="box"];3336[label="xuu31000",fontsize=16,color="green",shape="box"];3337[label="xuu30000",fontsize=16,color="green",shape="box"];3338[label="xuu31000",fontsize=16,color="green",shape="box"];3339[label="xuu30000",fontsize=16,color="green",shape="box"];3340[label="xuu31000",fontsize=16,color="green",shape="box"];3341[label="xuu30000",fontsize=16,color="green",shape="box"];3342[label="xuu31000",fontsize=16,color="green",shape="box"];3343[label="xuu30000",fontsize=16,color="green",shape="box"];3344[label="xuu31000",fontsize=16,color="green",shape="box"];3345[label="xuu30000",fontsize=16,color="green",shape="box"];3346[label="xuu31000",fontsize=16,color="green",shape="box"];3347[label="xuu30000",fontsize=16,color="green",shape="box"];3348[label="xuu31000",fontsize=16,color="green",shape="box"];3349[label="xuu30000",fontsize=16,color="green",shape="box"];3350[label="xuu31000",fontsize=16,color="green",shape="box"];3351[label="xuu30001 == xuu31001",fontsize=16,color="blue",shape="box"];4569[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4569[label="",style="solid", color="blue", weight=9]; 4569 -> 3407[label="",style="solid", color="blue", weight=3]; 4570[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4570[label="",style="solid", color="blue", weight=9]; 4570 -> 3408[label="",style="solid", color="blue", weight=3]; 4571[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4571[label="",style="solid", color="blue", weight=9]; 4571 -> 3409[label="",style="solid", color="blue", weight=3]; 4572[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4572[label="",style="solid", color="blue", weight=9]; 4572 -> 3410[label="",style="solid", color="blue", weight=3]; 4573[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4573[label="",style="solid", color="blue", weight=9]; 4573 -> 3411[label="",style="solid", color="blue", weight=3]; 4574[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4574[label="",style="solid", color="blue", weight=9]; 4574 -> 3412[label="",style="solid", color="blue", weight=3]; 4575[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4575[label="",style="solid", color="blue", weight=9]; 4575 -> 3413[label="",style="solid", color="blue", weight=3]; 4576[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4576[label="",style="solid", color="blue", weight=9]; 4576 -> 3414[label="",style="solid", color="blue", weight=3]; 4577[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4577[label="",style="solid", color="blue", weight=9]; 4577 -> 3415[label="",style="solid", color="blue", weight=3]; 4578[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 3416[label="",style="solid", color="blue", weight=3]; 4579[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 3417[label="",style="solid", color="blue", weight=3]; 4580[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 3418[label="",style="solid", color="blue", weight=3]; 4581[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 3419[label="",style="solid", color="blue", weight=3]; 4582[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3351 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 3420[label="",style="solid", color="blue", weight=3]; 3352[label="xuu30002 <= xuu31002",fontsize=16,color="blue",shape="box"];4583[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 3421[label="",style="solid", color="blue", weight=3]; 4584[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 3422[label="",style="solid", color="blue", weight=3]; 4585[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 3423[label="",style="solid", color="blue", weight=3]; 4586[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 3424[label="",style="solid", color="blue", weight=3]; 4587[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 3425[label="",style="solid", color="blue", weight=3]; 4588[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 3426[label="",style="solid", color="blue", weight=3]; 4589[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 3427[label="",style="solid", color="blue", weight=3]; 4590[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 3428[label="",style="solid", color="blue", weight=3]; 4591[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 3429[label="",style="solid", color="blue", weight=3]; 4592[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 3430[label="",style="solid", color="blue", weight=3]; 4593[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 3431[label="",style="solid", color="blue", weight=3]; 4594[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 3432[label="",style="solid", color="blue", weight=3]; 4595[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 3433[label="",style="solid", color="blue", weight=3]; 4596[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3352 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 3434[label="",style="solid", color="blue", weight=3]; 3353 -> 2978[label="",style="dashed", color="red", weight=0]; 3353[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3353 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3353 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3354 -> 2979[label="",style="dashed", color="red", weight=0]; 3354[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3354 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3354 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3355 -> 2980[label="",style="dashed", color="red", weight=0]; 3355[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3355 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3355 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3356 -> 2981[label="",style="dashed", color="red", weight=0]; 3356[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3356 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3356 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3357 -> 2982[label="",style="dashed", color="red", weight=0]; 3357[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3357 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3357 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3358 -> 2983[label="",style="dashed", color="red", weight=0]; 3358[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3358 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3358 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3359 -> 2984[label="",style="dashed", color="red", weight=0]; 3359[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3359 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3359 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3360 -> 2985[label="",style="dashed", color="red", weight=0]; 3360[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3360 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3360 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3361 -> 1243[label="",style="dashed", color="red", weight=0]; 3361[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3361 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3361 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3362 -> 2987[label="",style="dashed", color="red", weight=0]; 3362[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3362 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3362 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3363 -> 2988[label="",style="dashed", color="red", weight=0]; 3363[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3363 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3363 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3364 -> 2989[label="",style="dashed", color="red", weight=0]; 3364[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3364 -> 3457[label="",style="dashed", color="magenta", weight=3]; 3364 -> 3458[label="",style="dashed", color="magenta", weight=3]; 3365 -> 2990[label="",style="dashed", color="red", weight=0]; 3365[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3365 -> 3459[label="",style="dashed", color="magenta", weight=3]; 3365 -> 3460[label="",style="dashed", color="magenta", weight=3]; 3366 -> 2991[label="",style="dashed", color="red", weight=0]; 3366[label="xuu30001 < xuu31001",fontsize=16,color="magenta"];3366 -> 3461[label="",style="dashed", color="magenta", weight=3]; 3366 -> 3462[label="",style="dashed", color="magenta", weight=3]; 3367[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) (Double xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3367 -> 3463[label="",style="solid", color="black", weight=3]; 3368[label="primCmpDouble (Double xuu30000 (Pos xuu300010)) (Double xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3368 -> 3464[label="",style="solid", color="black", weight=3]; 3369[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) (Double xuu31000 (Pos xuu310010))",fontsize=16,color="black",shape="box"];3369 -> 3465[label="",style="solid", color="black", weight=3]; 3370[label="primCmpDouble (Double xuu30000 (Neg xuu300010)) (Double xuu31000 (Neg xuu310010))",fontsize=16,color="black",shape="box"];3370 -> 3466[label="",style="solid", color="black", weight=3]; 3371[label="xuu31000",fontsize=16,color="green",shape="box"];3372[label="xuu30000",fontsize=16,color="green",shape="box"];2203[label="primCmpNat xuu3000 xuu3100",fontsize=16,color="burlywood",shape="triangle"];4597[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4597[label="",style="solid", color="burlywood", weight=9]; 4597 -> 2526[label="",style="solid", color="burlywood", weight=3]; 4598[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4598[label="",style="solid", color="burlywood", weight=9]; 4598 -> 2527[label="",style="solid", color="burlywood", weight=3]; 1818[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1708[label="primPlusInt (Pos xuu2520) xuu86",fontsize=16,color="burlywood",shape="box"];4599[label="xuu86/Pos xuu860",fontsize=10,color="white",style="solid",shape="box"];1708 -> 4599[label="",style="solid", color="burlywood", weight=9]; 4599 -> 1829[label="",style="solid", color="burlywood", weight=3]; 4600[label="xuu86/Neg xuu860",fontsize=10,color="white",style="solid",shape="box"];1708 -> 4600[label="",style="solid", color="burlywood", weight=9]; 4600 -> 1830[label="",style="solid", color="burlywood", weight=3]; 1709[label="primPlusInt (Neg xuu2520) xuu86",fontsize=16,color="burlywood",shape="box"];4601[label="xuu86/Pos xuu860",fontsize=10,color="white",style="solid",shape="box"];1709 -> 4601[label="",style="solid", color="burlywood", weight=9]; 4601 -> 1831[label="",style="solid", color="burlywood", weight=3]; 4602[label="xuu86/Neg xuu860",fontsize=10,color="white",style="solid",shape="box"];1709 -> 4602[label="",style="solid", color="burlywood", weight=9]; 4602 -> 1832[label="",style="solid", color="burlywood", weight=3]; 1819[label="FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254",fontsize=16,color="green",shape="box"];1820 -> 3783[label="",style="dashed", color="red", weight=0]; 1820[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Just xuu300) xuu31 xuu25 xuu34",fontsize=16,color="magenta"];1820 -> 3794[label="",style="dashed", color="magenta", weight=3]; 1820 -> 3795[label="",style="dashed", color="magenta", weight=3]; 1820 -> 3796[label="",style="dashed", color="magenta", weight=3]; 1820 -> 3797[label="",style="dashed", color="magenta", weight=3]; 1820 -> 3798[label="",style="dashed", color="magenta", weight=3]; 1821[label="error []",fontsize=16,color="red",shape="box"];1822[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254)",fontsize=16,color="black",shape="box"];1822 -> 1940[label="",style="solid", color="black", weight=3]; 1823 -> 1484[label="",style="dashed", color="red", weight=0]; 1823[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];1823 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1824 -> 661[label="",style="dashed", color="red", weight=0]; 1824[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1824 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1824 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1825[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];1825 -> 1944[label="",style="solid", color="black", weight=3]; 1826[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];1826 -> 1945[label="",style="solid", color="black", weight=3]; 4001 -> 1683[label="",style="dashed", color="red", weight=0]; 4001[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu195 xuu196 xuu193)",fontsize=16,color="magenta"];4001 -> 4003[label="",style="dashed", color="magenta", weight=3]; 4001 -> 4004[label="",style="dashed", color="magenta", weight=3]; 4002[label="FiniteMap.sizeFM xuu196",fontsize=16,color="burlywood",shape="triangle"];4603[label="xuu196/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4002 -> 4603[label="",style="solid", color="burlywood", weight=9]; 4603 -> 4005[label="",style="solid", color="burlywood", weight=3]; 4604[label="xuu196/FiniteMap.Branch xuu1960 xuu1961 xuu1962 xuu1963 xuu1964",fontsize=10,color="white",style="solid",shape="box"];4002 -> 4604[label="",style="solid", color="burlywood", weight=9]; 4604 -> 4006[label="",style="solid", color="burlywood", weight=3]; 1833[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1834[label="FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=16,color="green",shape="box"];1835 -> 3783[label="",style="dashed", color="red", weight=0]; 1835[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) Nothing xuu31 xuu33 xuu34",fontsize=16,color="magenta"];1835 -> 3799[label="",style="dashed", color="magenta", weight=3]; 1835 -> 3800[label="",style="dashed", color="magenta", weight=3]; 1835 -> 3801[label="",style="dashed", color="magenta", weight=3]; 1835 -> 3802[label="",style="dashed", color="magenta", weight=3]; 1835 -> 3803[label="",style="dashed", color="magenta", weight=3]; 1836[label="error []",fontsize=16,color="red",shape="box"];1837[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];1837 -> 1952[label="",style="solid", color="black", weight=3]; 1838 -> 1484[label="",style="dashed", color="red", weight=0]; 1838[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];1838 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1839 -> 661[label="",style="dashed", color="red", weight=0]; 1839[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1839 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1839 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1840[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];1840 -> 1956[label="",style="solid", color="black", weight=3]; 1841[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];1841 -> 1957[label="",style="solid", color="black", weight=3]; 1717[label="primMulNat (Succ xuu4000000) (Succ xuu300100)",fontsize=16,color="black",shape="box"];1717 -> 1844[label="",style="solid", color="black", weight=3]; 1718[label="primMulNat (Succ xuu4000000) Zero",fontsize=16,color="black",shape="box"];1718 -> 1845[label="",style="solid", color="black", weight=3]; 1719[label="primMulNat Zero (Succ xuu300100)",fontsize=16,color="black",shape="box"];1719 -> 1846[label="",style="solid", color="black", weight=3]; 1720[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1720 -> 1847[label="",style="solid", color="black", weight=3]; 3374[label="xuu150",fontsize=16,color="green",shape="box"];3375[label="compare xuu30000 xuu31000",fontsize=16,color="blue",shape="box"];4605[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 3467[label="",style="solid", color="blue", weight=3]; 4606[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4606[label="",style="solid", color="blue", weight=9]; 4606 -> 3468[label="",style="solid", color="blue", weight=3]; 4607[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4607[label="",style="solid", color="blue", weight=9]; 4607 -> 3469[label="",style="solid", color="blue", weight=3]; 4608[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4608[label="",style="solid", color="blue", weight=9]; 4608 -> 3470[label="",style="solid", color="blue", weight=3]; 4609[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4609[label="",style="solid", color="blue", weight=9]; 4609 -> 3471[label="",style="solid", color="blue", weight=3]; 4610[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4610[label="",style="solid", color="blue", weight=9]; 4610 -> 3472[label="",style="solid", color="blue", weight=3]; 4611[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4611[label="",style="solid", color="blue", weight=9]; 4611 -> 3473[label="",style="solid", color="blue", weight=3]; 4612[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4612[label="",style="solid", color="blue", weight=9]; 4612 -> 3474[label="",style="solid", color="blue", weight=3]; 4613[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4613[label="",style="solid", color="blue", weight=9]; 4613 -> 3475[label="",style="solid", color="blue", weight=3]; 4614[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4614[label="",style="solid", color="blue", weight=9]; 4614 -> 3476[label="",style="solid", color="blue", weight=3]; 4615[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 3477[label="",style="solid", color="blue", weight=3]; 4616[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 3478[label="",style="solid", color="blue", weight=3]; 4617[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 3479[label="",style="solid", color="blue", weight=3]; 4618[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3375 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 3480[label="",style="solid", color="blue", weight=3]; 3373[label="primCompAux0 xuu164 xuu165",fontsize=16,color="burlywood",shape="triangle"];4619[label="xuu165/LT",fontsize=10,color="white",style="solid",shape="box"];3373 -> 4619[label="",style="solid", color="burlywood", weight=9]; 4619 -> 3481[label="",style="solid", color="burlywood", weight=3]; 4620[label="xuu165/EQ",fontsize=10,color="white",style="solid",shape="box"];3373 -> 4620[label="",style="solid", color="burlywood", weight=9]; 4620 -> 3482[label="",style="solid", color="burlywood", weight=3]; 4621[label="xuu165/GT",fontsize=10,color="white",style="solid",shape="box"];3373 -> 4621[label="",style="solid", color="burlywood", weight=9]; 4621 -> 3483[label="",style="solid", color="burlywood", weight=3]; 3376[label="Integer xuu300000 * xuu31001",fontsize=16,color="burlywood",shape="box"];4622[label="xuu31001/Integer xuu310010",fontsize=10,color="white",style="solid",shape="box"];3376 -> 4622[label="",style="solid", color="burlywood", weight=9]; 4622 -> 3502[label="",style="solid", color="burlywood", weight=3]; 3377[label="xuu31000",fontsize=16,color="green",shape="box"];3378[label="xuu30001",fontsize=16,color="green",shape="box"];3379[label="xuu30001",fontsize=16,color="green",shape="box"];3380[label="xuu31000",fontsize=16,color="green",shape="box"];3381[label="xuu31001",fontsize=16,color="green",shape="box"];3382[label="xuu30000",fontsize=16,color="green",shape="box"];3383[label="xuu30000",fontsize=16,color="green",shape="box"];3384[label="xuu31000",fontsize=16,color="green",shape="box"];3385[label="xuu30000",fontsize=16,color="green",shape="box"];3386[label="xuu31000",fontsize=16,color="green",shape="box"];3387[label="xuu30000",fontsize=16,color="green",shape="box"];3388[label="xuu31000",fontsize=16,color="green",shape="box"];3389[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3389 -> 3503[label="",style="solid", color="black", weight=3]; 3390[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3390 -> 3504[label="",style="solid", color="black", weight=3]; 3391[label="xuu30000",fontsize=16,color="green",shape="box"];3392[label="xuu31000",fontsize=16,color="green",shape="box"];3393[label="xuu30000",fontsize=16,color="green",shape="box"];3394[label="xuu31000",fontsize=16,color="green",shape="box"];3395[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3395 -> 3505[label="",style="solid", color="black", weight=3]; 1547 -> 1183[label="",style="dashed", color="red", weight=0]; 1547[label="compare xuu300 xuu310",fontsize=16,color="magenta"];1547 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1548[label="LT",fontsize=16,color="green",shape="box"];3396[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3396 -> 3506[label="",style="solid", color="black", weight=3]; 3397[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3397 -> 3507[label="",style="solid", color="black", weight=3]; 3398[label="compare3 xuu30000 xuu31000",fontsize=16,color="black",shape="box"];3398 -> 3508[label="",style="solid", color="black", weight=3]; 3399[label="xuu30000",fontsize=16,color="green",shape="box"];3400[label="xuu31000",fontsize=16,color="green",shape="box"];3401[label="xuu30000",fontsize=16,color="green",shape="box"];3402[label="xuu31000",fontsize=16,color="green",shape="box"];3403 -> 1183[label="",style="dashed", color="red", weight=0]; 3403[label="compare (xuu30000 * Pos xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3403 -> 3509[label="",style="dashed", color="magenta", weight=3]; 3403 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3404 -> 1183[label="",style="dashed", color="red", weight=0]; 3404[label="compare (xuu30000 * Pos xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3404 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3404 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3405 -> 1183[label="",style="dashed", color="red", weight=0]; 3405[label="compare (xuu30000 * Neg xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3405 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3405 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3406 -> 1183[label="",style="dashed", color="red", weight=0]; 3406[label="compare (xuu30000 * Neg xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3406 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3406 -> 3516[label="",style="dashed", color="magenta", weight=3]; 1865[label="primCmpNat (Succ xuu3000) xuu310",fontsize=16,color="burlywood",shape="triangle"];4623[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1865 -> 4623[label="",style="solid", color="burlywood", weight=9]; 4623 -> 2135[label="",style="solid", color="burlywood", weight=3]; 4624[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1865 -> 4624[label="",style="solid", color="burlywood", weight=9]; 4624 -> 2136[label="",style="solid", color="burlywood", weight=3]; 1866[label="GT",fontsize=16,color="green",shape="box"];1867[label="primCmpInt (Pos Zero) (Pos (Succ xuu3100))",fontsize=16,color="black",shape="box"];1867 -> 2137[label="",style="solid", color="black", weight=3]; 1868[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1868 -> 2138[label="",style="solid", color="black", weight=3]; 1869[label="primCmpInt (Pos Zero) (Neg (Succ xuu3100))",fontsize=16,color="black",shape="box"];1869 -> 2139[label="",style="solid", color="black", weight=3]; 1870[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1870 -> 2140[label="",style="solid", color="black", weight=3]; 1871[label="LT",fontsize=16,color="green",shape="box"];1872[label="primCmpNat xuu310 (Succ xuu3000)",fontsize=16,color="burlywood",shape="triangle"];4625[label="xuu310/Succ xuu3100",fontsize=10,color="white",style="solid",shape="box"];1872 -> 4625[label="",style="solid", color="burlywood", weight=9]; 4625 -> 2141[label="",style="solid", color="burlywood", weight=3]; 4626[label="xuu310/Zero",fontsize=10,color="white",style="solid",shape="box"];1872 -> 4626[label="",style="solid", color="burlywood", weight=9]; 4626 -> 2142[label="",style="solid", color="burlywood", weight=3]; 1873[label="primCmpInt (Neg Zero) (Pos (Succ xuu3100))",fontsize=16,color="black",shape="box"];1873 -> 2143[label="",style="solid", color="black", weight=3]; 1874[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1874 -> 2144[label="",style="solid", color="black", weight=3]; 1875[label="primCmpInt (Neg Zero) (Neg (Succ xuu3100))",fontsize=16,color="black",shape="box"];1875 -> 2145[label="",style="solid", color="black", weight=3]; 1876[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1876 -> 2146[label="",style="solid", color="black", weight=3]; 3407 -> 2017[label="",style="dashed", color="red", weight=0]; 3407[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3407 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3407 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3408 -> 2011[label="",style="dashed", color="red", weight=0]; 3408[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3408 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3520[label="",style="dashed", color="magenta", weight=3]; 3409 -> 2021[label="",style="dashed", color="red", weight=0]; 3409[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3409 -> 3521[label="",style="dashed", color="magenta", weight=3]; 3409 -> 3522[label="",style="dashed", color="magenta", weight=3]; 3410 -> 2020[label="",style="dashed", color="red", weight=0]; 3410[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3410 -> 3523[label="",style="dashed", color="magenta", weight=3]; 3410 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3411 -> 2013[label="",style="dashed", color="red", weight=0]; 3411[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3411 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3411 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3412 -> 2019[label="",style="dashed", color="red", weight=0]; 3412[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3412 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3412 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3413 -> 2016[label="",style="dashed", color="red", weight=0]; 3413[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3413 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3413 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3414 -> 2012[label="",style="dashed", color="red", weight=0]; 3414[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3414 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3414 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3415 -> 2010[label="",style="dashed", color="red", weight=0]; 3415[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3415 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3415 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3416 -> 65[label="",style="dashed", color="red", weight=0]; 3416[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3416 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3416 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3417 -> 2018[label="",style="dashed", color="red", weight=0]; 3417[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3417 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3417 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3418 -> 2014[label="",style="dashed", color="red", weight=0]; 3418[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3418 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3418 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3419 -> 2023[label="",style="dashed", color="red", weight=0]; 3419[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3419 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3420 -> 2015[label="",style="dashed", color="red", weight=0]; 3420[label="xuu30001 == xuu31001",fontsize=16,color="magenta"];3420 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3420 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3421 -> 2495[label="",style="dashed", color="red", weight=0]; 3421[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3421 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3421 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3422 -> 2496[label="",style="dashed", color="red", weight=0]; 3422[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3422 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3422 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3423 -> 2497[label="",style="dashed", color="red", weight=0]; 3423[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3423 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3423 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3424 -> 2498[label="",style="dashed", color="red", weight=0]; 3424[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3424 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3424 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3425 -> 2499[label="",style="dashed", color="red", weight=0]; 3425[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3425 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3425 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3426 -> 2500[label="",style="dashed", color="red", weight=0]; 3426[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3426 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3426 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3427 -> 2501[label="",style="dashed", color="red", weight=0]; 3427[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3427 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3427 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3428 -> 2502[label="",style="dashed", color="red", weight=0]; 3428[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3428 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3428 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3429 -> 2503[label="",style="dashed", color="red", weight=0]; 3429[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3429 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3430 -> 2504[label="",style="dashed", color="red", weight=0]; 3430[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3430 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3430 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3431 -> 2505[label="",style="dashed", color="red", weight=0]; 3431[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3431 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3431 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3432 -> 2506[label="",style="dashed", color="red", weight=0]; 3432[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3432 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3433 -> 2507[label="",style="dashed", color="red", weight=0]; 3433[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3433 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3433 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3434 -> 2508[label="",style="dashed", color="red", weight=0]; 3434[label="xuu30002 <= xuu31002",fontsize=16,color="magenta"];3434 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3434 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3435[label="xuu30001",fontsize=16,color="green",shape="box"];3436[label="xuu31001",fontsize=16,color="green",shape="box"];3437[label="xuu30001",fontsize=16,color="green",shape="box"];3438[label="xuu31001",fontsize=16,color="green",shape="box"];3439[label="xuu30001",fontsize=16,color="green",shape="box"];3440[label="xuu31001",fontsize=16,color="green",shape="box"];3441[label="xuu30001",fontsize=16,color="green",shape="box"];3442[label="xuu31001",fontsize=16,color="green",shape="box"];3443[label="xuu30001",fontsize=16,color="green",shape="box"];3444[label="xuu31001",fontsize=16,color="green",shape="box"];3445[label="xuu30001",fontsize=16,color="green",shape="box"];3446[label="xuu31001",fontsize=16,color="green",shape="box"];3447[label="xuu30001",fontsize=16,color="green",shape="box"];3448[label="xuu31001",fontsize=16,color="green",shape="box"];3449[label="xuu30001",fontsize=16,color="green",shape="box"];3450[label="xuu31001",fontsize=16,color="green",shape="box"];3451[label="xuu30001",fontsize=16,color="green",shape="box"];3452[label="xuu31001",fontsize=16,color="green",shape="box"];3453[label="xuu30001",fontsize=16,color="green",shape="box"];3454[label="xuu31001",fontsize=16,color="green",shape="box"];3455[label="xuu30001",fontsize=16,color="green",shape="box"];3456[label="xuu31001",fontsize=16,color="green",shape="box"];3457[label="xuu30001",fontsize=16,color="green",shape="box"];3458[label="xuu31001",fontsize=16,color="green",shape="box"];3459[label="xuu30001",fontsize=16,color="green",shape="box"];3460[label="xuu31001",fontsize=16,color="green",shape="box"];3461[label="xuu30001",fontsize=16,color="green",shape="box"];3462[label="xuu31001",fontsize=16,color="green",shape="box"];3463 -> 1183[label="",style="dashed", color="red", weight=0]; 3463[label="compare (xuu30000 * Pos xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3463 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3464 -> 1183[label="",style="dashed", color="red", weight=0]; 3464[label="compare (xuu30000 * Pos xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3464 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3465 -> 1183[label="",style="dashed", color="red", weight=0]; 3465[label="compare (xuu30000 * Neg xuu310010) (Pos xuu300010 * xuu31000)",fontsize=16,color="magenta"];3465 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3466 -> 1183[label="",style="dashed", color="red", weight=0]; 3466[label="compare (xuu30000 * Neg xuu310010) (Neg xuu300010 * xuu31000)",fontsize=16,color="magenta"];3466 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3580[label="",style="dashed", color="magenta", weight=3]; 2526[label="primCmpNat (Succ xuu30000) xuu3100",fontsize=16,color="burlywood",shape="box"];4627[label="xuu3100/Succ xuu31000",fontsize=10,color="white",style="solid",shape="box"];2526 -> 4627[label="",style="solid", color="burlywood", weight=9]; 4627 -> 2736[label="",style="solid", color="burlywood", weight=3]; 4628[label="xuu3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2526 -> 4628[label="",style="solid", color="burlywood", weight=9]; 4628 -> 2737[label="",style="solid", color="burlywood", weight=3]; 2527[label="primCmpNat Zero xuu3100",fontsize=16,color="burlywood",shape="box"];4629[label="xuu3100/Succ xuu31000",fontsize=10,color="white",style="solid",shape="box"];2527 -> 4629[label="",style="solid", color="burlywood", weight=9]; 4629 -> 2738[label="",style="solid", color="burlywood", weight=3]; 4630[label="xuu3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2527 -> 4630[label="",style="solid", color="burlywood", weight=9]; 4630 -> 2739[label="",style="solid", color="burlywood", weight=3]; 1829[label="primPlusInt (Pos xuu2520) (Pos xuu860)",fontsize=16,color="black",shape="box"];1829 -> 1947[label="",style="solid", color="black", weight=3]; 1830[label="primPlusInt (Pos xuu2520) (Neg xuu860)",fontsize=16,color="black",shape="box"];1830 -> 1948[label="",style="solid", color="black", weight=3]; 1831[label="primPlusInt (Neg xuu2520) (Pos xuu860)",fontsize=16,color="black",shape="box"];1831 -> 1949[label="",style="solid", color="black", weight=3]; 1832[label="primPlusInt (Neg xuu2520) (Neg xuu860)",fontsize=16,color="black",shape="box"];1832 -> 1950[label="",style="solid", color="black", weight=3]; 3794[label="xuu34",fontsize=16,color="green",shape="box"];3795[label="Succ Zero",fontsize=16,color="green",shape="box"];3796[label="xuu25",fontsize=16,color="green",shape="box"];3797[label="Just xuu300",fontsize=16,color="green",shape="box"];3798[label="xuu31",fontsize=16,color="green",shape="box"];1940 -> 2028[label="",style="dashed", color="red", weight=0]; 1940[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 (FiniteMap.sizeFM xuu254 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu253)",fontsize=16,color="magenta"];1940 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1941[label="xuu343",fontsize=16,color="green",shape="box"];1942 -> 1484[label="",style="dashed", color="red", weight=0]; 1942[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1942 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1943[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1944[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];1944 -> 2064[label="",style="solid", color="black", weight=3]; 1945[label="FiniteMap.mkBalBranch6Single_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1945 -> 2065[label="",style="solid", color="black", weight=3]; 4003[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];4004[label="FiniteMap.mkBranchLeft_size xuu195 xuu196 xuu193",fontsize=16,color="black",shape="box"];4004 -> 4007[label="",style="solid", color="black", weight=3]; 4005[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4005 -> 4008[label="",style="solid", color="black", weight=3]; 4006[label="FiniteMap.sizeFM (FiniteMap.Branch xuu1960 xuu1961 xuu1962 xuu1963 xuu1964)",fontsize=16,color="black",shape="box"];4006 -> 4009[label="",style="solid", color="black", weight=3]; 3799[label="xuu34",fontsize=16,color="green",shape="box"];3800[label="Succ Zero",fontsize=16,color="green",shape="box"];3801[label="xuu33",fontsize=16,color="green",shape="box"];3802[label="Nothing",fontsize=16,color="green",shape="box"];3803[label="xuu31",fontsize=16,color="green",shape="box"];1952 -> 2073[label="",style="dashed", color="red", weight=0]; 1952[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 (FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333)",fontsize=16,color="magenta"];1952 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1953[label="xuu343",fontsize=16,color="green",shape="box"];1954 -> 1484[label="",style="dashed", color="red", weight=0]; 1954[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];1954 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1955[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1956[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];1956 -> 2132[label="",style="solid", color="black", weight=3]; 1957[label="FiniteMap.mkBalBranch6Single_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1957 -> 2133[label="",style="solid", color="black", weight=3]; 1844 -> 1959[label="",style="dashed", color="red", weight=0]; 1844[label="primPlusNat (primMulNat xuu4000000 (Succ xuu300100)) (Succ xuu300100)",fontsize=16,color="magenta"];1844 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1845[label="Zero",fontsize=16,color="green",shape="box"];1846[label="Zero",fontsize=16,color="green",shape="box"];1847[label="Zero",fontsize=16,color="green",shape="box"];3467 -> 2825[label="",style="dashed", color="red", weight=0]; 3467[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3467 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3468 -> 2826[label="",style="dashed", color="red", weight=0]; 3468[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3468 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3469 -> 2827[label="",style="dashed", color="red", weight=0]; 3469[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3469 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3299[label="",style="dashed", color="red", weight=0]; 3470[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3470 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3301[label="",style="dashed", color="red", weight=0]; 3471[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3471 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3472 -> 2828[label="",style="dashed", color="red", weight=0]; 3472[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3472 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3473 -> 2829[label="",style="dashed", color="red", weight=0]; 3473[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3473 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3307[label="",style="dashed", color="red", weight=0]; 3474[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3474 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3475 -> 1183[label="",style="dashed", color="red", weight=0]; 3475[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3475 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3309[label="",style="dashed", color="red", weight=0]; 3476[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3476 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3311[label="",style="dashed", color="red", weight=0]; 3477[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3477 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3313[label="",style="dashed", color="red", weight=0]; 3478[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3478 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3479 -> 2831[label="",style="dashed", color="red", weight=0]; 3479[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3479 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3480 -> 2832[label="",style="dashed", color="red", weight=0]; 3480[label="compare xuu30000 xuu31000",fontsize=16,color="magenta"];3480 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3481[label="primCompAux0 xuu164 LT",fontsize=16,color="black",shape="box"];3481 -> 3609[label="",style="solid", color="black", weight=3]; 3482[label="primCompAux0 xuu164 EQ",fontsize=16,color="black",shape="box"];3482 -> 3610[label="",style="solid", color="black", weight=3]; 3483[label="primCompAux0 xuu164 GT",fontsize=16,color="black",shape="box"];3483 -> 3611[label="",style="solid", color="black", weight=3]; 3502[label="Integer xuu300000 * Integer xuu310010",fontsize=16,color="black",shape="box"];3502 -> 3634[label="",style="solid", color="black", weight=3]; 3503 -> 3635[label="",style="dashed", color="red", weight=0]; 3503[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3503 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3504 -> 1973[label="",style="dashed", color="red", weight=0]; 3504[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3504 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3505 -> 3642[label="",style="dashed", color="red", weight=0]; 3505[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3505 -> 3643[label="",style="dashed", color="magenta", weight=3]; 1738[label="xuu310",fontsize=16,color="green",shape="box"];1739[label="xuu300",fontsize=16,color="green",shape="box"];3506 -> 3647[label="",style="dashed", color="red", weight=0]; 3506[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3506 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3507 -> 3650[label="",style="dashed", color="red", weight=0]; 3507[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3507 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3508 -> 3652[label="",style="dashed", color="red", weight=0]; 3508[label="compare2 xuu30000 xuu31000 (xuu30000 == xuu31000)",fontsize=16,color="magenta"];3508 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3509 -> 661[label="",style="dashed", color="red", weight=0]; 3509[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3509 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3509 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3510 -> 661[label="",style="dashed", color="red", weight=0]; 3510[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3510 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3510 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3511 -> 661[label="",style="dashed", color="red", weight=0]; 3511[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3511 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3512 -> 661[label="",style="dashed", color="red", weight=0]; 3512[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3512 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3513 -> 661[label="",style="dashed", color="red", weight=0]; 3513[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3513 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3514 -> 661[label="",style="dashed", color="red", weight=0]; 3514[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3514 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3515 -> 661[label="",style="dashed", color="red", weight=0]; 3515[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3515 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3516 -> 661[label="",style="dashed", color="red", weight=0]; 3516[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3516 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3669[label="",style="dashed", color="magenta", weight=3]; 2135[label="primCmpNat (Succ xuu3000) (Succ xuu3100)",fontsize=16,color="black",shape="box"];2135 -> 2203[label="",style="solid", color="black", weight=3]; 2136[label="primCmpNat (Succ xuu3000) Zero",fontsize=16,color="black",shape="box"];2136 -> 2204[label="",style="solid", color="black", weight=3]; 2137 -> 1872[label="",style="dashed", color="red", weight=0]; 2137[label="primCmpNat Zero (Succ xuu3100)",fontsize=16,color="magenta"];2137 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2138[label="EQ",fontsize=16,color="green",shape="box"];2139[label="GT",fontsize=16,color="green",shape="box"];2140[label="EQ",fontsize=16,color="green",shape="box"];2141[label="primCmpNat (Succ xuu3100) (Succ xuu3000)",fontsize=16,color="black",shape="box"];2141 -> 2207[label="",style="solid", color="black", weight=3]; 2142[label="primCmpNat Zero (Succ xuu3000)",fontsize=16,color="black",shape="box"];2142 -> 2208[label="",style="solid", color="black", weight=3]; 2143[label="LT",fontsize=16,color="green",shape="box"];2144[label="EQ",fontsize=16,color="green",shape="box"];2145 -> 1865[label="",style="dashed", color="red", weight=0]; 2145[label="primCmpNat (Succ xuu3100) Zero",fontsize=16,color="magenta"];2145 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2146[label="EQ",fontsize=16,color="green",shape="box"];3517[label="xuu30001",fontsize=16,color="green",shape="box"];3518[label="xuu31001",fontsize=16,color="green",shape="box"];3519[label="xuu30001",fontsize=16,color="green",shape="box"];3520[label="xuu31001",fontsize=16,color="green",shape="box"];3521[label="xuu30001",fontsize=16,color="green",shape="box"];3522[label="xuu31001",fontsize=16,color="green",shape="box"];3523[label="xuu30001",fontsize=16,color="green",shape="box"];3524[label="xuu31001",fontsize=16,color="green",shape="box"];3525[label="xuu30001",fontsize=16,color="green",shape="box"];3526[label="xuu31001",fontsize=16,color="green",shape="box"];3527[label="xuu30001",fontsize=16,color="green",shape="box"];3528[label="xuu31001",fontsize=16,color="green",shape="box"];3529[label="xuu30001",fontsize=16,color="green",shape="box"];3530[label="xuu31001",fontsize=16,color="green",shape="box"];3531[label="xuu30001",fontsize=16,color="green",shape="box"];3532[label="xuu31001",fontsize=16,color="green",shape="box"];3533[label="xuu30001",fontsize=16,color="green",shape="box"];3534[label="xuu31001",fontsize=16,color="green",shape="box"];3535[label="xuu30001",fontsize=16,color="green",shape="box"];3536[label="xuu31001",fontsize=16,color="green",shape="box"];3537[label="xuu30001",fontsize=16,color="green",shape="box"];3538[label="xuu31001",fontsize=16,color="green",shape="box"];3539[label="xuu30001",fontsize=16,color="green",shape="box"];3540[label="xuu31001",fontsize=16,color="green",shape="box"];3541[label="xuu30001",fontsize=16,color="green",shape="box"];3542[label="xuu31001",fontsize=16,color="green",shape="box"];3543[label="xuu30001",fontsize=16,color="green",shape="box"];3544[label="xuu31001",fontsize=16,color="green",shape="box"];3545[label="xuu30002",fontsize=16,color="green",shape="box"];3546[label="xuu31002",fontsize=16,color="green",shape="box"];3547[label="xuu30002",fontsize=16,color="green",shape="box"];3548[label="xuu31002",fontsize=16,color="green",shape="box"];3549[label="xuu30002",fontsize=16,color="green",shape="box"];3550[label="xuu31002",fontsize=16,color="green",shape="box"];3551[label="xuu30002",fontsize=16,color="green",shape="box"];3552[label="xuu31002",fontsize=16,color="green",shape="box"];3553[label="xuu30002",fontsize=16,color="green",shape="box"];3554[label="xuu31002",fontsize=16,color="green",shape="box"];3555[label="xuu30002",fontsize=16,color="green",shape="box"];3556[label="xuu31002",fontsize=16,color="green",shape="box"];3557[label="xuu30002",fontsize=16,color="green",shape="box"];3558[label="xuu31002",fontsize=16,color="green",shape="box"];3559[label="xuu30002",fontsize=16,color="green",shape="box"];3560[label="xuu31002",fontsize=16,color="green",shape="box"];3561[label="xuu30002",fontsize=16,color="green",shape="box"];3562[label="xuu31002",fontsize=16,color="green",shape="box"];3563[label="xuu30002",fontsize=16,color="green",shape="box"];3564[label="xuu31002",fontsize=16,color="green",shape="box"];3565[label="xuu30002",fontsize=16,color="green",shape="box"];3566[label="xuu31002",fontsize=16,color="green",shape="box"];3567[label="xuu30002",fontsize=16,color="green",shape="box"];3568[label="xuu31002",fontsize=16,color="green",shape="box"];3569[label="xuu30002",fontsize=16,color="green",shape="box"];3570[label="xuu31002",fontsize=16,color="green",shape="box"];3571[label="xuu30002",fontsize=16,color="green",shape="box"];3572[label="xuu31002",fontsize=16,color="green",shape="box"];3573 -> 661[label="",style="dashed", color="red", weight=0]; 3573[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3573 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3574 -> 661[label="",style="dashed", color="red", weight=0]; 3574[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3574 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3575 -> 661[label="",style="dashed", color="red", weight=0]; 3575[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3575 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3576 -> 661[label="",style="dashed", color="red", weight=0]; 3576[label="xuu30000 * Pos xuu310010",fontsize=16,color="magenta"];3576 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3577 -> 661[label="",style="dashed", color="red", weight=0]; 3577[label="Pos xuu300010 * xuu31000",fontsize=16,color="magenta"];3577 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3578 -> 661[label="",style="dashed", color="red", weight=0]; 3578[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3578 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3579 -> 661[label="",style="dashed", color="red", weight=0]; 3579[label="Neg xuu300010 * xuu31000",fontsize=16,color="magenta"];3579 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3579 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3580 -> 661[label="",style="dashed", color="red", weight=0]; 3580[label="xuu30000 * Neg xuu310010",fontsize=16,color="magenta"];3580 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3580 -> 3685[label="",style="dashed", color="magenta", weight=3]; 2736[label="primCmpNat (Succ xuu30000) (Succ xuu31000)",fontsize=16,color="black",shape="box"];2736 -> 3205[label="",style="solid", color="black", weight=3]; 2737[label="primCmpNat (Succ xuu30000) Zero",fontsize=16,color="black",shape="box"];2737 -> 3206[label="",style="solid", color="black", weight=3]; 2738[label="primCmpNat Zero (Succ xuu31000)",fontsize=16,color="black",shape="box"];2738 -> 3207[label="",style="solid", color="black", weight=3]; 2739[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2739 -> 3208[label="",style="solid", color="black", weight=3]; 1947[label="Pos (primPlusNat xuu2520 xuu860)",fontsize=16,color="green",shape="box"];1947 -> 2067[label="",style="dashed", color="green", weight=3]; 1948[label="primMinusNat xuu2520 xuu860",fontsize=16,color="burlywood",shape="triangle"];4631[label="xuu2520/Succ xuu25200",fontsize=10,color="white",style="solid",shape="box"];1948 -> 4631[label="",style="solid", color="burlywood", weight=9]; 4631 -> 2068[label="",style="solid", color="burlywood", weight=3]; 4632[label="xuu2520/Zero",fontsize=10,color="white",style="solid",shape="box"];1948 -> 4632[label="",style="solid", color="burlywood", weight=9]; 4632 -> 2069[label="",style="solid", color="burlywood", weight=3]; 1949 -> 1948[label="",style="dashed", color="red", weight=0]; 1949[label="primMinusNat xuu860 xuu2520",fontsize=16,color="magenta"];1949 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1950[label="Neg (primPlusNat xuu2520 xuu860)",fontsize=16,color="green",shape="box"];1950 -> 2072[label="",style="dashed", color="green", weight=3]; 2029 -> 1243[label="",style="dashed", color="red", weight=0]; 2029[label="FiniteMap.sizeFM xuu254 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu253",fontsize=16,color="magenta"];2029 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2028[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 xuu104",fontsize=16,color="burlywood",shape="triangle"];4633[label="xuu104/False",fontsize=10,color="white",style="solid",shape="box"];2028 -> 4633[label="",style="solid", color="burlywood", weight=9]; 4633 -> 2149[label="",style="solid", color="burlywood", weight=3]; 4634[label="xuu104/True",fontsize=10,color="white",style="solid",shape="box"];2028 -> 4634[label="",style="solid", color="burlywood", weight=9]; 4634 -> 2150[label="",style="solid", color="burlywood", weight=3]; 2063[label="xuu344",fontsize=16,color="green",shape="box"];2064[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2064 -> 2151[label="",style="solid", color="black", weight=3]; 2065 -> 3783[label="",style="dashed", color="red", weight=0]; 2065[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu300) xuu31 xuu25 xuu343) xuu344",fontsize=16,color="magenta"];2065 -> 3804[label="",style="dashed", color="magenta", weight=3]; 2065 -> 3805[label="",style="dashed", color="magenta", weight=3]; 2065 -> 3806[label="",style="dashed", color="magenta", weight=3]; 2065 -> 3807[label="",style="dashed", color="magenta", weight=3]; 2065 -> 3808[label="",style="dashed", color="magenta", weight=3]; 4007 -> 4002[label="",style="dashed", color="red", weight=0]; 4007[label="FiniteMap.sizeFM xuu195",fontsize=16,color="magenta"];4007 -> 4010[label="",style="dashed", color="magenta", weight=3]; 4008[label="Pos Zero",fontsize=16,color="green",shape="box"];4009[label="xuu1962",fontsize=16,color="green",shape="box"];2074 -> 1243[label="",style="dashed", color="red", weight=0]; 2074[label="FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];2074 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2073[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 xuu108",fontsize=16,color="burlywood",shape="triangle"];4635[label="xuu108/False",fontsize=10,color="white",style="solid",shape="box"];2073 -> 4635[label="",style="solid", color="burlywood", weight=9]; 4635 -> 2163[label="",style="solid", color="burlywood", weight=3]; 4636[label="xuu108/True",fontsize=10,color="white",style="solid",shape="box"];2073 -> 4636[label="",style="solid", color="burlywood", weight=9]; 4636 -> 2164[label="",style="solid", color="burlywood", weight=3]; 2131[label="xuu344",fontsize=16,color="green",shape="box"];2132[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2132 -> 2201[label="",style="solid", color="black", weight=3]; 2133 -> 3783[label="",style="dashed", color="red", weight=0]; 2133[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu31 xuu33 xuu343) xuu344",fontsize=16,color="magenta"];2133 -> 3809[label="",style="dashed", color="magenta", weight=3]; 2133 -> 3810[label="",style="dashed", color="magenta", weight=3]; 2133 -> 3811[label="",style="dashed", color="magenta", weight=3]; 2133 -> 3812[label="",style="dashed", color="magenta", weight=3]; 2133 -> 3813[label="",style="dashed", color="magenta", weight=3]; 1960 -> 1355[label="",style="dashed", color="red", weight=0]; 1960[label="primMulNat xuu4000000 (Succ xuu300100)",fontsize=16,color="magenta"];1960 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1960 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2067[label="",style="dashed", color="red", weight=0]; 1959[label="primPlusNat xuu96 (Succ xuu300100)",fontsize=16,color="magenta"];1959 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2168[label="",style="dashed", color="magenta", weight=3]; 3581[label="xuu30000",fontsize=16,color="green",shape="box"];3582[label="xuu31000",fontsize=16,color="green",shape="box"];3583[label="xuu30000",fontsize=16,color="green",shape="box"];3584[label="xuu31000",fontsize=16,color="green",shape="box"];3585[label="xuu30000",fontsize=16,color="green",shape="box"];3586[label="xuu31000",fontsize=16,color="green",shape="box"];3587[label="xuu30000",fontsize=16,color="green",shape="box"];3588[label="xuu31000",fontsize=16,color="green",shape="box"];3589[label="xuu30000",fontsize=16,color="green",shape="box"];3590[label="xuu31000",fontsize=16,color="green",shape="box"];3591[label="xuu30000",fontsize=16,color="green",shape="box"];3592[label="xuu31000",fontsize=16,color="green",shape="box"];3593[label="xuu30000",fontsize=16,color="green",shape="box"];3594[label="xuu31000",fontsize=16,color="green",shape="box"];3595[label="xuu30000",fontsize=16,color="green",shape="box"];3596[label="xuu31000",fontsize=16,color="green",shape="box"];3597[label="xuu31000",fontsize=16,color="green",shape="box"];3598[label="xuu30000",fontsize=16,color="green",shape="box"];3599[label="xuu30000",fontsize=16,color="green",shape="box"];3600[label="xuu31000",fontsize=16,color="green",shape="box"];3601[label="xuu30000",fontsize=16,color="green",shape="box"];3602[label="xuu31000",fontsize=16,color="green",shape="box"];3603[label="xuu30000",fontsize=16,color="green",shape="box"];3604[label="xuu31000",fontsize=16,color="green",shape="box"];3605[label="xuu30000",fontsize=16,color="green",shape="box"];3606[label="xuu31000",fontsize=16,color="green",shape="box"];3607[label="xuu30000",fontsize=16,color="green",shape="box"];3608[label="xuu31000",fontsize=16,color="green",shape="box"];3609[label="LT",fontsize=16,color="green",shape="box"];3610[label="xuu164",fontsize=16,color="green",shape="box"];3611[label="GT",fontsize=16,color="green",shape="box"];3634[label="Integer (primMulInt xuu300000 xuu310010)",fontsize=16,color="green",shape="box"];3634 -> 3687[label="",style="dashed", color="green", weight=3]; 3636 -> 2020[label="",style="dashed", color="red", weight=0]; 3636[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3636 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3636 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3635[label="compare2 xuu30000 xuu31000 xuu177",fontsize=16,color="burlywood",shape="triangle"];4637[label="xuu177/False",fontsize=10,color="white",style="solid",shape="box"];3635 -> 4637[label="",style="solid", color="burlywood", weight=9]; 4637 -> 3690[label="",style="solid", color="burlywood", weight=3]; 4638[label="xuu177/True",fontsize=10,color="white",style="solid",shape="box"];3635 -> 4638[label="",style="solid", color="burlywood", weight=9]; 4638 -> 3691[label="",style="solid", color="burlywood", weight=3]; 3639[label="xuu30000",fontsize=16,color="green",shape="box"];3640[label="xuu31000",fontsize=16,color="green",shape="box"];3641 -> 2013[label="",style="dashed", color="red", weight=0]; 3641[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3641 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3643 -> 2012[label="",style="dashed", color="red", weight=0]; 3643[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3643 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3643 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3642[label="compare2 xuu30000 xuu31000 xuu178",fontsize=16,color="burlywood",shape="triangle"];4639[label="xuu178/False",fontsize=10,color="white",style="solid",shape="box"];3642 -> 4639[label="",style="solid", color="burlywood", weight=9]; 4639 -> 3696[label="",style="solid", color="burlywood", weight=3]; 4640[label="xuu178/True",fontsize=10,color="white",style="solid",shape="box"];3642 -> 4640[label="",style="solid", color="burlywood", weight=9]; 4640 -> 3697[label="",style="solid", color="burlywood", weight=3]; 3648 -> 65[label="",style="dashed", color="red", weight=0]; 3648[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3648 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3648 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3647[label="compare2 xuu30000 xuu31000 xuu179",fontsize=16,color="burlywood",shape="triangle"];4641[label="xuu179/False",fontsize=10,color="white",style="solid",shape="box"];3647 -> 4641[label="",style="solid", color="burlywood", weight=9]; 4641 -> 3700[label="",style="solid", color="burlywood", weight=3]; 4642[label="xuu179/True",fontsize=10,color="white",style="solid",shape="box"];3647 -> 4642[label="",style="solid", color="burlywood", weight=9]; 4642 -> 3701[label="",style="solid", color="burlywood", weight=3]; 3651 -> 2018[label="",style="dashed", color="red", weight=0]; 3651[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3651 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3651 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3650[label="compare2 xuu30000 xuu31000 xuu180",fontsize=16,color="burlywood",shape="triangle"];4643[label="xuu180/False",fontsize=10,color="white",style="solid",shape="box"];3650 -> 4643[label="",style="solid", color="burlywood", weight=9]; 4643 -> 3704[label="",style="solid", color="burlywood", weight=3]; 4644[label="xuu180/True",fontsize=10,color="white",style="solid",shape="box"];3650 -> 4644[label="",style="solid", color="burlywood", weight=9]; 4644 -> 3705[label="",style="solid", color="burlywood", weight=3]; 3653 -> 2014[label="",style="dashed", color="red", weight=0]; 3653[label="xuu30000 == xuu31000",fontsize=16,color="magenta"];3653 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3653 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3652[label="compare2 xuu30000 xuu31000 xuu181",fontsize=16,color="burlywood",shape="triangle"];4645[label="xuu181/False",fontsize=10,color="white",style="solid",shape="box"];3652 -> 4645[label="",style="solid", color="burlywood", weight=9]; 4645 -> 3708[label="",style="solid", color="burlywood", weight=3]; 4646[label="xuu181/True",fontsize=10,color="white",style="solid",shape="box"];3652 -> 4646[label="",style="solid", color="burlywood", weight=9]; 4646 -> 3709[label="",style="solid", color="burlywood", weight=3]; 3654[label="xuu31000",fontsize=16,color="green",shape="box"];3655[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3656[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3657[label="xuu30000",fontsize=16,color="green",shape="box"];3658[label="xuu31000",fontsize=16,color="green",shape="box"];3659[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3660[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3661[label="xuu30000",fontsize=16,color="green",shape="box"];3662[label="xuu31000",fontsize=16,color="green",shape="box"];3663[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3664[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3665[label="xuu30000",fontsize=16,color="green",shape="box"];3666[label="xuu31000",fontsize=16,color="green",shape="box"];3667[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3668[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3669[label="xuu30000",fontsize=16,color="green",shape="box"];2204[label="GT",fontsize=16,color="green",shape="box"];2205[label="Zero",fontsize=16,color="green",shape="box"];2206[label="xuu3100",fontsize=16,color="green",shape="box"];2207 -> 2203[label="",style="dashed", color="red", weight=0]; 2207[label="primCmpNat xuu3100 xuu3000",fontsize=16,color="magenta"];2207 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2208[label="LT",fontsize=16,color="green",shape="box"];2209[label="Zero",fontsize=16,color="green",shape="box"];2210[label="xuu3100",fontsize=16,color="green",shape="box"];3670[label="xuu31000",fontsize=16,color="green",shape="box"];3671[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3672[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3673[label="xuu30000",fontsize=16,color="green",shape="box"];3674[label="xuu31000",fontsize=16,color="green",shape="box"];3675[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3676[label="Pos xuu310010",fontsize=16,color="green",shape="box"];3677[label="xuu30000",fontsize=16,color="green",shape="box"];3678[label="xuu31000",fontsize=16,color="green",shape="box"];3679[label="Pos xuu300010",fontsize=16,color="green",shape="box"];3680[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3681[label="xuu30000",fontsize=16,color="green",shape="box"];3682[label="xuu31000",fontsize=16,color="green",shape="box"];3683[label="Neg xuu300010",fontsize=16,color="green",shape="box"];3684[label="Neg xuu310010",fontsize=16,color="green",shape="box"];3685[label="xuu30000",fontsize=16,color="green",shape="box"];3205 -> 2203[label="",style="dashed", color="red", weight=0]; 3205[label="primCmpNat xuu30000 xuu31000",fontsize=16,color="magenta"];3205 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3485[label="",style="dashed", color="magenta", weight=3]; 3206[label="GT",fontsize=16,color="green",shape="box"];3207[label="LT",fontsize=16,color="green",shape="box"];3208[label="EQ",fontsize=16,color="green",shape="box"];2067[label="primPlusNat xuu2520 xuu860",fontsize=16,color="burlywood",shape="triangle"];4647[label="xuu2520/Succ xuu25200",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4647[label="",style="solid", color="burlywood", weight=9]; 4647 -> 2153[label="",style="solid", color="burlywood", weight=3]; 4648[label="xuu2520/Zero",fontsize=10,color="white",style="solid",shape="box"];2067 -> 4648[label="",style="solid", color="burlywood", weight=9]; 4648 -> 2154[label="",style="solid", color="burlywood", weight=3]; 2068[label="primMinusNat (Succ xuu25200) xuu860",fontsize=16,color="burlywood",shape="box"];4649[label="xuu860/Succ xuu8600",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4649[label="",style="solid", color="burlywood", weight=9]; 4649 -> 2155[label="",style="solid", color="burlywood", weight=3]; 4650[label="xuu860/Zero",fontsize=10,color="white",style="solid",shape="box"];2068 -> 4650[label="",style="solid", color="burlywood", weight=9]; 4650 -> 2156[label="",style="solid", color="burlywood", weight=3]; 2069[label="primMinusNat Zero xuu860",fontsize=16,color="burlywood",shape="box"];4651[label="xuu860/Succ xuu8600",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 2157[label="",style="solid", color="burlywood", weight=3]; 4652[label="xuu860/Zero",fontsize=10,color="white",style="solid",shape="box"];2069 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 2158[label="",style="solid", color="burlywood", weight=3]; 2070[label="xuu2520",fontsize=16,color="green",shape="box"];2071[label="xuu860",fontsize=16,color="green",shape="box"];2072 -> 2067[label="",style="dashed", color="red", weight=0]; 2072[label="primPlusNat xuu2520 xuu860",fontsize=16,color="magenta"];2072 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2147 -> 1484[label="",style="dashed", color="red", weight=0]; 2147[label="FiniteMap.sizeFM xuu254",fontsize=16,color="magenta"];2147 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2148 -> 661[label="",style="dashed", color="red", weight=0]; 2148[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu253",fontsize=16,color="magenta"];2148 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2149[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 False",fontsize=16,color="black",shape="box"];2149 -> 2214[label="",style="solid", color="black", weight=3]; 2150[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 True",fontsize=16,color="black",shape="box"];2150 -> 2215[label="",style="solid", color="black", weight=3]; 2151[label="FiniteMap.mkBalBranch6Double_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];4653[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2151 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 2216[label="",style="solid", color="burlywood", weight=3]; 4654[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2151 -> 4654[label="",style="solid", color="burlywood", weight=9]; 4654 -> 2217[label="",style="solid", color="burlywood", weight=3]; 3804[label="xuu344",fontsize=16,color="green",shape="box"];3805[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3806 -> 3783[label="",style="dashed", color="red", weight=0]; 3806[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu300) xuu31 xuu25 xuu343",fontsize=16,color="magenta"];3806 -> 3915[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3916[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3917[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3918[label="",style="dashed", color="magenta", weight=3]; 3806 -> 3919[label="",style="dashed", color="magenta", weight=3]; 3807[label="xuu340",fontsize=16,color="green",shape="box"];3808[label="xuu341",fontsize=16,color="green",shape="box"];4010[label="xuu195",fontsize=16,color="green",shape="box"];2161 -> 1484[label="",style="dashed", color="red", weight=0]; 2161[label="FiniteMap.sizeFM xuu334",fontsize=16,color="magenta"];2161 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2162 -> 661[label="",style="dashed", color="red", weight=0]; 2162[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];2162 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2163[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 False",fontsize=16,color="black",shape="box"];2163 -> 2230[label="",style="solid", color="black", weight=3]; 2164[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];2164 -> 2231[label="",style="solid", color="black", weight=3]; 2201[label="FiniteMap.mkBalBranch6Double_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];4655[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2201 -> 4655[label="",style="solid", color="burlywood", weight=9]; 4655 -> 2523[label="",style="solid", color="burlywood", weight=3]; 4656[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];2201 -> 4656[label="",style="solid", color="burlywood", weight=9]; 4656 -> 2524[label="",style="solid", color="burlywood", weight=3]; 3809[label="xuu344",fontsize=16,color="green",shape="box"];3810[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3811 -> 3783[label="",style="dashed", color="red", weight=0]; 3811[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu31 xuu33 xuu343",fontsize=16,color="magenta"];3811 -> 3920[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3921[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3922[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3923[label="",style="dashed", color="magenta", weight=3]; 3811 -> 3924[label="",style="dashed", color="magenta", weight=3]; 3812[label="xuu340",fontsize=16,color="green",shape="box"];3813[label="xuu341",fontsize=16,color="green",shape="box"];2165[label="xuu4000000",fontsize=16,color="green",shape="box"];2166[label="Succ xuu300100",fontsize=16,color="green",shape="box"];2167[label="xuu96",fontsize=16,color="green",shape="box"];2168[label="Succ xuu300100",fontsize=16,color="green",shape="box"];3687 -> 845[label="",style="dashed", color="red", weight=0]; 3687[label="primMulInt xuu300000 xuu310010",fontsize=16,color="magenta"];3687 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3687 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3688[label="xuu30000",fontsize=16,color="green",shape="box"];3689[label="xuu31000",fontsize=16,color="green",shape="box"];3690[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3690 -> 3725[label="",style="solid", color="black", weight=3]; 3691[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3691 -> 3726[label="",style="solid", color="black", weight=3]; 3692[label="xuu30000",fontsize=16,color="green",shape="box"];3693[label="xuu31000",fontsize=16,color="green",shape="box"];3694[label="xuu30000",fontsize=16,color="green",shape="box"];3695[label="xuu31000",fontsize=16,color="green",shape="box"];3696[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3696 -> 3727[label="",style="solid", color="black", weight=3]; 3697[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3697 -> 3728[label="",style="solid", color="black", weight=3]; 3698[label="xuu30000",fontsize=16,color="green",shape="box"];3699[label="xuu31000",fontsize=16,color="green",shape="box"];3700[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3700 -> 3729[label="",style="solid", color="black", weight=3]; 3701[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3701 -> 3730[label="",style="solid", color="black", weight=3]; 3702[label="xuu30000",fontsize=16,color="green",shape="box"];3703[label="xuu31000",fontsize=16,color="green",shape="box"];3704[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3704 -> 3731[label="",style="solid", color="black", weight=3]; 3705[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3705 -> 3732[label="",style="solid", color="black", weight=3]; 3706[label="xuu30000",fontsize=16,color="green",shape="box"];3707[label="xuu31000",fontsize=16,color="green",shape="box"];3708[label="compare2 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3708 -> 3733[label="",style="solid", color="black", weight=3]; 3709[label="compare2 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3709 -> 3734[label="",style="solid", color="black", weight=3]; 2528[label="xuu3000",fontsize=16,color="green",shape="box"];2529[label="xuu3100",fontsize=16,color="green",shape="box"];3484[label="xuu31000",fontsize=16,color="green",shape="box"];3485[label="xuu30000",fontsize=16,color="green",shape="box"];2153[label="primPlusNat (Succ xuu25200) xuu860",fontsize=16,color="burlywood",shape="box"];4657[label="xuu860/Succ xuu8600",fontsize=10,color="white",style="solid",shape="box"];2153 -> 4657[label="",style="solid", color="burlywood", weight=9]; 4657 -> 2219[label="",style="solid", color="burlywood", weight=3]; 4658[label="xuu860/Zero",fontsize=10,color="white",style="solid",shape="box"];2153 -> 4658[label="",style="solid", color="burlywood", weight=9]; 4658 -> 2220[label="",style="solid", color="burlywood", weight=3]; 2154[label="primPlusNat Zero xuu860",fontsize=16,color="burlywood",shape="box"];4659[label="xuu860/Succ xuu8600",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4659[label="",style="solid", color="burlywood", weight=9]; 4659 -> 2221[label="",style="solid", color="burlywood", weight=3]; 4660[label="xuu860/Zero",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4660[label="",style="solid", color="burlywood", weight=9]; 4660 -> 2222[label="",style="solid", color="burlywood", weight=3]; 2155[label="primMinusNat (Succ xuu25200) (Succ xuu8600)",fontsize=16,color="black",shape="box"];2155 -> 2223[label="",style="solid", color="black", weight=3]; 2156[label="primMinusNat (Succ xuu25200) Zero",fontsize=16,color="black",shape="box"];2156 -> 2224[label="",style="solid", color="black", weight=3]; 2157[label="primMinusNat Zero (Succ xuu8600)",fontsize=16,color="black",shape="box"];2157 -> 2225[label="",style="solid", color="black", weight=3]; 2158[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2158 -> 2226[label="",style="solid", color="black", weight=3]; 2159[label="xuu2520",fontsize=16,color="green",shape="box"];2160[label="xuu860",fontsize=16,color="green",shape="box"];2211[label="xuu254",fontsize=16,color="green",shape="box"];2212 -> 1484[label="",style="dashed", color="red", weight=0]; 2212[label="FiniteMap.sizeFM xuu253",fontsize=16,color="magenta"];2212 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2213[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2214[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 otherwise",fontsize=16,color="black",shape="box"];2214 -> 2531[label="",style="solid", color="black", weight=3]; 2215[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34",fontsize=16,color="black",shape="box"];2215 -> 2532[label="",style="solid", color="black", weight=3]; 2216[label="FiniteMap.mkBalBranch6Double_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];2216 -> 2533[label="",style="solid", color="black", weight=3]; 2217[label="FiniteMap.mkBalBranch6Double_L xuu25 (Just xuu300) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu25 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];2217 -> 2534[label="",style="solid", color="black", weight=3]; 3915[label="xuu343",fontsize=16,color="green",shape="box"];3916[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3917[label="xuu25",fontsize=16,color="green",shape="box"];3918[label="Just xuu300",fontsize=16,color="green",shape="box"];3919[label="xuu31",fontsize=16,color="green",shape="box"];2227[label="xuu334",fontsize=16,color="green",shape="box"];2228 -> 1484[label="",style="dashed", color="red", weight=0]; 2228[label="FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];2228 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2229[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2230[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 otherwise",fontsize=16,color="black",shape="box"];2230 -> 2544[label="",style="solid", color="black", weight=3]; 2231[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34",fontsize=16,color="black",shape="box"];2231 -> 2545[label="",style="solid", color="black", weight=3]; 2523[label="FiniteMap.mkBalBranch6Double_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];2523 -> 2732[label="",style="solid", color="black", weight=3]; 2524[label="FiniteMap.mkBalBranch6Double_L xuu33 Nothing xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu33 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];2524 -> 2733[label="",style="solid", color="black", weight=3]; 3920[label="xuu343",fontsize=16,color="green",shape="box"];3921[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3922[label="xuu33",fontsize=16,color="green",shape="box"];3923[label="Nothing",fontsize=16,color="green",shape="box"];3924[label="xuu31",fontsize=16,color="green",shape="box"];3723[label="xuu310010",fontsize=16,color="green",shape="box"];3724[label="xuu300000",fontsize=16,color="green",shape="box"];3725 -> 3752[label="",style="dashed", color="red", weight=0]; 3725[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3725 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3726[label="EQ",fontsize=16,color="green",shape="box"];3727 -> 3754[label="",style="dashed", color="red", weight=0]; 3727[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3727 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3728[label="EQ",fontsize=16,color="green",shape="box"];3729 -> 3756[label="",style="dashed", color="red", weight=0]; 3729[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3729 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3730[label="EQ",fontsize=16,color="green",shape="box"];3731 -> 3758[label="",style="dashed", color="red", weight=0]; 3731[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3731 -> 3759[label="",style="dashed", color="magenta", weight=3]; 3732[label="EQ",fontsize=16,color="green",shape="box"];3733 -> 3760[label="",style="dashed", color="red", weight=0]; 3733[label="compare1 xuu30000 xuu31000 (xuu30000 <= xuu31000)",fontsize=16,color="magenta"];3733 -> 3761[label="",style="dashed", color="magenta", weight=3]; 3734[label="EQ",fontsize=16,color="green",shape="box"];2219[label="primPlusNat (Succ xuu25200) (Succ xuu8600)",fontsize=16,color="black",shape="box"];2219 -> 2537[label="",style="solid", color="black", weight=3]; 2220[label="primPlusNat (Succ xuu25200) Zero",fontsize=16,color="black",shape="box"];2220 -> 2538[label="",style="solid", color="black", weight=3]; 2221[label="primPlusNat Zero (Succ xuu8600)",fontsize=16,color="black",shape="box"];2221 -> 2539[label="",style="solid", color="black", weight=3]; 2222[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2222 -> 2540[label="",style="solid", color="black", weight=3]; 2223 -> 1948[label="",style="dashed", color="red", weight=0]; 2223[label="primMinusNat xuu25200 xuu8600",fontsize=16,color="magenta"];2223 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2224[label="Pos (Succ xuu25200)",fontsize=16,color="green",shape="box"];2225[label="Neg (Succ xuu8600)",fontsize=16,color="green",shape="box"];2226[label="Pos Zero",fontsize=16,color="green",shape="box"];2530[label="xuu253",fontsize=16,color="green",shape="box"];2531[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34 xuu250 xuu251 xuu252 xuu253 xuu254 True",fontsize=16,color="black",shape="box"];2531 -> 2740[label="",style="solid", color="black", weight=3]; 2532 -> 3783[label="",style="dashed", color="red", weight=0]; 2532[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu250 xuu251 xuu253 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu300) xuu31 xuu254 xuu34)",fontsize=16,color="magenta"];2532 -> 3814[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3815[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3816[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3817[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3818[label="",style="dashed", color="magenta", weight=3]; 2533[label="error []",fontsize=16,color="red",shape="box"];2534 -> 3783[label="",style="dashed", color="red", weight=0]; 2534[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu300) xuu31 xuu25 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];2534 -> 3819[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3820[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3821[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3822[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3823[label="",style="dashed", color="magenta", weight=3]; 2543[label="xuu333",fontsize=16,color="green",shape="box"];2544[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];2544 -> 2874[label="",style="solid", color="black", weight=3]; 2545 -> 3783[label="",style="dashed", color="red", weight=0]; 2545[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu330 xuu331 xuu333 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu31 xuu334 xuu34)",fontsize=16,color="magenta"];2545 -> 3829[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3830[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3831[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3832[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3833[label="",style="dashed", color="magenta", weight=3]; 2732[label="error []",fontsize=16,color="red",shape="box"];2733 -> 3783[label="",style="dashed", color="red", weight=0]; 2733[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu31 xuu33 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];2733 -> 3834[label="",style="dashed", color="magenta", weight=3]; 2733 -> 3835[label="",style="dashed", color="magenta", weight=3]; 2733 -> 3836[label="",style="dashed", color="magenta", weight=3]; 2733 -> 3837[label="",style="dashed", color="magenta", weight=3]; 2733 -> 3838[label="",style="dashed", color="magenta", weight=3]; 3753 -> 2498[label="",style="dashed", color="red", weight=0]; 3753[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3753 -> 3762[label="",style="dashed", color="magenta", weight=3]; 3753 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3752[label="compare1 xuu30000 xuu31000 xuu186",fontsize=16,color="burlywood",shape="triangle"];4661[label="xuu186/False",fontsize=10,color="white",style="solid",shape="box"];3752 -> 4661[label="",style="solid", color="burlywood", weight=9]; 4661 -> 3764[label="",style="solid", color="burlywood", weight=3]; 4662[label="xuu186/True",fontsize=10,color="white",style="solid",shape="box"];3752 -> 4662[label="",style="solid", color="burlywood", weight=9]; 4662 -> 3765[label="",style="solid", color="burlywood", weight=3]; 3755 -> 2502[label="",style="dashed", color="red", weight=0]; 3755[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3755 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3754[label="compare1 xuu30000 xuu31000 xuu187",fontsize=16,color="burlywood",shape="triangle"];4663[label="xuu187/False",fontsize=10,color="white",style="solid",shape="box"];3754 -> 4663[label="",style="solid", color="burlywood", weight=9]; 4663 -> 3768[label="",style="solid", color="burlywood", weight=3]; 4664[label="xuu187/True",fontsize=10,color="white",style="solid",shape="box"];3754 -> 4664[label="",style="solid", color="burlywood", weight=9]; 4664 -> 3769[label="",style="solid", color="burlywood", weight=3]; 3757 -> 2504[label="",style="dashed", color="red", weight=0]; 3757[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3757 -> 3770[label="",style="dashed", color="magenta", weight=3]; 3757 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3756[label="compare1 xuu30000 xuu31000 xuu188",fontsize=16,color="burlywood",shape="triangle"];4665[label="xuu188/False",fontsize=10,color="white",style="solid",shape="box"];3756 -> 4665[label="",style="solid", color="burlywood", weight=9]; 4665 -> 3772[label="",style="solid", color="burlywood", weight=3]; 4666[label="xuu188/True",fontsize=10,color="white",style="solid",shape="box"];3756 -> 4666[label="",style="solid", color="burlywood", weight=9]; 4666 -> 3773[label="",style="solid", color="burlywood", weight=3]; 3759 -> 2505[label="",style="dashed", color="red", weight=0]; 3759[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3759 -> 3774[label="",style="dashed", color="magenta", weight=3]; 3759 -> 3775[label="",style="dashed", color="magenta", weight=3]; 3758[label="compare1 xuu30000 xuu31000 xuu189",fontsize=16,color="burlywood",shape="triangle"];4667[label="xuu189/False",fontsize=10,color="white",style="solid",shape="box"];3758 -> 4667[label="",style="solid", color="burlywood", weight=9]; 4667 -> 3776[label="",style="solid", color="burlywood", weight=3]; 4668[label="xuu189/True",fontsize=10,color="white",style="solid",shape="box"];3758 -> 4668[label="",style="solid", color="burlywood", weight=9]; 4668 -> 3777[label="",style="solid", color="burlywood", weight=3]; 3761 -> 2506[label="",style="dashed", color="red", weight=0]; 3761[label="xuu30000 <= xuu31000",fontsize=16,color="magenta"];3761 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3761 -> 3779[label="",style="dashed", color="magenta", weight=3]; 3760[label="compare1 xuu30000 xuu31000 xuu190",fontsize=16,color="burlywood",shape="triangle"];4669[label="xuu190/False",fontsize=10,color="white",style="solid",shape="box"];3760 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 3780[label="",style="solid", color="burlywood", weight=3]; 4670[label="xuu190/True",fontsize=10,color="white",style="solid",shape="box"];3760 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 3781[label="",style="solid", color="burlywood", weight=3]; 2537[label="Succ (Succ (primPlusNat xuu25200 xuu8600))",fontsize=16,color="green",shape="box"];2537 -> 2873[label="",style="dashed", color="green", weight=3]; 2538[label="Succ xuu25200",fontsize=16,color="green",shape="box"];2539[label="Succ xuu8600",fontsize=16,color="green",shape="box"];2540[label="Zero",fontsize=16,color="green",shape="box"];2541[label="xuu8600",fontsize=16,color="green",shape="box"];2542[label="xuu25200",fontsize=16,color="green",shape="box"];2740[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 xuu254) xuu34",fontsize=16,color="burlywood",shape="box"];4671[label="xuu254/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 3212[label="",style="solid", color="burlywood", weight=3]; 4672[label="xuu254/FiniteMap.Branch xuu2540 xuu2541 xuu2542 xuu2543 xuu2544",fontsize=10,color="white",style="solid",shape="box"];2740 -> 4672[label="",style="solid", color="burlywood", weight=9]; 4672 -> 3213[label="",style="solid", color="burlywood", weight=3]; 3814 -> 3783[label="",style="dashed", color="red", weight=0]; 3814[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu300) xuu31 xuu254 xuu34",fontsize=16,color="magenta"];3814 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3814 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3815[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3816[label="xuu253",fontsize=16,color="green",shape="box"];3817[label="xuu250",fontsize=16,color="green",shape="box"];3818[label="xuu251",fontsize=16,color="green",shape="box"];3819 -> 3783[label="",style="dashed", color="red", weight=0]; 3819[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];3819 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3819 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3819 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3819 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3819 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3820[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3821 -> 3783[label="",style="dashed", color="red", weight=0]; 3821[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu300) xuu31 xuu25 xuu3433",fontsize=16,color="magenta"];3821 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3822[label="xuu3430",fontsize=16,color="green",shape="box"];3823[label="xuu3431",fontsize=16,color="green",shape="box"];2874[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu34",fontsize=16,color="burlywood",shape="box"];4673[label="xuu334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2874 -> 4673[label="",style="solid", color="burlywood", weight=9]; 4673 -> 3613[label="",style="solid", color="burlywood", weight=3]; 4674[label="xuu334/FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344",fontsize=10,color="white",style="solid",shape="box"];2874 -> 4674[label="",style="solid", color="burlywood", weight=9]; 4674 -> 3614[label="",style="solid", color="burlywood", weight=3]; 3829 -> 3783[label="",style="dashed", color="red", weight=0]; 3829[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu31 xuu334 xuu34",fontsize=16,color="magenta"];3829 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3829 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3829 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3829 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3829 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3830[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3831[label="xuu333",fontsize=16,color="green",shape="box"];3832[label="xuu330",fontsize=16,color="green",shape="box"];3833[label="xuu331",fontsize=16,color="green",shape="box"];3834 -> 3783[label="",style="dashed", color="red", weight=0]; 3834[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];3834 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3834 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3834 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3834 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3834 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3835[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3836 -> 3783[label="",style="dashed", color="red", weight=0]; 3836[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu31 xuu33 xuu3433",fontsize=16,color="magenta"];3836 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3836 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3836 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3836 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3836 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3837[label="xuu3430",fontsize=16,color="green",shape="box"];3838[label="xuu3431",fontsize=16,color="green",shape="box"];3762[label="xuu30000",fontsize=16,color="green",shape="box"];3763[label="xuu31000",fontsize=16,color="green",shape="box"];3764[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3764 -> 3955[label="",style="solid", color="black", weight=3]; 3765[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3765 -> 3956[label="",style="solid", color="black", weight=3]; 3766[label="xuu30000",fontsize=16,color="green",shape="box"];3767[label="xuu31000",fontsize=16,color="green",shape="box"];3768[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3768 -> 3957[label="",style="solid", color="black", weight=3]; 3769[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3769 -> 3958[label="",style="solid", color="black", weight=3]; 3770[label="xuu30000",fontsize=16,color="green",shape="box"];3771[label="xuu31000",fontsize=16,color="green",shape="box"];3772[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3772 -> 3959[label="",style="solid", color="black", weight=3]; 3773[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3773 -> 3960[label="",style="solid", color="black", weight=3]; 3774[label="xuu30000",fontsize=16,color="green",shape="box"];3775[label="xuu31000",fontsize=16,color="green",shape="box"];3776[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3776 -> 3961[label="",style="solid", color="black", weight=3]; 3777[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3777 -> 3962[label="",style="solid", color="black", weight=3]; 3778[label="xuu30000",fontsize=16,color="green",shape="box"];3779[label="xuu31000",fontsize=16,color="green",shape="box"];3780[label="compare1 xuu30000 xuu31000 False",fontsize=16,color="black",shape="box"];3780 -> 3963[label="",style="solid", color="black", weight=3]; 3781[label="compare1 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3781 -> 3964[label="",style="solid", color="black", weight=3]; 2873 -> 2067[label="",style="dashed", color="red", weight=0]; 2873[label="primPlusNat xuu25200 xuu8600",fontsize=16,color="magenta"];2873 -> 3713[label="",style="dashed", color="magenta", weight=3]; 2873 -> 3714[label="",style="dashed", color="magenta", weight=3]; 3212[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 FiniteMap.EmptyFM) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3212 -> 3715[label="",style="solid", color="black", weight=3]; 3213[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 (FiniteMap.Branch xuu2540 xuu2541 xuu2542 xuu2543 xuu2544)) (Just xuu300) xuu31 xuu34 (FiniteMap.Branch xuu250 xuu251 xuu252 xuu253 (FiniteMap.Branch xuu2540 xuu2541 xuu2542 xuu2543 xuu2544)) xuu34",fontsize=16,color="black",shape="box"];3213 -> 3716[label="",style="solid", color="black", weight=3]; 3925[label="xuu34",fontsize=16,color="green",shape="box"];3926[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3927[label="xuu254",fontsize=16,color="green",shape="box"];3928[label="Just xuu300",fontsize=16,color="green",shape="box"];3929[label="xuu31",fontsize=16,color="green",shape="box"];3930[label="xuu344",fontsize=16,color="green",shape="box"];3931[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3932[label="xuu3434",fontsize=16,color="green",shape="box"];3933[label="xuu340",fontsize=16,color="green",shape="box"];3934[label="xuu341",fontsize=16,color="green",shape="box"];3935[label="xuu3433",fontsize=16,color="green",shape="box"];3936[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3937[label="xuu25",fontsize=16,color="green",shape="box"];3938[label="Just xuu300",fontsize=16,color="green",shape="box"];3939[label="xuu31",fontsize=16,color="green",shape="box"];3613[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3613 -> 3721[label="",style="solid", color="black", weight=3]; 3614[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) Nothing xuu31 xuu34 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) xuu34",fontsize=16,color="black",shape="box"];3614 -> 3722[label="",style="solid", color="black", weight=3]; 3940[label="xuu34",fontsize=16,color="green",shape="box"];3941[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3942[label="xuu334",fontsize=16,color="green",shape="box"];3943[label="Nothing",fontsize=16,color="green",shape="box"];3944[label="xuu31",fontsize=16,color="green",shape="box"];3945[label="xuu344",fontsize=16,color="green",shape="box"];3946[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3947[label="xuu3434",fontsize=16,color="green",shape="box"];3948[label="xuu340",fontsize=16,color="green",shape="box"];3949[label="xuu341",fontsize=16,color="green",shape="box"];3950[label="xuu3433",fontsize=16,color="green",shape="box"];3951[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3952[label="xuu33",fontsize=16,color="green",shape="box"];3953[label="Nothing",fontsize=16,color="green",shape="box"];3954[label="xuu31",fontsize=16,color="green",shape="box"];3955[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];3955 -> 3986[label="",style="solid", color="black", weight=3]; 3956[label="LT",fontsize=16,color="green",shape="box"];3957[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];3957 -> 3987[label="",style="solid", color="black", weight=3]; 3958[label="LT",fontsize=16,color="green",shape="box"];3959[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];3959 -> 3988[label="",style="solid", color="black", weight=3]; 3960[label="LT",fontsize=16,color="green",shape="box"];3961[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];3961 -> 3989[label="",style="solid", color="black", weight=3]; 3962[label="LT",fontsize=16,color="green",shape="box"];3963[label="compare0 xuu30000 xuu31000 otherwise",fontsize=16,color="black",shape="box"];3963 -> 3990[label="",style="solid", color="black", weight=3]; 3964[label="LT",fontsize=16,color="green",shape="box"];3713[label="xuu25200",fontsize=16,color="green",shape="box"];3714[label="xuu8600",fontsize=16,color="green",shape="box"];3715[label="error []",fontsize=16,color="red",shape="box"];3716 -> 3783[label="",style="dashed", color="red", weight=0]; 3716[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2540 xuu2541 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu250 xuu251 xuu253 xuu2543) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu300) xuu31 xuu2544 xuu34)",fontsize=16,color="magenta"];3716 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3716 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3716 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3716 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3716 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3721[label="error []",fontsize=16,color="red",shape="box"];3722 -> 3783[label="",style="dashed", color="red", weight=0]; 3722[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3340 xuu3341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu31 xuu3344 xuu34)",fontsize=16,color="magenta"];3722 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3722 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3722 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3722 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3722 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3986[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3986 -> 3992[label="",style="solid", color="black", weight=3]; 3987[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3987 -> 3993[label="",style="solid", color="black", weight=3]; 3988[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3988 -> 3994[label="",style="solid", color="black", weight=3]; 3989[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3989 -> 3995[label="",style="solid", color="black", weight=3]; 3990[label="compare0 xuu30000 xuu31000 True",fontsize=16,color="black",shape="box"];3990 -> 3996[label="",style="solid", color="black", weight=3]; 3874 -> 3783[label="",style="dashed", color="red", weight=0]; 3874[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu300) xuu31 xuu2544 xuu34",fontsize=16,color="magenta"];3874 -> 3965[label="",style="dashed", color="magenta", weight=3]; 3874 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3874 -> 3967[label="",style="dashed", color="magenta", weight=3]; 3874 -> 3968[label="",style="dashed", color="magenta", weight=3]; 3874 -> 3969[label="",style="dashed", color="magenta", weight=3]; 3875[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3876 -> 3783[label="",style="dashed", color="red", weight=0]; 3876[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu250 xuu251 xuu253 xuu2543",fontsize=16,color="magenta"];3876 -> 3970[label="",style="dashed", color="magenta", weight=3]; 3876 -> 3971[label="",style="dashed", color="magenta", weight=3]; 3876 -> 3972[label="",style="dashed", color="magenta", weight=3]; 3876 -> 3973[label="",style="dashed", color="magenta", weight=3]; 3876 -> 3974[label="",style="dashed", color="magenta", weight=3]; 3877[label="xuu2540",fontsize=16,color="green",shape="box"];3878[label="xuu2541",fontsize=16,color="green",shape="box"];3889 -> 3783[label="",style="dashed", color="red", weight=0]; 3889[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu31 xuu3344 xuu34",fontsize=16,color="magenta"];3889 -> 3975[label="",style="dashed", color="magenta", weight=3]; 3889 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3889 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3889 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3889 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3890[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3891 -> 3783[label="",style="dashed", color="red", weight=0]; 3891[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343",fontsize=16,color="magenta"];3891 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3891 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3891 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3891 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3891 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3892[label="xuu3340",fontsize=16,color="green",shape="box"];3893[label="xuu3341",fontsize=16,color="green",shape="box"];3992[label="GT",fontsize=16,color="green",shape="box"];3993[label="GT",fontsize=16,color="green",shape="box"];3994[label="GT",fontsize=16,color="green",shape="box"];3995[label="GT",fontsize=16,color="green",shape="box"];3996[label="GT",fontsize=16,color="green",shape="box"];3965[label="xuu34",fontsize=16,color="green",shape="box"];3966[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3967[label="xuu2544",fontsize=16,color="green",shape="box"];3968[label="Just xuu300",fontsize=16,color="green",shape="box"];3969[label="xuu31",fontsize=16,color="green",shape="box"];3970[label="xuu2543",fontsize=16,color="green",shape="box"];3971[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3972[label="xuu253",fontsize=16,color="green",shape="box"];3973[label="xuu250",fontsize=16,color="green",shape="box"];3974[label="xuu251",fontsize=16,color="green",shape="box"];3975[label="xuu34",fontsize=16,color="green",shape="box"];3976[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3977[label="xuu3344",fontsize=16,color="green",shape="box"];3978[label="Nothing",fontsize=16,color="green",shape="box"];3979[label="xuu31",fontsize=16,color="green",shape="box"];3980[label="xuu3343",fontsize=16,color="green",shape="box"];3981[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3982[label="xuu333",fontsize=16,color="green",shape="box"];3983[label="xuu330",fontsize=16,color="green",shape="box"];3984[label="xuu331",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(xuu30000), Succ(xuu31000)) -> new_primCmpNat(xuu30000, xuu31000) 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(xuu30000), Succ(xuu31000)) -> new_primCmpNat(xuu30000, xuu31000) 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_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), hf, app(app(ty_@2, baa), bab)) -> new_ltEs5(xuu30000, xuu31000, baa, bab) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, app(ty_Ratio, hh)) -> new_ltEs6(xuu30000, xuu31000, hh) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_lt8(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, fh, ga) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, fh, ga), fh, ga) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_mkBalBranch6MkBalBranch110(xuu250, xuu251, xuu252, xuu253, Branch(xuu2540, xuu2541, xuu2542, xuu2543, xuu2544), xuu300, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2540, xuu2541, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu250, xuu251, xuu253, xuu2543, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Just(xuu300), xuu31, xuu2544, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs7(xuu40000, xuu3000, cd, ce, cf) new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> Branch(Just(xuu4000), new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, gc) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, bhe), bhf)) -> new_esEs4(xuu19, xuu14, bhe, bhf) new_esEs18(xuu40000, xuu3000, app(ty_[], cbg)) -> new_esEs11(xuu40000, xuu3000, cbg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_mkBalBranch0(xuu300, xuu31, new_addToFM_C0(xuu33, Nothing, xuu401, h, ba), xuu34, h, ba) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, bce), bcf)) -> new_ltEs5(xuu30001, xuu31001, bce, bcf) new_ltEs18(True, False) -> False new_emptyFM(h, ba) -> EmptyFM new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, ge), gc) -> new_ltEs6(xuu30000, xuu31000, ge) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_mkBalBranch6MkBalBranch110(xuu250, xuu251, xuu252, xuu253, xuu254, xuu300, xuu31, xuu34, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu250, xuu251, xuu253, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Just(xuu300), xuu31, xuu254, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, ccf), ccg)) -> new_esEs4(xuu40000, xuu3000, ccf, ccg) new_lt7(xuu30001, xuu31001, app(app(ty_@2, ceh), cfa)) -> new_lt12(xuu30001, xuu31001, ceh, cfa) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, che), chf)) -> new_ltEs5(xuu30000, xuu31000, che, chf) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_mkBalBranch(xuu31, xuu33, new_addToFM_C0(xuu34, Just(xuu4000), xuu401, h, ba), h, ba) new_ltEs14(Nothing, Just(xuu31000), chb) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, cab) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_esEs8(GT, GT) -> True new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, cga)) -> new_ltEs6(xuu30002, xuu31002, cga) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], dae), cab) -> new_esEs11(xuu40000, xuu3000, dae) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, ddf), ddg)) -> new_compare8(xuu30000, xuu31000, ddf, ddg) new_esEs28(xuu40001, xuu3001, app(ty_[], bfb)) -> new_esEs11(xuu40001, xuu3001, bfb) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, bch), bda)) -> new_ltEs16(xuu30001, xuu31001, bch, bda) new_esEs8(EQ, EQ) -> True new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, ceg)) -> new_esEs17(xuu30001, xuu31001, ceg) new_mkBranch(xuu192, xuu193, xuu194, xuu195, xuu196, bb, bc) -> Branch(xuu193, xuu194, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu195, bb, bc)), new_sizeFM(xuu196, bb, bc)), xuu195, xuu196) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ha), hb), gc) -> new_ltEs16(xuu30000, xuu31000, ha, hb) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Nothing, xuu31, xuu33, xuu3433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, app(app(ty_Either, bad), bae)) -> new_ltEs16(xuu30000, xuu31000, bad, bae) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, db)) -> new_esEs17(xuu40000, xuu3000, db) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu34, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu330, xuu331, xuu333, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Nothing, xuu31, xuu334, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs20(xuu30001, xuu31001, app(ty_[], cef)) -> new_esEs11(xuu30001, xuu31001, cef) new_compare14(xuu30000, xuu31000, True, bbh, bca, bcb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), hf, gc) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_mkBalBranch6Size_l(xuu25, xuu300, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu25, h, ba) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, cdf), cdg)) -> new_esEs4(xuu30000, xuu31000, cdf, cdg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, cab) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, cec), ced), cee)) -> new_esEs7(xuu30000, xuu31000, cec, ced, cee) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, bbf, bbg) -> LT new_mkBalBranch(xuu31, xuu33, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu34, new_esEs8(new_primCmpInt1(xuu33, xuu31, xuu34, h, ba), LT), h, ba) new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, bbf), bbg)) -> new_lt12(xuu30000, xuu31000, bbf, bbg) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dec) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_primMinusNat0(Succ(xuu25200), Zero) -> Pos(Succ(xuu25200)) new_primCmpInt0(EmptyFM, xuu300, xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(EmptyFM, xuu300, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_primPlusInt(Pos(xuu2520), Pos(xuu860)) -> Pos(new_primPlusNat0(xuu2520, xuu860)) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, chh), daa)) -> new_ltEs16(xuu30000, xuu31000, chh, daa) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, cab) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, bbb), bbc)) -> new_ltEs5(xuu3000, xuu3100, bbb, bbc) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, ceh), cfa)) -> new_esEs4(xuu30001, xuu31001, ceh, cfa) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu33, xuu31, xuu34, new_gt(new_mkBalBranch6Size_r(xuu33, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu33, xuu31, xuu34, h, ba))), h, ba) new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, bde) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, bde)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), caa, app(ty_Maybe, dcb)) -> new_esEs5(xuu40000, xuu3000, dcb) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs7(xuu30000, xuu31000, bbh, bca, bcb) new_ltEs6(xuu3000, xuu3100, bd) -> new_fsEs(new_compare12(xuu3000, xuu3100, bd)) new_sizeFM(EmptyFM, bb, bc) -> Pos(Zero) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_mkBalBranch6MkBalBranch40(xuu33, xuu31, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt17(new_sizeFM0(xuu343, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu344, h, ba))), h, ba) new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, cfc), cfd)) -> new_lt16(xuu30001, xuu31001, cfc, cfd) new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_mkBalBranch0(xuu300, xuu31, xuu33, new_addToFM_C0(xuu34, Nothing, xuu401, h, ba), h, ba) new_ltEs19(xuu30001, xuu31001, app(ty_[], bcc)) -> new_ltEs13(xuu30001, xuu31001, bcc) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_lt13(xuu30000, xuu31000, gb) -> new_esEs8(new_compare28(xuu30000, xuu31000, gb), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_addToFM_C0(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C24(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), LT), h, ba) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_lt10(xuu30000, xuu31000, bbd) -> new_esEs8(new_compare0(xuu30000, xuu31000, bbd), LT) new_compare25(xuu30000, xuu31000, True, bbf, bbg) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs8(xuu30001, xuu31001, bdb, bdc, bdd) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], chc)) -> new_ltEs13(xuu30000, xuu31000, chc) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, dah), cab) -> new_esEs5(xuu40000, xuu3000, dah) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40001, xuu3001, dd, de) new_esEs11(:(xuu40000, xuu40001), [], bhh) -> False new_esEs11([], :(xuu3000, xuu3001), bhh) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, cea), ceb)) -> new_lt16(xuu30000, xuu31000, cea, ceb) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, gh), gc) -> new_ltEs14(xuu30000, xuu31000, gh) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_primMinusNat0(Succ(xuu25200), Succ(xuu8600)) -> new_primMinusNat0(xuu25200, xuu8600) new_ltEs18(False, False) -> True new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), False, h), GT), h, ba) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, bbe) -> new_esEs8(new_compare12(xuu30000, xuu31000, bbe), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, bcg)) -> new_ltEs14(xuu30001, xuu31001, bcg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, cab) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, cg), da)) -> new_esEs4(xuu40000, xuu3000, cg, da) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_compare24(xuu30000, xuu31000, False, fh, ga) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, fh, ga), fh, ga) new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], ee)) -> new_esEs11(xuu40002, xuu3002, ee) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, bbe)) -> new_esEs17(xuu30000, xuu31000, bbe) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, cc)) -> new_esEs5(xuu40000, xuu3000, cc) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, hf), gc)) -> new_ltEs16(xuu3000, xuu3100, hf, gc) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_mkBalBranch6MkBalBranch01(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba) -> error([]) new_esEs5(Nothing, Nothing, cac) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), cac) -> False new_esEs5(Just(xuu40000), Nothing, cac) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, cdh)) -> new_lt13(xuu30000, xuu31000, cdh) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, caf), cag)) -> new_esEs6(xuu40000, xuu3000, caf, cag) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), be, bf, bg) -> new_asAs(new_esEs21(xuu40000, xuu3000, be), new_asAs(new_esEs22(xuu40001, xuu3001, bf), new_esEs23(xuu40002, xuu3002, bg))) new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_mkBalBranch0(xuu300, xuu31, xuu25, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu25, xuu300, xuu31, xuu34, new_esEs8(new_primCmpInt0(xuu25, xuu300, xuu31, xuu34, h, ba), LT), h, ba) new_compare18(xuu30000, xuu31000, False, fh, ga) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, daf), dag), cab) -> new_esEs6(xuu40000, xuu3000, daf, dag) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs7(xuu40000, xuu3000, cba, cbb, cbc) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40001, xuu3001, dg, dh, ea) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu34, True, h, ba) -> new_mkBranch(Zero, Nothing, xuu31, xuu33, xuu34, app(ty_Maybe, h), ba) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, gc) -> new_ltEs18(xuu30000, xuu31000) new_addToFM_C0(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C16(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Nothing, True, h), GT), h, ba) new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba) new_lt16(xuu30000, xuu31000, fh, ga) -> new_esEs8(new_compare8(xuu30000, xuu31000, fh, ga), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, eh)) -> new_esEs5(xuu40002, xuu3002, eh) new_mkBalBranch6Size_r0(xuu25, xuu300, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu34, h, ba) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, chb)) -> new_ltEs14(xuu3000, xuu3100, chb) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, dab), dac), dad)) -> new_ltEs8(xuu30000, xuu31000, dab, dac, dad) new_mkBalBranch6MkBalBranch30(xuu25, xuu300, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Zero), Just(xuu300), xuu31, xuu25, xuu34, app(ty_Maybe, h), ba) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, chg)) -> new_ltEs14(xuu30000, xuu31000, chg) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, fh, ga) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), caa, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs7(xuu40000, xuu3000, dcc, dcd, dce) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_primCmpInt0(Branch(xuu250, xuu251, xuu252, xuu253, xuu254), xuu300, xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(xuu252, new_mkBalBranch6Size_r0(Branch(xuu250, xuu251, xuu252, xuu253, xuu254), xuu300, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, cab) -> new_esEs12(xuu40000, xuu3000) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_compare25(xuu30000, xuu31000, False, bbf, bbg) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, bbf, bbg), bbf, bbg) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, fg)) -> new_esEs17(xuu40002, xuu3002, fg) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), caa, app(ty_[], dbg)) -> new_esEs11(xuu40000, xuu3000, dbg) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, gc) -> new_ltEs15(xuu30000, xuu31000) new_mkBalBranch6MkBalBranch30(EmptyFM, xuu300, xuu31, xuu34, True, h, ba) -> error([]) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs7(xuu40002, xuu3002, fa, fb, fc) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_lt7(xuu30001, xuu31001, app(ty_Maybe, cfb)) -> new_lt13(xuu30001, xuu31001, cfb) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_addListToFM0(xuu31, xuu401, ba) -> xuu401 new_compare29(Nothing, Nothing, False, dec) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, df)) -> new_esEs5(xuu40001, xuu3001, df) new_esEs6(Right(xuu40000), Right(xuu3000), caa, app(ty_Ratio, dch)) -> new_esEs17(xuu40000, xuu3000, dch) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], gd), gc) -> new_ltEs13(xuu30000, xuu31000, gd) new_lt8(xuu30000, xuu31000, app(app(ty_@2, cdf), cdg)) -> new_lt12(xuu30000, xuu31000, cdf, cdg) new_mkBalBranch6MkBalBranch3(xuu33, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Zero), Nothing, xuu31, xuu33, xuu34, app(ty_Maybe, h), ba) new_addToFM_C16(xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) new_primCmpInt1(EmptyFM, xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(EmptyFM, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cah)) -> new_esEs5(xuu40000, xuu3000, cah) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, bbh, bca, bcb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, ef), eg)) -> new_esEs6(xuu40002, xuu3002, ef, eg) new_compare26(xuu30000, xuu31000, False, bbh, bca, bcb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, bbh, bca, bcb), bbh, bca, bcb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, fd), ff)) -> new_esEs4(xuu40002, xuu3002, fd, ff) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dec) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dec), dec) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, ca), cb)) -> new_esEs6(xuu40000, xuu3000, ca, cb) new_compare16(xuu30000, xuu31000, True) -> LT new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, bde) -> new_fsEs(new_compare0(xuu3000, xuu3100, bde)) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], cae)) -> new_esEs11(xuu40000, xuu3000, cae) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dbd), dbe), cab) -> new_esEs4(xuu40000, xuu3000, dbd, dbe) new_addToFM_C15(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bgd, bge) -> new_mkBalBranch0(xuu14, xuu15, xuu17, new_addToFM_C0(xuu18, Just(xuu19), xuu20, bgd, bge), bgd, bge) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, bfa)) -> new_esEs17(xuu40000, xuu3000, bfa) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_mkBalBranch6MkBalBranch40(xuu33, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu33, xuu31, xuu34, new_gt(new_mkBalBranch6Size_l0(xuu33, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu33, xuu31, xuu34, h, ba))), h, ba) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), cad) -> new_asAs(new_esEs24(xuu40000, xuu3000, cad), new_esEs25(xuu40001, xuu3001, cad)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40001, xuu3001, eb, ec) new_addToFM_C0(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C22(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), False, h), LT), h, ba) new_esEs6(Right(xuu40000), Right(xuu3000), caa, app(app(ty_Either, dbh), dca)) -> new_esEs6(xuu40000, xuu3000, dbh, dca) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), bbb, bbc) -> new_pePe(new_lt20(xuu30000, xuu31000, bbb), new_asAs(new_esEs26(xuu30000, xuu31000, bbb), new_ltEs19(xuu30001, xuu31001, bbc))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, cgb), cgc)) -> new_ltEs5(xuu30002, xuu31002, cgb, cgc) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dda)) -> new_compare0(xuu30000, xuu31000, dda) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primPlusInt(Neg(xuu2520), Neg(xuu860)) -> Neg(new_primPlusNat0(xuu2520, xuu860)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, cac)) -> new_esEs5(xuu4000, xuu300, cac) new_mkBalBranch6MkBalBranch5(xuu25, xuu300, xuu31, xuu34, True, h, ba) -> new_mkBranch(Zero, Just(xuu300), xuu31, xuu25, xuu34, app(ty_Maybe, h), ba) new_lt8(xuu30000, xuu31000, app(ty_[], cdd)) -> new_lt10(xuu30000, xuu31000, cdd) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, gb)) -> new_lt13(xuu30000, xuu31000, gb) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, bcd)) -> new_ltEs6(xuu30001, xuu31001, bcd) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, bbh), bca), bcb)) -> new_lt18(xuu30000, xuu31000, bbh, bca, bcb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, bff), bfg), bfh)) -> new_esEs7(xuu40001, xuu3001, bff, bfg, bfh) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, cdh)) -> new_esEs5(xuu30000, xuu31000, cdh) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, gc) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Nothing, xuu31, xuu33, xuu343, app(ty_Maybe, h), ba), xuu344, app(ty_Maybe, h), ba) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), bde) -> LT new_asAs(True, xuu124) -> xuu124 new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, bbf, bbg) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, ddb)) -> new_compare12(xuu30000, xuu31000, ddb) new_lt12(xuu30000, xuu31000, bbf, bbg) -> new_esEs8(new_compare17(xuu30000, xuu31000, bbf, bbg), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), hf, gc) -> False new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu25, xuu300, xuu31, xuu34, new_gt(new_mkBalBranch6Size_l(xuu25, xuu300, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu25, xuu300, xuu31, xuu34, h, ba))), h, ba) new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), caa, cab) -> False new_esEs6(Right(xuu40000), Left(xuu3000), caa, cab) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], dc)) -> new_esEs11(xuu40001, xuu3001, dc) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, cfb)) -> new_esEs5(xuu30001, xuu31001, cfb) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cbd), cbe)) -> new_esEs4(xuu40000, xuu3000, cbd, cbe) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, cab) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_mkBalBranch6MkBalBranch01(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Just(xuu300), xuu31, xuu25, xuu3433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_primPlusInt(Pos(xuu2520), Neg(xuu860)) -> new_primMinusNat0(xuu2520, xuu860) new_primPlusInt(Neg(xuu2520), Pos(xuu860)) -> new_primMinusNat0(xuu860, xuu2520) new_mkBalBranch6MkBalBranch3(EmptyFM, xuu31, xuu34, True, h, ba) -> error([]) new_compare24(xuu30000, xuu31000, True, fh, ga) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, hc), hd), he), gc) -> new_ltEs8(xuu30000, xuu31000, hc, hd, he) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], bbd)) -> new_lt10(xuu30000, xuu31000, bbd) new_compare19(xuu30000, xuu31000, bbh, bca, bcb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, bbh, bca, bcb), bbh, bca, bcb) new_mkBalBranch6MkBalBranch01(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), Just(xuu300), xuu31, xuu25, xuu343, app(ty_Maybe, h), ba), xuu344, app(ty_Maybe, h), ba) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], bde) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, EmptyFM, True, h, ba) -> error([]) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, ed)) -> new_esEs17(xuu40001, xuu3001, ed) new_primMulNat0(Zero, Zero) -> Zero new_gt(xuu80, xuu79) -> new_esEs8(new_compare6(xuu80, xuu79), GT) new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, gb) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, gb), gb) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, bha)) -> new_esEs5(xuu19, xuu14, bha) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, chd)) -> new_ltEs6(xuu30000, xuu31000, chd) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_lt18(xuu30001, xuu31001, cfe, cff, cfg) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_esEs26(xuu30000, xuu31000, app(app(ty_Either, fh), ga)) -> new_esEs6(xuu30000, xuu31000, fh, ga) new_compare14(xuu30000, xuu31000, False, bbh, bca, bcb) -> GT new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, bd)) -> new_ltEs6(xuu3000, xuu3100, bd) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba) -> error([]) new_mkBalBranch6Size_r(xuu33, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu34, h, ba) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_addToFM_C23(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bgd, bge) -> new_addToFM_C15(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bgd), bgd), GT), bgd, bge) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, cda), cdb), cdc)) -> new_ltEs8(xuu3000, xuu3100, cda, cdb, cdc) new_addToFM_C23(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bgd, bge) -> new_mkBalBranch0(xuu14, xuu15, new_addToFM_C0(xuu17, Just(xuu19), xuu20, bgd, bge), xuu18, bgd, bge) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, cea), ceb)) -> new_esEs6(xuu30000, xuu31000, cea, ceb) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu25, xuu300, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt17(new_sizeFM0(xuu343, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu344, h, ba))), h, ba) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, gc) -> new_ltEs9(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], bdh)) -> new_esEs11(xuu40000, xuu3000, bdh) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, cbf)) -> new_esEs17(xuu40000, xuu3000, cbf) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch40(xuu33, xuu31, EmptyFM, True, h, ba) -> error([]) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, ccb)) -> new_esEs5(xuu40000, xuu3000, ccb) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), cda, cdb, cdc) -> new_pePe(new_lt8(xuu30000, xuu31000, cda), new_asAs(new_esEs19(xuu30000, xuu31000, cda), new_pePe(new_lt7(xuu30001, xuu31001, cdb), new_asAs(new_esEs20(xuu30001, xuu31001, cdb), new_ltEs12(xuu30002, xuu31002, cdc))))) new_lt18(xuu30000, xuu31000, bbh, bca, bcb) -> new_esEs8(new_compare19(xuu30000, xuu31000, bbh, bca, bcb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], bbd)) -> new_esEs11(xuu30000, xuu31000, bbd) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), caa, app(app(ty_@2, dcf), dcg)) -> new_esEs4(xuu40000, xuu3000, dcf, dcg) new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dde)) -> new_compare28(xuu30000, xuu31000, dde) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, bbf), bbg)) -> new_esEs4(xuu30000, xuu31000, bbf, bbg) new_mkBalBranch6MkBalBranch110(xuu250, xuu251, xuu252, xuu253, EmptyFM, xuu300, xuu31, xuu34, False, h, ba) -> error([]) new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, cfc), cfd)) -> new_esEs6(xuu30001, xuu31001, cfc, cfd) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bhh) -> new_asAs(new_esEs18(xuu40000, xuu3000, bhh), new_esEs11(xuu40001, xuu3001, bhh)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, cec), ced), cee)) -> new_lt18(xuu30000, xuu31000, cec, ced, cee) new_ltEs14(Just(xuu30000), Nothing, chb) -> False new_ltEs14(Nothing, Nothing, chb) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs8(xuu30000, xuu31000, baf, bag, bah) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, cge), cgf)) -> new_ltEs16(xuu30002, xuu31002, cge, cgf) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_esEs21(xuu40000, xuu3000, app(ty_[], bh)) -> new_esEs11(xuu40000, xuu3000, bh) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, bfe)) -> new_esEs5(xuu40001, xuu3001, bfe) new_compare111(xuu117, xuu118, False, bba) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_mkBalBranch6MkBalBranch5(xuu25, xuu300, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu25, xuu300, xuu31, xuu34, new_gt(new_mkBalBranch6Size_r0(xuu25, xuu300, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu25, xuu300, xuu31, xuu34, h, ba))), h, ba) new_sizeFM0(Branch(xuu340, xuu341, xuu342, xuu343, xuu344), h, ba) -> xuu342 new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdf, bdg) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdf), new_esEs28(xuu40001, xuu3001, bdg)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_addToFM_C24(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), GT), h, ba) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_sizeFM(Branch(xuu1960, xuu1961, xuu1962, xuu1963, xuu1964), bb, bc) -> xuu1962 new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], cfh)) -> new_ltEs13(xuu30002, xuu31002, cfh) new_mkBalBranch6Size_l0(xuu33, xuu31, xuu34, h, ba) -> new_sizeFM0(xuu33, h, ba) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, be), bf), bg)) -> new_esEs7(xuu4000, xuu300, be, bf, bg) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_ltEs20(xuu3000, xuu3100, app(ty_[], bde)) -> new_ltEs13(xuu3000, xuu3100, bde) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, app(ty_Maybe, bac)) -> new_ltEs14(xuu30000, xuu31000, bac) new_addToFM_C16(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_mkBalBranch(xuu31, xuu33, new_addToFM_C0(xuu34, Nothing, xuu401, h, ba), h, ba) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, dbf), cab) -> new_esEs17(xuu40000, xuu3000, dbf) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs7(xuu30001, xuu31001, cfe, cff, cfg) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, EmptyFM, xuu31, xuu34, False, h, ba) -> error([]) new_compare0(:(xuu30000, xuu30001), [], bde) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_esEs29(xuu4000, xuu300, app(app(ty_Either, caa), cab)) -> new_esEs6(xuu4000, xuu300, caa, cab) new_lt7(xuu30001, xuu31001, app(ty_Ratio, ceg)) -> new_lt11(xuu30001, xuu31001, ceg) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_addToFM_C14(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs7(xuu19, xuu14, bhb, bhc, bhd) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt7(xuu30001, xuu31001, app(ty_[], cef)) -> new_lt10(xuu30001, xuu31001, cef) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, cab) -> new_esEs14(xuu40000, xuu3000) new_mkBalBranch6MkBalBranch3(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu34, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu34, new_lt17(new_sizeFM0(xuu334, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu333, h, ba))), h, ba) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs7(xuu40000, xuu3000, bed, bee, bef) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, bbf, bbg) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, bbf, bbg), bbf, bbg) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, gb)) -> new_esEs5(xuu30000, xuu31000, gb) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, gf), gg), gc) -> new_ltEs5(xuu30000, xuu31000, gf, gg) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_esEs30(xuu19, xuu14, app(app(ty_Either, bgg), bgh)) -> new_esEs6(xuu19, xuu14, bgg, bgh) new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_addToFM_C24(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_mkBalBranch(xuu31, new_addToFM_C0(xuu33, Just(xuu4000), xuu401, h, ba), xuu34, h, ba) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), bde) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, bde), bde) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, bba) -> LT new_primCmpInt1(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu34, h, ba) -> new_primCmpInt(new_primPlusInt(xuu332, new_mkBalBranch6Size_r(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))) new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, bea), beb)) -> new_esEs6(xuu40000, xuu3000, bea, beb) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, beg), beh)) -> new_esEs4(xuu40000, xuu3000, beg, beh) new_esEs19(xuu30000, xuu31000, app(ty_[], cdd)) -> new_esEs11(xuu30000, xuu31000, cdd) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, bgc)) -> new_esEs17(xuu40001, xuu3001, bgc) new_esEs29(xuu4000, xuu300, app(ty_[], bhh)) -> new_esEs11(xuu4000, xuu300, bhh) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, bbe)) -> new_lt11(xuu30000, xuu31000, bbe) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(xuu40000, xuu3000, ccc, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, gc) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, ddh), dea), deb)) -> new_compare19(xuu30000, xuu31000, ddh, dea, deb) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_mkBalBranch6MkBalBranch30(Branch(xuu250, xuu251, xuu252, xuu253, xuu254), xuu300, xuu31, xuu34, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu250, xuu251, xuu252, xuu253, xuu254, xuu300, xuu31, xuu34, new_lt17(new_sizeFM0(xuu254, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM0(xuu253, h, ba))), h, ba) new_ltEs16(Right(xuu30000), Right(xuu31000), hf, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_addToFM_C15(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bgd, bge) -> Branch(Just(xuu19), new_addListToFM0(xuu15, xuu20, bge), xuu16, xuu17, xuu18) new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, bga), bgb)) -> new_esEs4(xuu40001, xuu3001, bga, bgb) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, cbh), cca)) -> new_esEs6(xuu40000, xuu3000, cbh, cca) new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, fh), ga)) -> new_lt16(xuu30000, xuu31000, fh, ga) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, dba), dbb), dbc), cab) -> new_esEs7(xuu40000, xuu3000, dba, dbb, dbc) new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, Branch(xuu3340, xuu3341, xuu3342, xuu3343, xuu3344), xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3340, xuu3341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu330, xuu331, xuu333, xuu3343, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Nothing, xuu31, xuu3344, xuu34, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_compare29(xuu300, xuu310, True, dec) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_primMinusNat0(Zero, Succ(xuu8600)) -> Neg(Succ(xuu8600)) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdf), bdg)) -> new_esEs4(xuu4000, xuu300, bdf, bdg) new_ltEs18(True, True) -> True new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, cgd)) -> new_ltEs14(xuu30002, xuu31002, cgd) new_esEs28(xuu40001, xuu3001, app(app(ty_Either, bfc), bfd)) -> new_esEs6(xuu40001, xuu3001, bfc, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), caa, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, gc) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], bhh) -> True new_ltEs16(Right(xuu30000), Right(xuu31000), hf, app(ty_[], hg)) -> new_ltEs13(xuu30000, xuu31000, hg) new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_esEs30(xuu19, xuu14, app(ty_[], bgf)) -> new_esEs11(xuu19, xuu14, bgf) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, gc) -> new_ltEs10(xuu30000, xuu31000) new_addToFM_C0(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C23(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_esEs29(xuu4000, xuu300, app(ty_Ratio, cad)) -> new_esEs17(xuu4000, xuu300, cad) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, bhg)) -> new_esEs17(xuu19, xuu14, bhg) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, cab) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, bec)) -> new_esEs5(xuu40000, xuu3000, bec) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, cch)) -> new_esEs17(xuu40000, xuu3000, cch) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_sizeFM0(EmptyFM, h, ba) -> Pos(Zero) new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dec) -> GT new_ltEs11(EQ, LT) -> False new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, cgg), cgh), cha)) -> new_ltEs8(xuu30002, xuu31002, cgg, cgh, cha) new_compare31(xuu30000, xuu31000, app(app(ty_@2, ddc), ddd)) -> new_compare17(xuu30000, xuu31000, ddc, ddd) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs8(EQ, EQ) new_ltEs14(Just(x0), Nothing, x1) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Double) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_ltEs12(x0, x1, ty_@0) new_primCmpNat2(x0, Succ(x1)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, ty_Int) new_addToFM_C14(x0, x1, x2, x3, x4, x5, True, x6, x7) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_esEs22(x0, x1, app(ty_[], x2)) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs17(x0, x1) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_ltEs14(Nothing, Nothing, x0) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_primCmpNat1(Zero, Zero) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs21(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, True, x2, x3, x4) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_esEs22(x0, x1, ty_Float) new_primMinusNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, False, x11, x12) new_esEs20(x0, x1, ty_Integer) new_emptyFM(x0, x1) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_mkBalBranch6MkBalBranch4(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare11(x0, x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, False, x12, x13) new_esEs11(:(x0, x1), [], x2) new_sIZE_RATIO new_esEs30(x0, x1, ty_@0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(x0, x1, x2) new_ltEs14(Just(x0), Just(x1), ty_Int) new_compare10(x0, x1, True, x2, x3) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare17(x0, x1, x2, x3) new_esEs23(x0, x1, ty_Float) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs12(x0, x1, ty_Integer) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_sizeFM(EmptyFM, x0, x1) new_lt18(x0, x1, x2, x3, x4) new_ltEs20(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_mkBalBranch(x0, x1, x2, x3, x4) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs11(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, ty_Integer) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch30(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs9(Double(x0, x1), Double(x2, x3)) new_addToFM_C24(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs30(x0, x1, ty_Bool) new_lt16(x0, x1, x2, x3) new_compare31(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_compare0([], [], x0) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs11(GT, GT) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_[], x2)) new_lt17(x0, x1) new_asAs(False, x0) new_compare31(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_addToFM_C23(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_ltEs12(x0, x1, ty_Float) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs19(x0, x1, ty_@0) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare29(x0, x1, True, x2) new_compare29(Nothing, Just(x0), False, x1) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_esEs5(Just(x0), Nothing, x1) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_esEs5(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, True, x2, x3) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs23(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(LT, LT) new_addToFM_C24(x0, x1, x2, x3, x4, x5, False, x6, x7) new_compare0(:(x0, x1), [], x2) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(True, True) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) new_addToFM_C22(x0, x1, x2, x3, x4, x5, True, x6, x7) new_ltEs6(x0, x1, x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare25(x0, x1, True, x2, x3) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_primCmpInt1(EmptyFM, x0, x1, x2, x3) new_lt4(x0, x1) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch4(x0, x1, x2, EmptyFM, True, x3, x4) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_compare14(x0, x1, False, x2, x3, x4) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5, x6) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare8(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs19(x0, x1, ty_Double) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(x0, x1, False, x2, x3) new_mkBalBranch6MkBalBranch30(EmptyFM, x0, x1, x2, True, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_esEs26(x0, x1, ty_Char) new_sizeFM0(EmptyFM, x0, x1) new_primMinusNat0(Succ(x0), Succ(x1)) new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_esEs5(Nothing, Just(x0), x1) new_addToFM_C16(x0, x1, x2, x3, x4, True, x5, x6) new_esEs29(x0, x1, ty_Char) new_lt8(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_compare111(x0, x1, False, x2) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_asAs(True, x0) new_esEs23(x0, x1, ty_Char) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs28(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Ordering) new_addToFM_C13(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Nothing, Nothing, False, x0) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_compare110(x0, x1, True) new_esEs29(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_lt7(x0, x1, app(ty_[], x2)) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_esEs23(x0, x1, ty_Int) new_compare18(x0, x1, True, x2, x3) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Char) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_compare27(x0, x1, True) new_esEs23(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs22(x0, x1, ty_Int) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs18(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs21(x0, x1, ty_Int) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1) new_primCompAux0(x0, x1, x2, x3) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_compare210(x0, x1, False) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_esEs27(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_lt15(x0, x1) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_ltEs12(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_compare24(x0, x1, False, x2, x3) new_mkBalBranch0(x0, x1, x2, x3, x4, x5) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_lt11(x0, x1, x2) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_compare0([], :(x0, x1), x2) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, False) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare25(x0, x1, False, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_primPlusInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs18(x0, x1, ty_Integer) new_ltEs18(True, False) new_ltEs18(False, True) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, False, x6, x7) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, x2) new_ltEs14(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Zero) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare31(x0, x1, ty_Integer) new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_addToFM_C16(x0, x1, x2, x3, x4, False, x5, x6) new_primMinusNat0(Zero, Succ(x0)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_addToFM_C13(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_ltEs12(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_lt13(x0, x1, x2) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primPlusNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_@0) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, EmptyFM, x4, x5, x6, False, x7, x8) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare111(x0, x1, True, x2) new_compare6(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(x0, x1, ty_Ordering) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_primMinusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Char) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_compare29(Just(x0), Nothing, False, x1) new_primPlusNat0(Succ(x0), Zero) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs30(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4) new_compare31(x0, x1, ty_Bool) new_addToFM_C14(x0, x1, x2, x3, x4, x5, False, x6, x7) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_compare0(:(x0, x1), :(x2, x3), x4) new_gt(x0, x1) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_mkBalBranch6MkBalBranch40(x0, x1, EmptyFM, True, x2, x3) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_esEs21(x0, x1, ty_Char) new_ltEs10(x0, x1) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_primCompAux00(x0, GT) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, app(ty_Ratio, x2)) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, True, x7, x8) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, x4) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Integer) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Char) new_addToFM_C22(x0, x1, x2, x3, x4, x5, False, x6, x7) new_compare16(x0, x1, True) new_esEs27(x0, x1, ty_Ordering) new_addListToFM0(x0, x1, x2) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_compare29(Just(x0), Just(x1), False, x2) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs19(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6, x7) new_mkBalBranch6MkBalBranch40(x0, x1, x2, False, x3, x4) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Integer) new_lt12(x0, x1, x2, x3) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) new_mkBalBranch6MkBalBranch40(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) new_esEs18(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cf), cc) -> new_esEs1(xuu40000, xuu3000, cf) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(xuu40000, xuu3000, bca, bcb) new_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_Either, eh), fa)) -> new_esEs0(xuu40000, xuu3000, eh, fa) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu40001, xuu3001, bdc, bdd) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(app(ty_@2, bbe), bbf)) -> new_esEs3(xuu40002, xuu3002, bbe, bbf) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu40000, xuu3000, dg, dh) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ca) -> new_esEs(xuu40001, xuu3001, ca) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, gf), gb, gc) -> new_esEs1(xuu40000, xuu3000, gf) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bg), bh)) -> new_esEs3(xuu40000, xuu3000, bg, bh) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(ty_[], baf)) -> new_esEs(xuu40002, xuu3002, baf) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bc)) -> new_esEs1(xuu40000, xuu3000, bc) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(ty_Maybe, hh), gc) -> new_esEs1(xuu40001, xuu3001, hh) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(ty_[], he), gc) -> new_esEs(xuu40001, xuu3001, he) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], h)) -> new_esEs(xuu40000, xuu3000, h) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, hb), hc), gb, gc) -> new_esEs3(xuu40000, xuu3000, hb, hc) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(app(ty_@2, bad), bae), gc) -> new_esEs3(xuu40001, xuu3001, bad, bae) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(ty_Maybe, bba)) -> new_esEs1(xuu40002, xuu3002, bba) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_[], df)) -> new_esEs(xuu40000, xuu3000, df) new_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_@2, fg), fh)) -> new_esEs3(xuu40000, xuu3000, fg, fh) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], ga), gb, gc) -> new_esEs(xuu40000, xuu3000, ga) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bcc), bbh) -> new_esEs1(xuu40000, xuu3000, bcc) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(xuu40000, xuu3000, cg, da, db) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(xuu40001, xuu3001, baa, bab, bac) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xuu40001, xuu3001, bea, beb) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_Maybe, bde)) -> new_esEs1(xuu40001, xuu3001, bde) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(xuu40000, xuu3000, dc, dd) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(xuu40000, xuu3000, gg, gh, ha) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(xuu40000, xuu3000, ee, ef) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(app(ty_Either, hf), hg), gc) -> new_esEs0(xuu40001, xuu3001, hf, hg) new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu40000, xuu3000, cd, ce) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(app(ty_Either, bag), bah)) -> new_esEs0(xuu40002, xuu3002, bag, bah) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, gd), ge), gb, gc) -> new_esEs0(xuu40000, xuu3000, gd, ge) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(xuu40000, xuu3000, bcg, bch) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_[], bdb)) -> new_esEs(xuu40001, xuu3001, bdb) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(xuu40000, xuu3000, bcd, bce, bcf) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_Maybe, ea)) -> new_esEs1(xuu40000, xuu3000, ea) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu40000, xuu3000, ba, bb) new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_[], eg)) -> new_esEs(xuu40000, xuu3000, eg) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bbg), bbh) -> new_esEs(xuu40000, xuu3000, bbg) new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xuu40000, xuu3000, eb, ec, ed) new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xuu40002, xuu3002, bbb, bbc, bbd) new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_Maybe, fb)) -> new_esEs1(xuu40000, xuu3000, fb) new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xuu40001, xuu3001, bdf, bdg, bdh) new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(xuu40000, xuu3000, bd, be, bf) new_esEs1(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(xuu40000, xuu3000, fc, fd, ff) new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], cb), cc) -> new_esEs(xuu40000, xuu3000, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_Either, eh), fa)) -> new_esEs0(xuu40000, xuu3000, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu40000), Just(xuu3000), app(app(ty_@2, fg), fh)) -> new_esEs3(xuu40000, xuu3000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_Maybe, fb)) -> new_esEs1(xuu40000, xuu3000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(xuu40000, xuu3000, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(xuu40000), Just(xuu3000), app(ty_[], eg)) -> new_esEs(xuu40000, xuu3000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu40000, xuu3000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(ty_@2, bg), bh)) -> new_esEs3(xuu40000, xuu3000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_Maybe, bc)) -> new_esEs1(xuu40000, xuu3000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(xuu40000, xuu3000, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu40000, xuu3000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu40000, xuu3000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(xuu40000, xuu3000, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu40001, xuu3001, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(app(ty_Either, hf), hg), gc) -> new_esEs0(xuu40001, xuu3001, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(app(ty_Either, bag), bah)) -> new_esEs0(xuu40002, xuu3002, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_Either, gd), ge), gb, gc) -> new_esEs0(xuu40000, xuu3000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(ty_@2, dc), dd), cc) -> new_esEs3(xuu40000, xuu3000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(ty_@2, ee), ef)) -> new_esEs3(xuu40000, xuu3000, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cf), cc) -> new_esEs1(xuu40000, xuu3000, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_Maybe, ea)) -> new_esEs1(xuu40000, xuu3000, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(xuu40000, xuu3000, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(xuu40000, xuu3000, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(xuu40000), Right(xuu3000), de, app(ty_[], df)) -> new_esEs(xuu40000, xuu3000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu40000), Left(xuu3000), app(ty_[], cb), cc) -> new_esEs(xuu40000, xuu3000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(xuu40001, xuu3001, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(xuu40000, xuu3000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(app(ty_@2, bbe), bbf)) -> new_esEs3(xuu40002, xuu3002, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(ty_@2, hb), hc), gb, gc) -> new_esEs3(xuu40000, xuu3000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(app(ty_@2, bad), bae), gc) -> new_esEs3(xuu40001, xuu3001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_Maybe, bcc), bbh) -> new_esEs1(xuu40000, xuu3000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_Maybe, bde)) -> new_esEs1(xuu40001, xuu3001, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_Maybe, gf), gb, gc) -> new_esEs1(xuu40000, xuu3000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(ty_Maybe, hh), gc) -> new_esEs1(xuu40001, xuu3001, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(ty_Maybe, bba)) -> new_esEs1(xuu40002, xuu3002, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(xuu40000, xuu3000, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(xuu40001, xuu3001, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bda, app(ty_[], bdb)) -> new_esEs(xuu40001, xuu3001, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), app(ty_[], bbg), bbh) -> new_esEs(xuu40000, xuu3000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(xuu40001, xuu3001, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(xuu40000, xuu3000, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(xuu40002, xuu3002, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ca) -> new_esEs(xuu40001, xuu3001, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(xuu40000, xuu40001), :(xuu3000, xuu3001), app(ty_[], h)) -> new_esEs(xuu40000, xuu3000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, gb, app(ty_[], baf)) -> new_esEs(xuu40002, xuu3002, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), hd, app(ty_[], he), gc) -> new_esEs(xuu40001, xuu3001, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), app(ty_[], ga), gb, gc) -> new_esEs(xuu40000, xuu3000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu4000000), Succ(xuu300100)) -> new_primMulNat(xuu4000000, Succ(xuu300100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xuu4000000), Succ(xuu300100)) -> new_primMulNat(xuu4000000, Succ(xuu300100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare2(xuu30000, xuu31000, ea) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_Maybe, fb))) -> new_ltEs1(xuu30000, xuu31000, fb) new_ltEs0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, h), h) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_@2, bdc), bdd), baf, bca) -> new_lt0(xuu30000, xuu31000, bdc, bdd) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_@2, bah), bba))) -> new_ltEs(xuu30002, xuu31002, bah, bba) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_Either, bdf), bdg)), baf), bca)) -> new_lt2(xuu30000, xuu31000, bdf, bdg) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(ty_[], bbh), bca) -> new_lt(xuu30001, xuu31001, bbh) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_Maybe, bde), baf, bca) -> new_lt1(xuu30000, xuu31000, bde) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(ty_[], ce)) -> new_ltEs0(xuu30001, xuu31001, ce) new_ltEs1(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs3(xuu30000, xuu31000, ff, fg, fh) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(ty_[], bag)) -> new_ltEs0(xuu30002, xuu31002, bag) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_[], dg)), dh)) -> new_compare(xuu30000, xuu31000, dg) new_primCompAux(xuu30000, xuu31000, xuu150, app(ty_Maybe, bd)) -> new_compare2(xuu30000, xuu31000, bd) new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_@2, eh), fa))) -> new_ltEs(xuu30000, xuu31000, eh, fa) new_compare22(xuu30000, xuu31000, False, eb, ec) -> new_ltEs2(xuu30000, xuu31000, eb, ec) new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_[], eg))) -> new_ltEs0(xuu30000, xuu31000, eg) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_Maybe, ea)), dh)) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(app(ty_@2, bah), bba)) -> new_ltEs(xuu30002, xuu31002, bah, bba) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(xuu30002, xuu31002, bbe, bbf, bbg) new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(app(ty_@2, he), hf))) -> new_ltEs(xuu30000, xuu31000, he, hf) new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs3(xuu30000, xuu31000, bab, bac, bad) new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(app(ty_@2, he), hf)) -> new_ltEs(xuu30000, xuu31000, he, hf) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), dh)) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), dh)) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(app(ty_@2, bcb), bcc), bca) -> new_lt0(xuu30001, xuu31001, bcb, bcc) new_lt2(xuu30000, xuu31000, eb, ec) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs3(xuu30000, xuu31000, bab, bac, bad) new_compare21(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_primCompAux(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, h), h) new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_[], ga)), gb)) -> new_ltEs0(xuu30000, xuu31000, ga) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(app(app(ty_@3, dd), de), df))) -> new_ltEs3(xuu30001, xuu31001, dd, de, df) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_Either, eb), ec), dh) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(app(ty_@3, gh), ha), hb)), gb)) -> new_ltEs3(xuu30000, xuu31000, gh, ha, hb) new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(app(ty_@3, ff), fg), fh))) -> new_ltEs3(xuu30000, xuu31000, ff, fg, fh) new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(ty_[], hd))) -> new_ltEs0(xuu30000, xuu31000, hd) new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(ty_Maybe, hg)) -> new_ltEs1(xuu30000, xuu31000, hg) new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_@2, gc), gd)), gb)) -> new_ltEs(xuu30000, xuu31000, gc, gd) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(app(ty_Either, bce), bcf)), bca)) -> new_lt2(xuu30001, xuu31001, bce, bcf) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(app(ty_@2, cf), cg)) -> new_ltEs(xuu30001, xuu31001, cf, cg) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_lt3(xuu30000, xuu31000, bdh, bea, beb) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(ty_[], bag))) -> new_ltEs0(xuu30002, xuu31002, bag) new_compare20(xuu30000, xuu31000, False, cb, cc) -> new_ltEs(xuu30000, xuu31000, cb, cc) new_ltEs1(Just(xuu30000), Just(xuu31000), app(ty_Maybe, fb)) -> new_ltEs1(xuu30000, xuu31000, fb) new_ltEs2(Left(xuu30000), Left(xuu31000), app(ty_Maybe, ge), gb) -> new_ltEs1(xuu30000, xuu31000, ge) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_[], dg), dh) -> new_compare(xuu30000, xuu31000, dg) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_Either, bdf), bdg), baf, bca) -> new_lt2(xuu30000, xuu31000, bdf, bdg) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(app(ty_Either, db), dc))) -> new_ltEs2(xuu30001, xuu31001, db, dc) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_@2, cb), cc), dh) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_Either, fc), fd))) -> new_ltEs2(xuu30000, xuu31000, fc, fd) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(ty_Maybe, bbb)) -> new_ltEs1(xuu30002, xuu31002, bbb) new_compare21(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_compare(xuu30001, xuu31001, h) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(app(ty_@2, bcb), bcc)), bca)) -> new_lt0(xuu30001, xuu31001, bcb, bcc) new_compare3(xuu30000, xuu31000, eb, ec) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_[], bdb)), baf), bca)) -> new_lt(xuu30000, xuu31000, bdb) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(ty_Maybe, bcd), bca) -> new_lt1(xuu30001, xuu31001, bcd) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_[], bdb), baf, bca) -> new_lt(xuu30000, xuu31000, bdb) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bdh), bea), beb)), baf), bca)) -> new_lt3(xuu30000, xuu31000, bdh, bea, beb) new_lt0(xuu30000, xuu31000, cb, cc) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(ty_Maybe, da))) -> new_ltEs1(xuu30001, xuu31001, da) new_primCompAux(xuu30000, xuu31000, xuu150, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(xuu30000, xuu31000, bg, bh, ca) new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(ty_Maybe, hg))) -> new_ltEs1(xuu30000, xuu31000, hg) new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(app(ty_Either, hh), baa))) -> new_ltEs2(xuu30000, xuu31000, hh, baa) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(app(ty_Either, db), dc)) -> new_ltEs2(xuu30001, xuu31001, db, dc) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_Either, bbc), bbd))) -> new_ltEs2(xuu30002, xuu31002, bbc, bbd) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(app(ty_Either, bce), bcf), bca) -> new_lt2(xuu30001, xuu31001, bce, bcf) new_lt(xuu30000, xuu31000, dg) -> new_compare(xuu30000, xuu31000, dg) new_ltEs2(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, gh), ha), hb), gb) -> new_ltEs3(xuu30000, xuu31000, gh, ha, hb) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_Maybe, bde)), baf), bca)) -> new_lt1(xuu30000, xuu31000, bde) new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, h), h) new_compare4(xuu30000, xuu31000, ed, ee, ef) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(app(app(ty_@3, bcg), bch), bda)), bca)) -> new_lt3(xuu30001, xuu31001, bcg, bch, bda) new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs2(xuu30000, xuu31000, hh, baa) new_lt3(xuu30000, xuu31000, ed, ee, ef) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(app(ty_@3, ed), ee), ef), dh) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(app(ty_Either, bbc), bbd)) -> new_ltEs2(xuu30002, xuu31002, bbc, bbd) new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_Either, gf), gg)), gb)) -> new_ltEs2(xuu30000, xuu31000, gf, gg) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(ty_[], bbh)), bca)) -> new_lt(xuu30001, xuu31001, bbh) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(app(ty_@2, cf), cg))) -> new_ltEs(xuu30001, xuu31001, cf, cg) new_primCompAux(xuu30000, xuu31000, xuu150, app(ty_[], ba)) -> new_compare(xuu30000, xuu31000, ba) new_ltEs2(Left(xuu30000), Left(xuu31000), app(ty_[], ga), gb) -> new_ltEs0(xuu30000, xuu31000, ga) new_lt1(xuu30000, xuu31000, ea) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(xuu30001, xuu31001, dd, de, df) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_@2, bdc), bdd)), baf), bca)) -> new_lt0(xuu30000, xuu31000, bdc, bdd) new_ltEs0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare(xuu30001, xuu31001, h) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_Either, eb), ec)), dh)) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_Maybe, ea), dh) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare(xuu30001, xuu31001, h) new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(ty_[], ce))) -> new_ltEs0(xuu30001, xuu31001, ce) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs3(xuu30002, xuu31002, bbe, bbf, bbg) new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_Maybe, ge)), gb)) -> new_ltEs1(xuu30000, xuu31000, ge) new_compare1(xuu30000, xuu31000, cb, cc) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(ty_Maybe, bcd)), bca)) -> new_lt1(xuu30001, xuu31001, bcd) new_ltEs1(Just(xuu30000), Just(xuu31000), app(ty_[], eg)) -> new_ltEs0(xuu30000, xuu31000, eg) new_ltEs2(Left(xuu30000), Left(xuu31000), app(app(ty_Either, gf), gg), gb) -> new_ltEs2(xuu30000, xuu31000, gf, gg) new_primCompAux(xuu30000, xuu31000, xuu150, app(app(ty_Either, be), bf)) -> new_compare3(xuu30000, xuu31000, be, bf) new_ltEs2(Left(xuu30000), Left(xuu31000), app(app(ty_@2, gc), gd), gb) -> new_ltEs(xuu30000, xuu31000, gc, gd) new_ltEs1(Just(xuu30000), Just(xuu31000), app(app(ty_@2, eh), fa)) -> new_ltEs(xuu30000, xuu31000, eh, fa) new_primCompAux(xuu30000, xuu31000, xuu150, app(app(ty_@2, bb), bc)) -> new_compare1(xuu30000, xuu31000, bb, bc) new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(ty_Maybe, da)) -> new_ltEs1(xuu30001, xuu31001, da) new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(ty_Maybe, bbb))) -> new_ltEs1(xuu30002, xuu31002, bbb) new_compare23(xuu30000, xuu31000, False, ed, ee, ef) -> new_ltEs3(xuu30000, xuu31000, ed, ee, ef) new_ltEs1(Just(xuu30000), Just(xuu31000), app(app(ty_Either, fc), fd)) -> new_ltEs2(xuu30000, xuu31000, fc, fd) new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_lt3(xuu30001, xuu31001, bcg, bch, bda) new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(ty_[], hd)) -> new_ltEs0(xuu30000, xuu31000, hd) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), hc, app(app(ty_@2, he), hf)) -> new_ltEs5(xuu30000, xuu31000, he, hf) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, app(ty_Ratio, cha)) -> new_ltEs6(xuu30000, xuu31000, cha) new_lt8(xuu30000, xuu31000, app(ty_Ratio, bhb)) -> new_lt11(xuu30000, xuu31000, bhb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, eb, ec) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs7(xuu40000, xuu3000, cad, cae, caf) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, bhb)) -> new_esEs17(xuu30000, xuu31000, bhb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, gb) -> new_ltEs4(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_[], bfg)) -> new_esEs11(xuu40000, xuu3000, bfg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, cf), cg)) -> new_ltEs5(xuu30001, xuu31001, cf, cg) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cgh), gb) -> new_ltEs6(xuu30000, xuu31000, cgh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, bgf), bgg)) -> new_esEs4(xuu40000, xuu3000, bgf, bgg) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bcb), bcc)) -> new_lt12(xuu30001, xuu31001, bcb, bcc) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, eh), fa)) -> new_ltEs5(xuu30000, xuu31000, eh, fa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), cdf) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, cea) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bhd)) -> new_ltEs6(xuu30002, xuu31002, bhd) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], ceb), cea) -> new_esEs11(xuu40000, xuu3000, ceb) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, be), bf)) -> new_compare8(xuu30000, xuu31000, be, bf) new_esEs28(xuu40001, xuu3001, app(ty_[], dba)) -> new_esEs11(xuu40001, xuu3001, dba) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, db), dc)) -> new_ltEs16(xuu30001, xuu31001, db, dc) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bhc)) -> new_esEs17(xuu30001, xuu31001, bhc) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, gf), gg), gb) -> new_ltEs16(xuu30000, xuu31000, gf, gg) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs16(xuu30000, xuu31000, hh, baa) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, cba)) -> new_esEs17(xuu40000, xuu3000, cba) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bbh)) -> new_esEs11(xuu30001, xuu31001, bbh) new_compare14(xuu30000, xuu31000, True, ed, ee, ef) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), hc, gb) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, bdc), bdd)) -> new_esEs4(xuu30000, xuu31000, bdc, bdd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, cea) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs7(xuu30000, xuu31000, bdh, bea, beb) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, cb, cc) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, cb), cc)) -> new_lt12(xuu30000, xuu31000, cb, cc) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dcc) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, fc), fd)) -> new_ltEs16(xuu30000, xuu31000, fc, fd) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, cea) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cd), dh)) -> new_ltEs5(xuu3000, xuu3100, cd, dh) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(xuu30001, xuu31001, bcb, bcc) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, h) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, h)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), cfd, app(ty_Maybe, cfh)) -> new_esEs5(xuu40000, xuu3000, cfh) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs7(xuu30000, xuu31000, ed, ee, ef) new_ltEs6(xuu3000, xuu3100, bha) -> new_fsEs(new_compare12(xuu3000, xuu3100, bha)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bce), bcf)) -> new_lt16(xuu30001, xuu31001, bce, bcf) new_ltEs19(xuu30001, xuu31001, app(ty_[], ce)) -> new_ltEs13(xuu30001, xuu31001, ce) new_lt13(xuu30000, xuu31000, ea) -> new_esEs8(new_compare28(xuu30000, xuu31000, ea), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, dg) -> new_esEs8(new_compare0(xuu30000, xuu31000, dg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, cb, cc) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, dd), de), df)) -> new_ltEs8(xuu30001, xuu31001, dd, de, df) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], eg)) -> new_ltEs13(xuu30000, xuu31000, eg) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cee), cea) -> new_esEs5(xuu40000, xuu3000, cee) new_esEs11(:(xuu40000, xuu40001), [], bff) -> False new_esEs11([], :(xuu3000, xuu3001), bff) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, bdf), bdg)) -> new_lt16(xuu30000, xuu31000, bdf, bdg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, cbc), cbd)) -> new_esEs6(xuu40001, xuu3001, cbc, cbd) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, ge), gb) -> new_ltEs14(xuu30000, xuu31000, ge) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_lt11(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare12(xuu30000, xuu31000, cgg), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, da)) -> new_ltEs14(xuu30001, xuu31001, da) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, cea) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, cag), cah)) -> new_esEs4(xuu40000, xuu3000, cag, cah) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, eb, ec) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, eb, ec), eb, ec) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], ccd)) -> new_esEs11(xuu40002, xuu3002, ccd) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cgg)) -> new_esEs17(xuu30000, xuu31000, cgg) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, cac)) -> new_esEs5(xuu40000, xuu3000, cac) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, hc), gb)) -> new_ltEs16(xuu3000, xuu3100, hc, gb) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bec) -> True new_esEs15(True, True) -> True new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bec) -> False new_esEs5(Just(xuu40000), Nothing, bec) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, bde)) -> new_lt13(xuu30000, xuu31000, bde) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bee), bef)) -> new_esEs6(xuu40000, xuu3000, bee, bef) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bhe, bhf, bhg) -> new_asAs(new_esEs21(xuu40000, xuu3000, bhe), new_asAs(new_esEs22(xuu40001, xuu3001, bhf), new_esEs23(xuu40002, xuu3002, bhg))) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, eb, ec) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cec), ced), cea) -> new_esEs6(xuu40000, xuu3000, cec, ced) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs7(xuu40000, xuu3000, beh, bfa, bfb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs7(xuu40001, xuu3001, cbf, cbg, cbh) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, gb) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, eb, ec) -> new_esEs8(new_compare8(xuu30000, xuu31000, eb, ec), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, ccg)) -> new_esEs5(xuu40002, xuu3002, ccg) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, cdf)) -> new_ltEs14(xuu3000, xuu3100, cdf) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs8(xuu30000, xuu31000, ff, fg, fh) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, fb)) -> new_ltEs14(xuu30000, xuu31000, fb) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, eb, ec) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), cfd, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs7(xuu40000, xuu3000, cga, cgb, cgc) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, cea) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, cb, cc) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, cb, cc), cb, cc) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, cde)) -> new_esEs17(xuu40002, xuu3002, cde) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, app(ty_[], cfe)) -> new_esEs11(xuu40000, xuu3000, cfe) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, gb) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs7(xuu40002, xuu3002, cch, cda, cdb) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bcd)) -> new_lt13(xuu30001, xuu31001, bcd) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dcc) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, cbe)) -> new_esEs5(xuu40001, xuu3001, cbe) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, app(ty_Ratio, cgf)) -> new_esEs17(xuu40000, xuu3000, cgf) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], ga), gb) -> new_ltEs13(xuu30000, xuu31000, ga) new_lt8(xuu30000, xuu31000, app(app(ty_@2, bdc), bdd)) -> new_lt12(xuu30000, xuu31000, bdc, bdd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, beg)) -> new_esEs5(xuu40000, xuu3000, beg) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, ed, ee, ef) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, ed, ee, ef) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, cce), ccf)) -> new_esEs6(xuu40002, xuu3002, cce, ccf) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, cdc), cdd)) -> new_esEs4(xuu40002, xuu3002, cdc, cdd) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dcc) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dcc), dcc) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, caa), cab)) -> new_esEs6(xuu40000, xuu3000, caa, cab) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bed)) -> new_esEs11(xuu40000, xuu3000, bed) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, h) -> new_fsEs(new_compare0(xuu3000, xuu3100, h)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cfa), cfb), cea) -> new_esEs4(xuu40000, xuu3000, cfa, cfb) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dah)) -> new_esEs17(xuu40000, xuu3000, dah) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), cdh) -> new_asAs(new_esEs24(xuu40000, xuu3000, cdh), new_esEs25(xuu40001, xuu3001, cdh)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, cca), ccb)) -> new_esEs4(xuu40001, xuu3001, cca, ccb) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, app(app(ty_Either, cff), cfg)) -> new_esEs6(xuu40000, xuu3000, cff, cfg) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, dh) -> new_pePe(new_lt20(xuu30000, xuu31000, cd), new_asAs(new_esEs26(xuu30000, xuu31000, cd), new_ltEs19(xuu30001, xuu31001, dh))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bah), bba)) -> new_ltEs5(xuu30002, xuu31002, bah, bba) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], ba)) -> new_compare0(xuu30000, xuu31000, ba) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_lt8(xuu30000, xuu31000, app(ty_[], bdb)) -> new_lt10(xuu30000, xuu31000, bdb) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, ea)) -> new_lt13(xuu30000, xuu31000, ea) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, chc)) -> new_ltEs6(xuu30001, xuu31001, chc) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt18(xuu30000, xuu31000, ed, ee, ef) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, bde)) -> new_esEs5(xuu30000, xuu31000, bde) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs7(xuu40001, xuu3001, dbe, dbf, dbg) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, gb) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), h) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, cb, cc) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, chd)) -> new_compare12(xuu30000, xuu31000, chd) new_lt12(xuu30000, xuu31000, cb, cc) -> new_esEs8(new_compare17(xuu30000, xuu31000, cb, cc), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), hc, gb) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), cfd, cea) -> False new_esEs6(Right(xuu40000), Left(xuu3000), cfd, cea) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], cbb)) -> new_esEs11(xuu40001, xuu3001, cbb) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bcd)) -> new_esEs5(xuu30001, xuu31001, bcd) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, bfc), bfd)) -> new_esEs4(xuu40000, xuu3000, bfc, bfd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, cea) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, eb, ec) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, gh), ha), hb), gb) -> new_ltEs8(xuu30000, xuu31000, gh, ha, hb) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], dg)) -> new_lt10(xuu30000, xuu31000, dg) new_compare19(xuu30000, xuu31000, ed, ee, ef) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], h) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, ccc)) -> new_esEs17(xuu40001, xuu3001, ccc) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, ea) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, cdg)) -> new_ltEs6(xuu30000, xuu31000, cdg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt18(xuu30001, xuu31001, bcg, bch, bda) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, ed, ee, ef) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, eb), ec)) -> new_esEs6(xuu30000, xuu31000, eb, ec) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, bha)) -> new_ltEs6(xuu3000, xuu3100, bha) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, bae), baf), bca)) -> new_ltEs8(xuu3000, xuu3100, bae, baf, bca) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, bdf), bdg)) -> new_esEs6(xuu30000, xuu31000, bdf, bdg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, gb) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, bfe)) -> new_esEs17(xuu40000, xuu3000, bfe) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], chg)) -> new_esEs11(xuu40000, xuu3000, chg) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, bgb)) -> new_esEs5(xuu40000, xuu3000, bgb) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, bca) -> new_pePe(new_lt8(xuu30000, xuu31000, bae), new_asAs(new_esEs19(xuu30000, xuu31000, bae), new_pePe(new_lt7(xuu30001, xuu31001, baf), new_asAs(new_esEs20(xuu30001, xuu31001, baf), new_ltEs12(xuu30002, xuu31002, bca))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, ed, ee, ef) -> new_esEs8(new_compare19(xuu30000, xuu31000, ed, ee, ef), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], dg)) -> new_esEs11(xuu30000, xuu31000, dg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, app(app(ty_@2, cgd), cge)) -> new_esEs4(xuu40000, xuu3000, cgd, cge) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, bd)) -> new_compare28(xuu30000, xuu31000, bd) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, cb), cc)) -> new_esEs4(xuu30000, xuu31000, cb, cc) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bce), bcf)) -> new_esEs6(xuu30001, xuu31001, bce, bcf) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bff) -> new_asAs(new_esEs18(xuu40000, xuu3000, bff), new_esEs11(xuu40001, xuu3001, bff)) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, bdh), bea), beb)) -> new_lt18(xuu30000, xuu31000, bdh, bea, beb) new_ltEs14(Just(xuu30000), Nothing, cdf) -> False new_ltEs14(Nothing, Nothing, cdf) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs8(xuu30000, xuu31000, bab, bac, bad) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bbc), bbd)) -> new_ltEs16(xuu30002, xuu31002, bbc, bbd) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bhh)) -> new_esEs11(xuu40000, xuu3000, bhh) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, dbd)) -> new_esEs5(xuu40001, xuu3001, dbd) new_compare111(xuu117, xuu118, False, chb) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), che, chf) -> new_asAs(new_esEs27(xuu40000, xuu3000, che), new_esEs28(xuu40001, xuu3001, chf)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bag)) -> new_ltEs13(xuu30002, xuu31002, bag) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_ltEs20(xuu3000, xuu3100, app(ty_[], h)) -> new_ltEs13(xuu3000, xuu3100, h) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, app(ty_Maybe, hg)) -> new_ltEs14(xuu30000, xuu31000, hg) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, cfc), cea) -> new_esEs17(xuu40000, xuu3000, cfc) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs7(xuu30001, xuu31001, bcg, bch, bda) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], h) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bhc)) -> new_lt11(xuu30001, xuu31001, bhc) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bbh)) -> new_lt10(xuu30001, xuu31001, bbh) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, cea) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs7(xuu40000, xuu3000, dac, dad, dae) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, cb, cc) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, ea)) -> new_esEs5(xuu30000, xuu31000, ea) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, gc), gd), gb) -> new_ltEs5(xuu30000, xuu31000, gc, gd) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, h), h) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, chb) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, chh), daa)) -> new_esEs6(xuu40000, xuu3000, chh, daa) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, daf), dag)) -> new_esEs4(xuu40000, xuu3000, daf, dag) new_esEs19(xuu30000, xuu31000, app(ty_[], bdb)) -> new_esEs11(xuu30000, xuu31000, bdb) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, dcb)) -> new_esEs17(xuu40001, xuu3001, dcb) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cgg)) -> new_lt11(xuu30000, xuu31000, cgg) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs7(xuu40000, xuu3000, bgc, bgd, bge) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, gb) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, bg), bh), ca)) -> new_compare19(xuu30000, xuu31000, bg, bh, ca) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), hc, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, bfh), bga)) -> new_esEs6(xuu40000, xuu3000, bfh, bga) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, dbh), dca)) -> new_esEs4(xuu40001, xuu3001, dbh, dca) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, eb), ec)) -> new_lt16(xuu30000, xuu31000, eb, ec) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cef), ceg), ceh), cea) -> new_esEs7(xuu40000, xuu3000, cef, ceg, ceh) new_compare29(xuu300, xuu310, True, dcc) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bbb)) -> new_ltEs14(xuu30002, xuu31002, bbb) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dbb), dbc)) -> new_esEs6(xuu40001, xuu3001, dbb, dbc) new_esEs6(Right(xuu40000), Right(xuu3000), cfd, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, gb) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], bff) -> True new_ltEs16(Right(xuu30000), Right(xuu31000), hc, app(ty_[], hd)) -> new_ltEs13(xuu30000, xuu31000, hd) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, gb) -> new_ltEs10(xuu30000, xuu31000) new_asAs(False, xuu124) -> False new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, cea) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, bgh)) -> new_esEs17(xuu40000, xuu3000, bgh) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dab)) -> new_esEs5(xuu40000, xuu3000, dab) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dcc) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs8(xuu30002, xuu31002, bbe, bbf, bbg) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, bb), bc)) -> new_compare17(xuu30000, xuu31000, bb, bc) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs8(EQ, EQ) new_lt7(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_compare24(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_@0) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_ltEs17(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat1(Zero, Zero) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs11([], [], x0) new_esEs22(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_compare111(x0, x1, True, x2) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare11(x0, x1) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs14(Just(x0), Just(x1), ty_Double) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_esEs5(Just(x0), Nothing, x1) new_ltEs16(Left(x0), Right(x1), x2, x3) new_lt14(x0, x1) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, True) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, x2, x3) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Nothing, x1) new_ltEs12(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_esEs15(False, False) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare25(x0, x1, False, x2, x3) new_esEs9(Double(x0, x1), Double(x2, x3)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare0([], [], x0) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs18(x0, x1, ty_Ordering) new_esEs11([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_@0) new_ltEs14(Nothing, Just(x0), x1) new_compare31(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs18(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs28(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_@0) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs11(:(x0, x1), :(x2, x3), x4) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare0([], :(x0, x1), x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare24(x0, x1, True, x2, x3) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, LT) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_compare25(x0, x1, True, x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(True, True) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt20(x0, x1, ty_@0) new_compare31(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Nothing, Nothing, x0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt4(x0, x1) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, False, x2, x3) new_lt20(x0, x1, app(ty_Ratio, x2)) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Char) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_compare19(x0, x1, x2, x3, x4) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_lt10(x0, x1, x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Char) new_lt7(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, True, x2, x3, x4) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Ordering) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_compare0(:(x0, x1), [], x2) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs23(x0, x1, ty_Int) new_compare29(Just(x0), Just(x1), False, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_esEs23(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1) new_not(True) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt15(x0, x1) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare110(x0, x1, False) new_lt5(x0, x1) new_lt13(x0, x1, x2) new_esEs22(x0, x1, ty_Bool) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs5(Nothing, Nothing, x0) new_esEs18(x0, x1, ty_Integer) new_ltEs18(True, False) new_ltEs18(False, True) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_Ordering) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs14(Just(x0), Just(x1), ty_Float) new_lt16(x0, x1, x2, x3) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(x0, x1, x2) new_primMulNat0(Succ(x0), Zero) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare31(x0, x1, ty_Integer) new_compare13(Char(x0), Char(x1)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs28(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare29(Nothing, Nothing, False, x0) new_primPlusNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_@0) new_compare28(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs26(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2, x3, x4) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_lt20(x0, x1, app(ty_[], x2)) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_compare10(x0, x1, True, x2, x3) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Char) new_compare29(Nothing, Just(x0), False, x1) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, ty_Bool) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1) new_ltEs14(Just(x0), Just(x1), ty_Char) new_lt18(x0, x1, x2, x3, x4) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_not(False) new_esEs21(x0, x1, ty_Char) new_ltEs10(x0, x1) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_compare14(x0, x1, False, x2, x3, x4) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Char) new_compare16(x0, x1, True) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1, x2) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, ty_Char) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, x2, x3) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1, x2, x3) new_compare29(x0, x1, True, x2) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(EQ, GT) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_Int) new_esEs18(x0, x1, ty_Float) new_compare18(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Double) new_lt11(x0, x1, x2) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCompAux(xuu30000, xuu31000, xuu150, app(ty_Maybe, bd)) -> new_compare2(xuu30000, xuu31000, bd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_Maybe, ea)), dh)) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs1(Just(xuu30000), Just(xuu31000), app(ty_[], eg)) -> new_ltEs0(xuu30000, xuu31000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs3(xuu30000, xuu31000, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(xuu30000, xuu31000, cb, cc) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_Maybe, ea), dh) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(ty_[], ce)) -> new_ltEs0(xuu30001, xuu31001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(xuu30001, xuu31001, dd, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_lt2(xuu30000, xuu31000, eb, ec) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt(xuu30000, xuu31000, dg) -> new_compare(xuu30000, xuu31000, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt1(xuu30000, xuu31000, ea) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare2(xuu30000, xuu31000, ea) -> new_compare21(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, ea), ea) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs1(Just(xuu30000), Just(xuu31000), app(app(ty_@2, eh), fa)) -> new_ltEs(xuu30000, xuu31000, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(app(ty_@2, cf), cg)) -> new_ltEs(xuu30001, xuu31001, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Just(xuu30000), Just(xuu31000), app(ty_Maybe, fb)) -> new_ltEs1(xuu30000, xuu31000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(xuu30000), Just(xuu31000), app(app(ty_Either, fc), fd)) -> new_ltEs2(xuu30000, xuu31000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(ty_[], bag)) -> new_ltEs0(xuu30002, xuu31002, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(xuu30002, xuu31002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(ty_Maybe, da)) -> new_ltEs1(xuu30001, xuu31001, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(app(ty_@2, bah), bba)) -> new_ltEs(xuu30002, xuu31002, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(ty_Maybe, bbb)) -> new_ltEs1(xuu30002, xuu31002, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_primCompAux(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare(xuu30001, xuu31001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_primCompAux(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(xuu30000, xuu30001), :(xuu31000, xuu31001), h) -> new_compare(xuu30001, xuu31001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_Either, eb), ec)), dh)) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare23(xuu30000, xuu31000, False, ed, ee, ef) -> new_ltEs3(xuu30000, xuu31000, ed, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_Either, eb), ec), dh) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare20(xuu30000, xuu31000, False, cb, cc) -> new_ltEs(xuu30000, xuu31000, cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare3(xuu30000, xuu31000, eb, ec) -> new_compare22(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, eb, ec), eb, ec) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cd, app(app(ty_Either, db), dc)) -> new_ltEs2(xuu30001, xuu31001, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, baf, app(app(ty_Either, bbc), bbd)) -> new_ltEs2(xuu30002, xuu31002, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(xuu30000, xuu31000, False, eb, ec) -> new_ltEs2(xuu30000, xuu31000, eb, ec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt3(xuu30000, xuu31000, ed, ee, ef) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), dh)) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(ty_@2, cb), cc), dh) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare1(xuu30000, xuu31000, cb, cc) -> new_compare20(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare4(xuu30000, xuu31000, ed, ee, ef) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_primCompAux(xuu30000, xuu31000, xuu150, app(app(ty_Either, be), bf)) -> new_compare3(xuu30000, xuu31000, be, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(xuu30000, xuu31000, xuu150, app(ty_[], ba)) -> new_compare(xuu30000, xuu31000, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(ty_[], dg), dh) -> new_compare(xuu30000, xuu31000, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), app(app(app(ty_@3, ed), ee), ef), dh) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_primCompAux(xuu30000, xuu31000, xuu150, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(xuu30000, xuu31000, bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(xuu30000, xuu31000, xuu150, app(app(ty_@2, bb), bc)) -> new_compare1(xuu30000, xuu31000, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), dh)) -> new_compare23(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, ed, ee, ef), ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_[], eg))) -> new_ltEs0(xuu30000, xuu31000, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_[], ga)), gb)) -> new_ltEs0(xuu30000, xuu31000, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(ty_[], hd))) -> new_ltEs0(xuu30000, xuu31000, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(ty_[], bag))) -> new_ltEs0(xuu30002, xuu31002, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(ty_[], ce))) -> new_ltEs0(xuu30001, xuu31001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs3(xuu30000, xuu31000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(app(app(ty_@3, dd), de), df))) -> new_ltEs3(xuu30001, xuu31001, dd, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(app(ty_@3, gh), ha), hb)), gb)) -> new_ltEs3(xuu30000, xuu31000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(app(ty_@3, ff), fg), fh))) -> new_ltEs3(xuu30000, xuu31000, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs3(xuu30002, xuu31002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_@2, bah), bba))) -> new_ltEs(xuu30002, xuu31002, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_@2, eh), fa))) -> new_ltEs(xuu30000, xuu31000, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(app(ty_@2, he), hf))) -> new_ltEs(xuu30000, xuu31000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_@2, gc), gd)), gb)) -> new_ltEs(xuu30000, xuu31000, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(app(ty_@2, cf), cg))) -> new_ltEs(xuu30001, xuu31001, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(ty_Maybe, fb))) -> new_ltEs1(xuu30000, xuu31000, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(ty_Maybe, da))) -> new_ltEs1(xuu30001, xuu31001, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(ty_Maybe, hg))) -> new_ltEs1(xuu30000, xuu31000, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(ty_Maybe, ge)), gb)) -> new_ltEs1(xuu30000, xuu31000, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(ty_Maybe, bbb))) -> new_ltEs1(xuu30002, xuu31002, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, cd), app(app(ty_Either, db), dc))) -> new_ltEs2(xuu30001, xuu31001, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Just(xuu30000)), Just(Just(xuu31000)), False, app(ty_Maybe, app(app(ty_Either, fc), fd))) -> new_ltEs2(xuu30000, xuu31000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Right(xuu30000)), Just(Right(xuu31000)), False, app(app(ty_Either, hc), app(app(ty_Either, hh), baa))) -> new_ltEs2(xuu30000, xuu31000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_Either, bbc), bbd))) -> new_ltEs2(xuu30002, xuu31002, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(Left(xuu30000)), Just(Left(xuu31000)), False, app(app(ty_Either, app(app(ty_Either, gf), gg)), gb)) -> new_ltEs2(xuu30000, xuu31000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_Either, bdf), bdg)), baf), bca)) -> new_lt2(xuu30000, xuu31000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(app(ty_Either, bce), bcf)), bca)) -> new_lt2(xuu30001, xuu31001, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(app(ty_@2, bcb), bcc)), bca)) -> new_lt0(xuu30001, xuu31001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(ty_@2, bdc), bdd)), baf), bca)) -> new_lt0(xuu30000, xuu31000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_[], bdb)), baf), bca)) -> new_lt(xuu30000, xuu31000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(ty_[], bbh)), bca)) -> new_lt(xuu30001, xuu31001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@2(xuu30000, xuu30001)), Just(@2(xuu31000, xuu31001)), False, app(app(ty_@2, app(ty_[], dg)), dh)) -> new_compare(xuu30000, xuu31000, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(:(xuu30000, xuu30001)), Just(:(xuu31000, xuu31001)), False, app(ty_[], h)) -> new_compare(xuu30001, xuu31001, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bdh), bea), beb)), baf), bca)) -> new_lt3(xuu30000, xuu31000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(app(app(ty_@3, bcg), bch), bda)), bca)) -> new_lt3(xuu30001, xuu31001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, app(ty_Maybe, bde)), baf), bca)) -> new_lt1(xuu30000, xuu31000, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(@3(xuu30000, xuu30001, xuu30002)), Just(@3(xuu31000, xuu31001, xuu31002)), False, app(app(app(ty_@3, bae), app(ty_Maybe, bcd)), bca)) -> new_lt1(xuu30001, xuu31001, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(xuu30000), Left(xuu31000), app(ty_[], ga), gb) -> new_ltEs0(xuu30000, xuu31000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(ty_[], hd)) -> new_ltEs0(xuu30000, xuu31000, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs3(xuu30000, xuu31000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, gh), ha), hb), gb) -> new_ltEs3(xuu30000, xuu31000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(app(ty_@2, he), hf)) -> new_ltEs(xuu30000, xuu31000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(xuu30000), Left(xuu31000), app(app(ty_@2, gc), gd), gb) -> new_ltEs(xuu30000, xuu31000, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_Either, bdf), bdg), baf, bca) -> new_lt2(xuu30000, xuu31000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(app(ty_Either, bce), bcf), bca) -> new_lt2(xuu30001, xuu31001, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(ty_@2, bdc), bdd), baf, bca) -> new_lt0(xuu30000, xuu31000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(app(ty_@2, bcb), bcc), bca) -> new_lt0(xuu30001, xuu31001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(ty_[], bbh), bca) -> new_lt(xuu30001, xuu31001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_[], bdb), baf, bca) -> new_lt(xuu30000, xuu31000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_lt3(xuu30000, xuu31000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_lt3(xuu30001, xuu31001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), app(ty_Maybe, bde), baf, bca) -> new_lt1(xuu30000, xuu31000, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), bae, app(ty_Maybe, bcd), bca) -> new_lt1(xuu30001, xuu31001, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(ty_Maybe, hg)) -> new_ltEs1(xuu30000, xuu31000, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(xuu30000), Left(xuu31000), app(ty_Maybe, ge), gb) -> new_ltEs1(xuu30000, xuu31000, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(xuu30000), Right(xuu31000), hc, app(app(ty_Either, hh), baa)) -> new_ltEs2(xuu30000, xuu31000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(xuu30000), Left(xuu31000), app(app(ty_Either, gf), gg), gb) -> new_ltEs2(xuu30000, xuu31000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat(xuu400000, xuu30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu25200), Succ(xuu8600)) -> new_primMinusNat(xuu25200, xuu8600) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(xuu25200), Succ(xuu8600)) -> new_primMinusNat(xuu25200, xuu8600) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu25200), Succ(xuu8600)) -> new_primPlusNat(xuu25200, xuu8600) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(xuu25200), Succ(xuu8600)) -> new_primPlusNat(xuu25200, xuu8600) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Nothing, xuu401, h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), LT), h, ba) new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), False, h), GT), h, ba) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Just(xuu4000), xuu401, h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), False, h), LT), h, ba) new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Nothing, True, h), GT), h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (43) Complex Obligation (AND) ---------------------------------------- (44) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), LT), h, ba) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Just(xuu4000), xuu401, h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (45) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), LT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, LT), h, ba),new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, LT), h, ba)) ---------------------------------------- (46) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Just(xuu4000), xuu401, h, ba) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, LT), h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (47) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. ---------------------------------------- (48) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, LT), h, ba) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (49) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, LT), h, ba) at position [6] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba),new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba)) ---------------------------------------- (50) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (51) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Nothing, False, h), GT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: (new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, GT), h, ba),new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, GT), h, ba)) ---------------------------------------- (52) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, GT), h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (53) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(GT, GT), h, ba) at position [6] we obtained the following new rules [LPAR04]: (new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba),new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba)) ---------------------------------------- (54) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, h), h), LT), h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, bb), bb), GT), bb, bc) new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) 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_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu17, Just(xuu19), xuu20, bb, bc) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C21(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, False, bb, bc) -> new_addToFM_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, new_esEs8(new_compare29(Just(xuu19), Just(xuu14), new_esEs30(xuu19, xuu14, 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_C12(xuu14, xuu15, xuu16, xuu17, xuu18, xuu19, xuu20, True, bb, bc) -> new_addToFM_C(xuu18, Just(xuu19), xuu20, bb, bc) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Just(xuu4000), xuu401, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C21(xuu300, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, new_esEs8(new_compare29(Just(xuu4000), Just(xuu300), new_esEs29(xuu4000, xuu300, 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, xuu31, xuu32, xuu33, xuu34), Just(xuu4000), xuu401, h, ba) -> new_addToFM_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, 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_C20(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, False, h, ba) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu401, 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 ---------------------------------------- (56) YES ---------------------------------------- (57) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), False, h), LT), h, ba) new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Nothing, xuu401, h, ba) new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Nothing, True, h), GT), h, ba) new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), False, h), GT), h, ba) new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) The TRS R consists of the following rules: new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_@2, cfd), cfe)) -> new_ltEs5(xuu30000, xuu31000, cfd, cfe) new_compare11(xuu30000, xuu31000) -> new_compare27(xuu30000, xuu31000, new_esEs8(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Ratio, cfc)) -> new_ltEs6(xuu30000, xuu31000, cfc) new_lt8(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_lt11(xuu30000, xuu31000, hb) new_esEs21(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3000)), Pos(xuu310)) -> LT new_primPlusNat0(Zero, Zero) -> Zero new_lt7(xuu30001, xuu31001, ty_Ordering) -> new_lt6(xuu30001, xuu31001) new_pePe(True, xuu149) -> True new_compare8(xuu30000, xuu31000, bd, be) -> new_compare24(xuu30000, xuu31000, new_esEs6(xuu30000, xuu31000, bd, be), bd, be) new_esEs30(xuu19, xuu14, ty_Ordering) -> new_esEs8(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3100))) -> new_primCmpNat0(Zero, xuu3100) new_esEs21(xuu40000, xuu3000, app(app(app(ty_@3, bec), bed), bee)) -> new_esEs7(xuu40000, xuu3000, bec, bed, bee) new_esEs19(xuu30000, xuu31000, app(ty_Ratio, hb)) -> new_esEs17(xuu30000, xuu31000, hb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Char) -> new_esEs12(xuu4000, xuu300) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_@0, cdf) -> new_ltEs4(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, app(app(ty_@2, gc), gd)) -> new_esEs4(xuu19, xuu14, gc, gd) new_esEs18(xuu40000, xuu3000, app(ty_[], dc)) -> new_esEs11(xuu40000, xuu3000, dc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(xuu3100))) -> GT new_esEs21(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs19(xuu30001, xuu31001, app(app(ty_@2, chb), chc)) -> new_ltEs5(xuu30001, xuu31001, chb, chc) new_ltEs18(True, False) -> False new_lt7(xuu30001, xuu31001, ty_Float) -> new_lt14(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Ratio, cdh), cdf) -> new_ltEs6(xuu30000, xuu31000, cdh) new_ltEs11(GT, EQ) -> False new_primMulNat0(Succ(xuu4000000), Succ(xuu300100)) -> new_primPlusNat1(new_primMulNat0(xuu4000000, Succ(xuu300100)), xuu300100) new_esEs18(xuu40000, xuu3000, app(app(ty_@2, eb), ec)) -> new_esEs4(xuu40000, xuu3000, eb, ec) new_lt7(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_lt12(xuu30001, xuu31001, bae, baf) new_esEs18(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Double) -> new_esEs9(xuu40002, xuu3002) new_primCmpNat1(Succ(xuu30000), Succ(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_@2, bhh), caa)) -> new_ltEs5(xuu30000, xuu31000, bhh, caa) new_esEs15(False, False) -> True new_lt7(xuu30001, xuu31001, ty_Bool) -> new_lt4(xuu30001, xuu31001) new_ltEs14(Nothing, Just(xuu31000), bhe) -> True new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Integer, bch) -> new_esEs13(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(xuu400000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu30000))) -> False new_ltEs12(xuu30002, xuu31002, app(ty_Ratio, bbf)) -> new_ltEs6(xuu30002, xuu31002, bbf) new_fsEs(xuu134) -> new_not(new_esEs8(xuu134, GT)) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_[], cba), bch) -> new_esEs11(xuu40000, xuu3000, cba) new_ltEs20(xuu3000, xuu3100, ty_@0) -> new_ltEs4(xuu3000, xuu3100) new_compare31(xuu30000, xuu31000, app(app(ty_Either, dah), dba)) -> new_compare8(xuu30000, xuu31000, dah, dba) new_esEs28(xuu40001, xuu3001, app(ty_[], dcg)) -> new_esEs11(xuu40001, xuu3001, dcg) new_ltEs4(xuu3000, xuu3100) -> new_fsEs(new_compare9(xuu3000, xuu3100)) new_esEs8(EQ, EQ) -> True new_ltEs19(xuu30001, xuu31001, app(app(ty_Either, che), chf)) -> new_ltEs16(xuu30001, xuu31001, che, chf) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_primEqNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) new_esEs30(xuu19, xuu14, ty_Char) -> new_esEs12(xuu19, xuu14) new_esEs20(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_esEs17(xuu30001, xuu31001, bad) new_esEs28(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_Either, ced), cee), cdf) -> new_ltEs16(xuu30000, xuu31000, ced, cee) new_not(True) -> False new_esEs16(Float(xuu40000, xuu40001), Float(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_primCompAux00(xuu164, LT) -> LT new_esEs18(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_esEs25(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(ty_Either, cfg), cfh)) -> new_ltEs16(xuu30000, xuu31000, cfg, cfh) new_esEs21(xuu40000, xuu3000, app(ty_Ratio, beh)) -> new_esEs17(xuu40000, xuu3000, beh) new_esEs19(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(ty_[], bac)) -> new_esEs11(xuu30001, xuu31001, bac) new_compare14(xuu30000, xuu31000, True, eh, fa, fb) -> LT new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Right(xuu31000), cfa, cdf) -> True new_esEs19(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_esEs4(xuu30000, xuu31000, hc, hd) new_esEs21(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Float, bch) -> new_esEs16(xuu40000, xuu3000) new_primEqNat0(Succ(xuu400000), Zero) -> False new_primEqNat0(Zero, Succ(xuu30000)) -> False new_esEs19(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs7(xuu30000, xuu31000, hh, baa, bab) new_esEs14(@0, @0) -> True new_esEs27(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_compare10(xuu30000, xuu31000, True, ee, ef) -> LT new_esEs19(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_@0) -> new_ltEs4(xuu30001, xuu31001) new_lt20(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_lt12(xuu30000, xuu31000, ee, ef) new_primCompAux00(xuu164, GT) -> GT new_primCmpInt(Neg(Zero), Neg(Succ(xuu3100))) -> new_primCmpNat2(xuu3100, Zero) new_compare29(Nothing, Just(xuu3100), False, dea) -> LT new_compare110(xuu30000, xuu31000, True) -> LT new_esEs23(xuu40002, xuu3002, ty_Int) -> new_esEs10(xuu40002, xuu3002) new_esEs20(xuu30001, xuu31001, ty_Ordering) -> new_esEs8(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Bool) -> new_ltEs18(xuu30002, xuu31002) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Double) -> new_esEs9(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(ty_Either, cac), cad)) -> new_ltEs16(xuu30000, xuu31000, cac, cad) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_primCmpInt(Pos(Succ(xuu3000)), Neg(xuu310)) -> GT new_esEs28(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Bool, bch) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(app(ty_@2, cge), cgf)) -> new_ltEs5(xuu3000, xuu3100, cge, cgf) new_esEs20(xuu30001, xuu31001, app(app(ty_@2, bae), baf)) -> new_esEs4(xuu30001, xuu31001, bae, baf) new_ltEs7(xuu3000, xuu3100) -> new_fsEs(new_compare13(xuu3000, xuu3100)) new_lt7(xuu30001, xuu31001, ty_@0) -> new_lt9(xuu30001, xuu31001) new_ltEs11(GT, LT) -> False new_ltEs20(xuu3000, xuu3100, ty_Double) -> new_ltEs10(xuu3000, xuu3100) new_compare16(xuu30000, xuu31000, False) -> GT new_ltEs12(xuu30002, xuu31002, ty_Ordering) -> new_ltEs11(xuu30002, xuu31002) new_esEs26(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_primCompAux0(xuu30000, xuu31000, xuu150, dab) -> new_primCompAux00(xuu150, new_compare31(xuu30000, xuu31000, dab)) new_ltEs11(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Maybe, ccf)) -> new_esEs5(xuu40000, xuu3000, ccf) new_esEs26(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs7(xuu30000, xuu31000, eh, fa, fb) new_ltEs6(xuu3000, xuu3100, eg) -> new_fsEs(new_compare12(xuu3000, xuu3100, eg)) new_primCmpNat0(Succ(xuu3100), xuu3000) -> new_primCmpNat1(xuu3100, xuu3000) new_compare210(xuu30000, xuu31000, True) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Double) -> new_ltEs10(xuu30001, xuu31001) new_esEs28(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_lt7(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_lt16(xuu30001, xuu31001, bah, bba) new_ltEs19(xuu30001, xuu31001, app(ty_[], cgh)) -> new_ltEs13(xuu30001, xuu31001, cgh) new_lt13(xuu30000, xuu31000, cah) -> new_esEs8(new_compare28(xuu30000, xuu31000, cah), LT) new_ltEs19(xuu30001, xuu31001, ty_Char) -> new_ltEs7(xuu30001, xuu31001) new_pePe(False, xuu149) -> xuu149 new_esEs27(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_lt10(xuu30000, xuu31000, cgg) -> new_esEs8(new_compare0(xuu30000, xuu31000, cgg), LT) new_lt14(xuu30000, xuu31000) -> new_esEs8(new_compare30(xuu30000, xuu31000), LT) new_compare25(xuu30000, xuu31000, True, ee, ef) -> EQ new_ltEs19(xuu30001, xuu31001, app(app(app(ty_@3, chg), chh), daa)) -> new_ltEs8(xuu30001, xuu31001, chg, chh, daa) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_[], bhf)) -> new_ltEs13(xuu30000, xuu31000, bhf) new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Maybe, cbd), bch) -> new_esEs5(xuu40000, xuu3000, cbd) new_esEs11(:(xuu40000, xuu40001), [], db) -> False new_esEs11([], :(xuu3000, xuu3001), db) -> False new_lt8(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_lt16(xuu30000, xuu31000, hf, hg) new_esEs22(xuu40001, xuu3001, app(app(ty_Either, bfb), bfc)) -> new_esEs6(xuu40001, xuu3001, bfb, bfc) new_esEs20(xuu30001, xuu31001, ty_Int) -> new_esEs10(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_Maybe, cec), cdf) -> new_ltEs14(xuu30000, xuu31000, cec) new_lt8(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_ltEs18(False, False) -> True new_esEs29(xuu4000, xuu300, ty_Integer) -> new_esEs13(xuu4000, xuu300) new_lt11(xuu30000, xuu31000, cde) -> new_esEs8(new_compare12(xuu30000, xuu31000, cde), LT) new_ltEs19(xuu30001, xuu31001, app(ty_Maybe, chd)) -> new_ltEs14(xuu30001, xuu31001, chd) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Ordering, bch) -> new_esEs8(xuu40000, xuu3000) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare31(xuu30000, xuu31000, ty_Bool) -> new_compare7(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Bool) -> new_esEs15(xuu19, xuu14) new_esEs19(xuu30000, xuu31000, ty_Float) -> new_esEs16(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(app(ty_@2, bef), beg)) -> new_esEs4(xuu40000, xuu3000, bef, beg) new_primEqInt(Pos(Zero), Neg(Succ(xuu30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu30000))) -> False new_esEs19(xuu30000, xuu31000, ty_@0) -> new_esEs14(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, False, bd, be) -> new_compare18(xuu30000, xuu31000, new_ltEs16(xuu30000, xuu31000, bd, be), bd, be) new_esEs21(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, app(ty_[], bgc)) -> new_esEs11(xuu40002, xuu3002, bgc) new_esEs26(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_esEs17(xuu30000, xuu31000, cde) new_compare31(xuu30000, xuu31000, ty_Int) -> new_compare6(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, app(ty_Maybe, beb)) -> new_esEs5(xuu40000, xuu3000, beb) new_ltEs20(xuu3000, xuu3100, app(app(ty_Either, cfa), cdf)) -> new_ltEs16(xuu3000, xuu3100, cfa, cdf) new_esEs30(xuu19, xuu14, ty_Int) -> new_esEs10(xuu19, xuu14) new_lt8(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_esEs26(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_esEs5(Nothing, Nothing, bf) -> True new_esEs15(True, True) -> True new_esEs29(xuu4000, xuu300, ty_Bool) -> new_esEs15(xuu4000, xuu300) new_primEqInt(Neg(Succ(xuu400000)), Neg(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs5(Nothing, Just(xuu3000), bf) -> False new_esEs5(Just(xuu40000), Nothing, bf) -> False new_lt8(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_lt13(xuu30000, xuu31000, he) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3100))) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_Either, bh), ca)) -> new_esEs6(xuu40000, xuu3000, bh, ca) new_esEs20(xuu30001, xuu31001, ty_Float) -> new_esEs16(xuu30001, xuu31001) new_primMulInt(Pos(xuu400000), Pos(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_esEs7(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bda, bdb, bdc) -> new_asAs(new_esEs21(xuu40000, xuu3000, bda), new_asAs(new_esEs22(xuu40001, xuu3001, bdb), new_esEs23(xuu40002, xuu3002, bdc))) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_compare18(xuu30000, xuu31000, False, bd, be) -> GT new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_Either, cbb), cbc), bch) -> new_esEs6(xuu40000, xuu3000, cbb, cbc) new_lt17(xuu300, xuu310) -> new_esEs8(new_compare6(xuu300, xuu310), LT) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs7(xuu40000, xuu3000, cc, cd, ce) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, ty_Int) -> new_esEs10(xuu4000, xuu300) new_esEs22(xuu40001, xuu3001, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs7(xuu40001, xuu3001, bfe, bff, bfg) new_lt4(xuu30000, xuu31000) -> new_esEs8(new_compare7(xuu30000, xuu31000), LT) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_primMulNat0(Succ(xuu4000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu300100)) -> Zero new_esEs26(xuu30000, xuu31000, ty_Bool) -> new_esEs15(xuu30000, xuu31000) new_compare30(Float(xuu30000, Pos(xuu300010)), Float(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs20(xuu3000, xuu3100, ty_Bool) -> new_ltEs18(xuu3000, xuu3100) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Bool, cdf) -> new_ltEs18(xuu30000, xuu31000) new_lt16(xuu30000, xuu31000, bd, be) -> new_esEs8(new_compare8(xuu30000, xuu31000, bd, be), LT) new_esEs23(xuu40002, xuu3002, app(ty_Maybe, bgf)) -> new_esEs5(xuu40002, xuu3002, bgf) new_esEs18(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs17(xuu3000, xuu3100) -> new_fsEs(new_compare6(xuu3000, xuu3100)) new_ltEs20(xuu3000, xuu3100, app(ty_Maybe, bhe)) -> new_ltEs14(xuu3000, xuu3100, bhe) new_primCmpNat0(Zero, xuu3000) -> LT new_primPlusNat0(Succ(xuu25200), Zero) -> Succ(xuu25200) new_primPlusNat0(Zero, Succ(xuu8600)) -> Succ(xuu8600) new_ltEs14(Just(xuu30000), Just(xuu31000), app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs8(xuu30000, xuu31000, cae, caf, cag) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Maybe, cab)) -> new_ltEs14(xuu30000, xuu31000, cab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Double) -> new_ltEs10(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Float) -> new_esEs16(xuu40002, xuu3002) new_compare18(xuu30000, xuu31000, True, bd, be) -> LT new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(xuu40000, xuu3000, ccg, cch, cda) new_esEs8(LT, LT) -> True new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Char, bch) -> new_esEs12(xuu40000, xuu3000) new_compare25(xuu30000, xuu31000, False, ee, ef) -> new_compare10(xuu30000, xuu31000, new_ltEs5(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs28(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs23(xuu40002, xuu3002, app(ty_Ratio, bhd)) -> new_esEs17(xuu40002, xuu3002, bhd) new_esEs26(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_@0) -> new_esEs14(xuu19, xuu14) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Integer) -> new_ltEs9(xuu30000, xuu31000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Int) -> new_ltEs17(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Bool) -> new_lt4(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_[], ccc)) -> new_esEs11(xuu40000, xuu3000, ccc) new_lt20(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Float, cdf) -> new_ltEs15(xuu30000, xuu31000) new_compare27(xuu30000, xuu31000, False) -> new_compare16(xuu30000, xuu31000, new_ltEs11(xuu30000, xuu31000)) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Char) -> new_ltEs7(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, ty_Integer) -> new_ltEs9(xuu3000, xuu3100) new_esEs26(xuu30000, xuu31000, ty_Integer) -> new_esEs13(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Char) -> new_compare13(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, ty_Integer) -> new_ltEs9(xuu30001, xuu31001) new_esEs23(xuu40002, xuu3002, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs7(xuu40002, xuu3002, bgg, bgh, bha) new_lt7(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_lt13(xuu30001, xuu31001, bag) new_esEs29(xuu4000, xuu300, ty_@0) -> new_esEs14(xuu4000, xuu300) new_esEs27(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_primMulInt(Neg(xuu400000), Neg(xuu30010)) -> Pos(new_primMulNat0(xuu400000, xuu30010)) new_compare29(Nothing, Nothing, False, dea) -> LT new_esEs22(xuu40001, xuu3001, app(ty_Maybe, bfd)) -> new_esEs5(xuu40001, xuu3001, bfd) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(ty_Ratio, cdd)) -> new_esEs17(xuu40000, xuu3000, cdd) new_compare13(Char(xuu30000), Char(xuu31000)) -> new_primCmpNat1(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(ty_[], cdg), cdf) -> new_ltEs13(xuu30000, xuu31000, cdg) new_lt8(xuu30000, xuu31000, app(app(ty_@2, hc), hd)) -> new_lt12(xuu30000, xuu31000, hc, hd) new_esEs22(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Maybe, cb)) -> new_esEs5(xuu40000, xuu3000, cb) new_primCmpNat2(xuu3000, Zero) -> GT new_compare210(xuu30000, xuu31000, False) -> new_compare110(xuu30000, xuu31000, new_ltEs18(xuu30000, xuu31000)) new_esEs23(xuu40002, xuu3002, ty_Ordering) -> new_esEs8(xuu40002, xuu3002) new_compare26(xuu30000, xuu31000, True, eh, fa, fb) -> EQ new_compare6(xuu30, xuu31) -> new_primCmpInt(xuu30, xuu31) new_compare26(xuu30000, xuu31000, False, eh, fa, fb) -> new_compare14(xuu30000, xuu31000, new_ltEs8(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_esEs19(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs23(xuu40002, xuu3002, app(app(ty_Either, bgd), bge)) -> new_esEs6(xuu40002, xuu3002, bgd, bge) new_esEs23(xuu40002, xuu3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu40002, xuu3002, bhb, bhc) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs12(xuu30002, xuu31002, ty_Float) -> new_ltEs15(xuu30002, xuu31002) new_compare29(Just(xuu3000), Just(xuu3100), False, dea) -> new_compare111(xuu3000, xuu3100, new_ltEs20(xuu3000, xuu3100, dea), dea) new_esEs21(xuu40000, xuu3000, app(app(ty_Either, bdh), bea)) -> new_esEs6(xuu40000, xuu3000, bdh, bea) new_compare16(xuu30000, xuu31000, True) -> LT new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_[], bg)) -> new_esEs11(xuu40000, xuu3000, bg) new_primMulInt(Pos(xuu400000), Neg(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_primMulInt(Neg(xuu400000), Pos(xuu30010)) -> Neg(new_primMulNat0(xuu400000, xuu30010)) new_ltEs13(xuu3000, xuu3100, dab) -> new_fsEs(new_compare0(xuu3000, xuu3100, dab)) new_compare30(Float(xuu30000, Neg(xuu300010)), Float(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_esEs12(Char(xuu40000), Char(xuu3000)) -> new_primEqNat0(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(ty_@2, cbh), cca), bch) -> new_esEs4(xuu40000, xuu3000, cbh, cca) new_ltEs11(EQ, GT) -> True new_esEs27(xuu40000, xuu3000, app(ty_Ratio, dcf)) -> new_esEs17(xuu40000, xuu3000, dcf) new_esEs22(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs17(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), bdf) -> new_asAs(new_esEs24(xuu40000, xuu3000, bdf), new_esEs25(xuu40001, xuu3001, bdf)) new_esEs22(xuu40001, xuu3001, app(app(ty_@2, bfh), bga)) -> new_esEs4(xuu40001, xuu3001, bfh, bga) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_Either, ccd), cce)) -> new_esEs6(xuu40000, xuu3000, ccd, cce) new_ltEs12(xuu30002, xuu31002, ty_Double) -> new_ltEs10(xuu30002, xuu31002) new_ltEs5(@2(xuu30000, xuu30001), @2(xuu31000, xuu31001), cge, cgf) -> new_pePe(new_lt20(xuu30000, xuu31000, cge), new_asAs(new_esEs26(xuu30000, xuu31000, cge), new_ltEs19(xuu30001, xuu31001, cgf))) new_ltEs12(xuu30002, xuu31002, app(app(ty_@2, bbg), bbh)) -> new_ltEs5(xuu30002, xuu31002, bbg, bbh) new_compare15(Integer(xuu30000), Integer(xuu31000)) -> new_primCmpInt(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, app(ty_[], dac)) -> new_compare0(xuu30000, xuu31000, dac) new_primCmpNat1(Succ(xuu30000), Zero) -> GT new_esEs27(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_ltEs18(False, True) -> True new_sr0(Integer(xuu300000), Integer(xuu310010)) -> Integer(new_primMulInt(xuu300000, xuu310010)) new_primCmpNat2(xuu3000, Succ(xuu3100)) -> new_primCmpNat1(xuu3000, xuu3100) new_esEs29(xuu4000, xuu300, app(ty_Maybe, bf)) -> new_esEs5(xuu4000, xuu300, bf) new_lt8(xuu30000, xuu31000, app(ty_[], ha)) -> new_lt10(xuu30000, xuu31000, ha) new_lt19(xuu30000, xuu31000) -> new_esEs8(new_compare13(xuu30000, xuu31000), LT) new_esEs28(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Ordering) -> new_ltEs11(xuu3000, xuu3100) new_ltEs11(EQ, EQ) -> True new_lt20(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_lt13(xuu30000, xuu31000, cah) new_esEs28(xuu40001, xuu3001, ty_Float) -> new_esEs16(xuu40001, xuu3001) new_compare31(xuu30000, xuu31000, ty_Integer) -> new_compare15(xuu30000, xuu31000) new_ltEs19(xuu30001, xuu31001, app(ty_Ratio, cha)) -> new_ltEs6(xuu30001, xuu31001, cha) new_lt20(xuu30000, xuu31000, app(app(app(ty_@3, eh), fa), fb)) -> new_lt18(xuu30000, xuu31000, eh, fa, fb) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Ordering) -> new_ltEs11(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(ty_Maybe, he)) -> new_esEs5(xuu30000, xuu31000, he) new_esEs28(xuu40001, xuu3001, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(xuu40001, xuu3001, ddc, ddd, dde) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Ordering, cdf) -> new_ltEs11(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs12(xuu30002, xuu31002, ty_@0) -> new_ltEs4(xuu30002, xuu31002) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Integer) -> new_compare15(new_sr0(xuu30000, xuu31001), new_sr0(xuu31000, xuu30001)) new_compare0([], :(xuu31000, xuu31001), dab) -> LT new_lt7(xuu30001, xuu31001, ty_Double) -> new_lt5(xuu30001, xuu31001) new_asAs(True, xuu124) -> xuu124 new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_@0) -> new_ltEs4(xuu30000, xuu31000) new_compare10(xuu30000, xuu31000, False, ee, ef) -> GT new_esEs18(xuu40000, xuu3000, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Ratio, dad)) -> new_compare12(xuu30000, xuu31000, dad) new_lt12(xuu30000, xuu31000, ee, ef) -> new_esEs8(new_compare17(xuu30000, xuu31000, ee, ef), LT) new_ltEs16(Right(xuu30000), Left(xuu31000), cfa, cdf) -> False new_esEs23(xuu40002, xuu3002, ty_Integer) -> new_esEs13(xuu40002, xuu3002) new_lt7(xuu30001, xuu31001, ty_Int) -> new_lt17(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Right(xuu3000), bcg, bch) -> False new_esEs6(Right(xuu40000), Left(xuu3000), bcg, bch) -> False new_esEs22(xuu40001, xuu3001, app(ty_[], bfa)) -> new_esEs11(xuu40001, xuu3001, bfa) new_esEs20(xuu30001, xuu31001, app(ty_Maybe, bag)) -> new_esEs5(xuu30001, xuu31001, bag) new_esEs5(Just(xuu40000), Just(xuu3000), app(app(ty_@2, cf), cg)) -> new_esEs4(xuu40000, xuu3000, cf, cg) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Double, bch) -> new_esEs9(xuu40000, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_esEs23(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) new_lt20(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_compare24(xuu30000, xuu31000, True, bd, be) -> EQ new_lt20(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_esEs21(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(app(ty_@3, cef), ceg), ceh), cdf) -> new_ltEs8(xuu30000, xuu31000, cef, ceg, ceh) new_ltEs9(xuu3000, xuu3100) -> new_fsEs(new_compare15(xuu3000, xuu3100)) new_primPlusNat1(xuu96, xuu300100) -> new_primPlusNat0(xuu96, Succ(xuu300100)) new_compare110(xuu30000, xuu31000, False) -> GT new_lt20(xuu30000, xuu31000, app(ty_[], cgg)) -> new_lt10(xuu30000, xuu31000, cgg) new_compare19(xuu30000, xuu31000, eh, fa, fb) -> new_compare26(xuu30000, xuu31000, new_esEs7(xuu30000, xuu31000, eh, fa, fb), eh, fa, fb) new_ltEs11(GT, GT) -> True new_primCompAux00(xuu164, EQ) -> xuu164 new_compare0([], [], dab) -> EQ new_sr(xuu40000, xuu3001) -> new_primMulInt(xuu40000, xuu3001) new_compare7(xuu30000, xuu31000) -> new_compare210(xuu30000, xuu31000, new_esEs15(xuu30000, xuu31000)) new_esEs30(xuu19, xuu14, ty_Float) -> new_esEs16(xuu19, xuu14) new_esEs22(xuu40001, xuu3001, app(ty_Ratio, bgb)) -> new_esEs17(xuu40001, xuu3001, bgb) new_primMulNat0(Zero, Zero) -> Zero new_esEs27(xuu40000, xuu3000, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare28(xuu30000, xuu31000, cah) -> new_compare29(xuu30000, xuu31000, new_esEs5(xuu30000, xuu31000, cah), cah) new_esEs23(xuu40002, xuu3002, ty_Char) -> new_esEs12(xuu40002, xuu3002) new_esEs30(xuu19, xuu14, app(ty_Maybe, fg)) -> new_esEs5(xuu19, xuu14, fg) new_ltEs14(Just(xuu30000), Just(xuu31000), app(ty_Ratio, bhg)) -> new_ltEs6(xuu30000, xuu31000, bhg) new_lt7(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt18(xuu30001, xuu31001, bbb, bbc, bbd) new_primCmpNat1(Zero, Zero) -> EQ new_ltEs19(xuu30001, xuu31001, ty_Bool) -> new_ltEs18(xuu30001, xuu31001) new_compare14(xuu30000, xuu31000, False, eh, fa, fb) -> GT new_esEs26(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_esEs6(xuu30000, xuu31000, bd, be) new_compare9(@0, @0) -> EQ new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, app(ty_Ratio, eg)) -> new_ltEs6(xuu3000, xuu3100, eg) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_Char) -> new_esEs12(xuu40001, xuu3001) new_esEs9(Double(xuu40000, xuu40001), Double(xuu3000, xuu3001)) -> new_esEs10(new_sr(xuu40000, xuu3001), new_sr(xuu40001, xuu3000)) new_lt7(xuu30001, xuu31001, ty_Integer) -> new_lt15(xuu30001, xuu31001) new_lt8(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_ltEs20(xuu3000, xuu3100, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs8(xuu3000, xuu3100, gf, gg, gh) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Char) -> new_esEs12(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, ty_Float) -> new_compare30(xuu30000, xuu31000) new_lt8(xuu30000, xuu31000, ty_Int) -> new_lt17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, app(app(ty_Either, hf), hg)) -> new_esEs6(xuu30000, xuu31000, hf, hg) new_compare5(Double(xuu30000, Pos(xuu300010)), Double(xuu31000, Neg(xuu310010))) -> new_compare6(new_sr(xuu30000, Pos(xuu310010)), new_sr(Neg(xuu300010), xuu31000)) new_compare5(Double(xuu30000, Neg(xuu300010)), Double(xuu31000, Pos(xuu310010))) -> new_compare6(new_sr(xuu30000, Neg(xuu310010)), new_sr(Pos(xuu300010), xuu31000)) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Integer, cdf) -> new_ltEs9(xuu30000, xuu31000) new_esEs5(Just(xuu40000), Just(xuu3000), app(ty_Ratio, da)) -> new_esEs17(xuu40000, xuu3000, da) new_ltEs19(xuu30001, xuu31001, ty_Int) -> new_ltEs17(xuu30001, xuu31001) new_esEs27(xuu40000, xuu3000, app(ty_[], dbe)) -> new_esEs11(xuu40000, xuu3000, dbe) new_esEs18(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(ty_Maybe, df)) -> new_esEs5(xuu40000, xuu3000, df) new_ltEs20(xuu3000, xuu3100, ty_Char) -> new_ltEs7(xuu3000, xuu3100) new_ltEs8(@3(xuu30000, xuu30001, xuu30002), @3(xuu31000, xuu31001, xuu31002), gf, gg, gh) -> new_pePe(new_lt8(xuu30000, xuu31000, gf), new_asAs(new_esEs19(xuu30000, xuu31000, gf), new_pePe(new_lt7(xuu30001, xuu31001, gg), new_asAs(new_esEs20(xuu30001, xuu31001, gg), new_ltEs12(xuu30002, xuu31002, gh))))) new_primEqInt(Neg(Succ(xuu400000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu30000))) -> False new_lt18(xuu30000, xuu31000, eh, fa, fb) -> new_esEs8(new_compare19(xuu30000, xuu31000, eh, fa, fb), LT) new_esEs26(xuu30000, xuu31000, app(ty_[], cgg)) -> new_esEs11(xuu30000, xuu31000, cgg) new_lt9(xuu30000, xuu31000) -> new_esEs8(new_compare9(xuu30000, xuu31000), LT) new_esEs18(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, ty_@0) -> new_esEs14(xuu30001, xuu31001) new_primEqInt(Pos(Succ(xuu400000)), Pos(Succ(xuu30000))) -> new_primEqNat0(xuu400000, xuu30000) new_esEs22(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, app(app(ty_@2, cdb), cdc)) -> new_esEs4(xuu40000, xuu3000, cdb, cdc) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Ordering) -> new_esEs8(xuu40000, xuu3000) new_compare31(xuu30000, xuu31000, app(ty_Maybe, dag)) -> new_compare28(xuu30000, xuu31000, dag) new_ltEs15(xuu3000, xuu3100) -> new_fsEs(new_compare30(xuu3000, xuu3100)) new_esEs26(xuu30000, xuu31000, app(app(ty_@2, ee), ef)) -> new_esEs4(xuu30000, xuu31000, ee, ef) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_@0) -> new_esEs14(xuu40000, xuu3000) new_esEs20(xuu30001, xuu31001, app(app(ty_Either, bah), bba)) -> new_esEs6(xuu30001, xuu31001, bah, bba) new_esEs11(:(xuu40000, xuu40001), :(xuu3000, xuu3001), db) -> new_asAs(new_esEs18(xuu40000, xuu3000, db), new_esEs11(xuu40001, xuu3001, db)) new_esEs29(xuu4000, xuu300, ty_Double) -> new_esEs9(xuu4000, xuu300) new_lt8(xuu30000, xuu31000, app(app(app(ty_@3, hh), baa), bab)) -> new_lt18(xuu30000, xuu31000, hh, baa, bab) new_ltEs14(Just(xuu30000), Nothing, bhe) -> False new_ltEs14(Nothing, Nothing, bhe) -> True new_esEs26(xuu30000, xuu31000, ty_Ordering) -> new_esEs8(xuu30000, xuu31000) new_primEqInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> False new_primEqInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> False new_compare31(xuu30000, xuu31000, ty_Ordering) -> new_compare11(xuu30000, xuu31000) new_compare31(xuu30000, xuu31000, ty_Double) -> new_compare5(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(app(app(ty_@3, cga), cgb), cgc)) -> new_ltEs8(xuu30000, xuu31000, cga, cgb, cgc) new_ltEs12(xuu30002, xuu31002, app(app(ty_Either, bcb), bcc)) -> new_ltEs16(xuu30002, xuu31002, bcb, bcc) new_esEs24(xuu40000, xuu3000, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_esEs30(xuu19, xuu14, ty_Integer) -> new_esEs13(xuu19, xuu14) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs21(xuu40000, xuu3000, app(ty_[], bdg)) -> new_esEs11(xuu40000, xuu3000, bdg) new_esEs28(xuu40001, xuu3001, app(ty_Maybe, ddb)) -> new_esEs5(xuu40001, xuu3001, ddb) new_compare111(xuu117, xuu118, False, cgd) -> GT new_esEs22(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) new_esEs4(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bdd, bde) -> new_asAs(new_esEs27(xuu40000, xuu3000, bdd), new_esEs28(xuu40001, xuu3001, bde)) new_lt8(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, ty_Float) -> new_esEs16(xuu40000, xuu3000) new_ltEs20(xuu3000, xuu3100, ty_Int) -> new_ltEs17(xuu3000, xuu3100) new_esEs20(xuu30001, xuu31001, ty_Double) -> new_esEs9(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, app(ty_[], bbe)) -> new_ltEs13(xuu30002, xuu31002, bbe) new_ltEs12(xuu30002, xuu31002, ty_Int) -> new_ltEs17(xuu30002, xuu31002) new_esEs29(xuu4000, xuu300, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs7(xuu4000, xuu300, bda, bdb, bdc) new_ltEs20(xuu3000, xuu3100, app(ty_[], dab)) -> new_ltEs13(xuu3000, xuu3100, dab) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_Maybe, cff)) -> new_ltEs14(xuu30000, xuu31000, cff) new_esEs22(xuu40001, xuu3001, ty_Integer) -> new_esEs13(xuu40001, xuu3001) new_ltEs20(xuu3000, xuu3100, ty_Float) -> new_ltEs15(xuu3000, xuu3100) new_not(False) -> True new_esEs6(Left(xuu40000), Left(xuu3000), app(ty_Ratio, ccb), bch) -> new_esEs17(xuu40000, xuu3000, ccb) new_esEs29(xuu4000, xuu300, ty_Float) -> new_esEs16(xuu4000, xuu300) new_compare31(xuu30000, xuu31000, ty_@0) -> new_compare9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs7(xuu30001, xuu31001, bbb, bbc, bbd) new_ltEs14(Just(xuu30000), Just(xuu31000), ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_compare0(:(xuu30000, xuu30001), [], dab) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(xuu25200), Succ(xuu8600)) -> Succ(Succ(new_primPlusNat0(xuu25200, xuu8600))) new_lt7(xuu30001, xuu31001, app(ty_Ratio, bad)) -> new_lt11(xuu30001, xuu31001, bad) new_esEs29(xuu4000, xuu300, app(app(ty_Either, bcg), bch)) -> new_esEs6(xuu4000, xuu300, bcg, bch) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Bool) -> new_ltEs18(xuu30000, xuu31000) new_primCmpInt(Pos(Succ(xuu3000)), Pos(xuu310)) -> new_primCmpNat2(xuu3000, xuu310) new_esEs30(xuu19, xuu14, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(xuu19, xuu14, fh, ga, gb) new_compare12(:%(xuu30000, xuu30001), :%(xuu31000, xuu31001), ty_Int) -> new_compare6(new_sr(xuu30000, xuu31001), new_sr(xuu31000, xuu30001)) new_esEs20(xuu30001, xuu31001, ty_Bool) -> new_esEs15(xuu30001, xuu31001) new_ltEs12(xuu30002, xuu31002, ty_Char) -> new_ltEs7(xuu30002, xuu31002) new_lt20(xuu30000, xuu31000, ty_Integer) -> new_lt15(xuu30000, xuu31000) new_lt7(xuu30001, xuu31001, app(ty_[], bac)) -> new_lt10(xuu30001, xuu31001, bac) new_esEs21(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_esEs6(Left(xuu40000), Left(xuu3000), ty_@0, bch) -> new_esEs14(xuu40000, xuu3000) new_esEs27(xuu40000, xuu3000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs7(xuu40000, xuu3000, dca, dcb, dcc) new_lt8(xuu30000, xuu31000, ty_Double) -> new_lt5(xuu30000, xuu31000) new_compare17(xuu30000, xuu31000, ee, ef) -> new_compare25(xuu30000, xuu31000, new_esEs4(xuu30000, xuu31000, ee, ef), ee, ef) new_esEs22(xuu40001, xuu3001, ty_Double) -> new_esEs9(xuu40001, xuu3001) new_esEs26(xuu30000, xuu31000, app(ty_Maybe, cah)) -> new_esEs5(xuu30000, xuu31000, cah) new_ltEs19(xuu30001, xuu31001, ty_Float) -> new_ltEs15(xuu30001, xuu31001) new_ltEs16(Left(xuu30000), Left(xuu31000), app(app(ty_@2, cea), ceb), cdf) -> new_ltEs5(xuu30000, xuu31000, cea, ceb) new_esEs30(xuu19, xuu14, app(app(ty_Either, fd), ff)) -> new_esEs6(xuu19, xuu14, fd, ff) new_primCmpNat1(Zero, Succ(xuu31000)) -> LT new_ltEs11(LT, EQ) -> True new_esEs24(xuu40000, xuu3000, ty_Int) -> new_esEs10(xuu40000, xuu3000) new_esEs10(xuu4000, xuu300) -> new_primEqInt(xuu4000, xuu300) new_esEs19(xuu30000, xuu31000, ty_Double) -> new_esEs9(xuu30000, xuu31000) new_esEs20(xuu30001, xuu31001, ty_Integer) -> new_esEs13(xuu30001, xuu31001) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(xuu30000, xuu30001), :(xuu31000, xuu31001), dab) -> new_primCompAux0(xuu30000, xuu31000, new_compare0(xuu30001, xuu31001, dab), dab) new_esEs18(xuu40000, xuu3000, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_lt6(xuu30000, xuu31000) -> new_esEs8(new_compare11(xuu30000, xuu31000), LT) new_lt8(xuu30000, xuu31000, ty_@0) -> new_lt9(xuu30000, xuu31000) new_lt20(xuu30000, xuu31000, ty_Char) -> new_lt19(xuu30000, xuu31000) new_compare111(xuu117, xuu118, True, cgd) -> LT new_lt20(xuu30000, xuu31000, ty_Float) -> new_lt14(xuu30000, xuu31000) new_esEs27(xuu40000, xuu3000, app(app(ty_Either, dbf), dbg)) -> new_esEs6(xuu40000, xuu3000, dbf, dbg) new_esEs27(xuu40000, xuu3000, app(app(ty_@2, dcd), dce)) -> new_esEs4(xuu40000, xuu3000, dcd, dce) new_esEs19(xuu30000, xuu31000, app(ty_[], ha)) -> new_esEs11(xuu30000, xuu31000, ha) new_esEs28(xuu40001, xuu3001, app(ty_Ratio, ddh)) -> new_esEs17(xuu40001, xuu3001, ddh) new_esEs29(xuu4000, xuu300, app(ty_[], db)) -> new_esEs11(xuu4000, xuu300, db) new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_lt15(xuu30000, xuu31000) -> new_esEs8(new_compare15(xuu30000, xuu31000), LT) new_lt20(xuu30000, xuu31000, app(ty_Ratio, cde)) -> new_lt11(xuu30000, xuu31000, cde) new_esEs18(xuu40000, xuu3000, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(xuu40000, xuu3000, dg, dh, ea) new_ltEs12(xuu30002, xuu31002, ty_Integer) -> new_ltEs9(xuu30002, xuu31002) new_esEs25(xuu40001, xuu3001, ty_Int) -> new_esEs10(xuu40001, xuu3001) new_esEs13(Integer(xuu40000), Integer(xuu3000)) -> new_primEqInt(xuu40000, xuu3000) new_esEs22(xuu40001, xuu3001, ty_@0) -> new_esEs14(xuu40001, xuu3001) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Char, cdf) -> new_ltEs7(xuu30000, xuu31000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_compare31(xuu30000, xuu31000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_compare19(xuu30000, xuu31000, dbb, dbc, dbd) new_lt7(xuu30001, xuu31001, ty_Char) -> new_lt19(xuu30001, xuu31001) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, ty_Float) -> new_ltEs15(xuu30000, xuu31000) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_esEs18(xuu40000, xuu3000, app(app(ty_Either, dd), de)) -> new_esEs6(xuu40000, xuu3000, dd, de) new_esEs28(xuu40001, xuu3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(xuu40001, xuu3001, ddf, ddg) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, app(app(ty_Either, bd), be)) -> new_lt16(xuu30000, xuu31000, bd, be) new_ltEs19(xuu30001, xuu31001, ty_Ordering) -> new_ltEs11(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), app(app(app(ty_@3, cbe), cbf), cbg), bch) -> new_esEs7(xuu40000, xuu3000, cbe, cbf, cbg) new_compare29(xuu300, xuu310, True, dea) -> EQ new_esEs5(Just(xuu40000), Just(xuu3000), ty_Double) -> new_esEs9(xuu40000, xuu3000) new_ltEs11(LT, GT) -> True new_esEs26(xuu30000, xuu31000, ty_Int) -> new_esEs10(xuu30000, xuu31000) new_esEs28(xuu40001, xuu3001, ty_Ordering) -> new_esEs8(xuu40001, xuu3001) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Integer) -> new_esEs13(xuu40000, xuu3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(xuu4000, xuu300, app(app(ty_@2, bdd), bde)) -> new_esEs4(xuu4000, xuu300, bdd, bde) new_ltEs12(xuu30002, xuu31002, app(ty_Maybe, bca)) -> new_ltEs14(xuu30002, xuu31002, bca) new_ltEs18(True, True) -> True new_esEs28(xuu40001, xuu3001, app(app(ty_Either, dch), dda)) -> new_esEs6(xuu40001, xuu3001, dch, dda) new_esEs6(Right(xuu40000), Right(xuu3000), bcg, ty_Char) -> new_esEs12(xuu40000, xuu3000) new_primEqNat0(Zero, Zero) -> True new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Int, cdf) -> new_ltEs17(xuu30000, xuu31000) new_esEs19(xuu30000, xuu31000, ty_Char) -> new_esEs12(xuu30000, xuu31000) new_ltEs10(xuu3000, xuu3100) -> new_fsEs(new_compare5(xuu3000, xuu3100)) new_esEs11([], [], db) -> True new_esEs29(xuu4000, xuu300, ty_Ordering) -> new_esEs8(xuu4000, xuu300) new_ltEs16(Right(xuu30000), Right(xuu31000), cfa, app(ty_[], cfb)) -> new_ltEs13(xuu30000, xuu31000, cfb) new_esEs30(xuu19, xuu14, app(ty_[], fc)) -> new_esEs11(xuu19, xuu14, fc) new_ltEs16(Left(xuu30000), Left(xuu31000), ty_Double, cdf) -> new_ltEs10(xuu30000, xuu31000) new_esEs29(xuu4000, xuu300, app(ty_Ratio, bdf)) -> new_esEs17(xuu4000, xuu300, bdf) new_asAs(False, xuu124) -> False new_esEs30(xuu19, xuu14, app(ty_Ratio, ge)) -> new_esEs17(xuu19, xuu14, ge) new_esEs20(xuu30001, xuu31001, ty_Char) -> new_esEs12(xuu30001, xuu31001) new_esEs6(Left(xuu40000), Left(xuu3000), ty_Int, bch) -> new_esEs10(xuu40000, xuu3000) new_lt20(xuu30000, xuu31000, ty_Ordering) -> new_lt6(xuu30000, xuu31000) new_esEs18(xuu40000, xuu3000, app(ty_Ratio, ed)) -> new_esEs17(xuu40000, xuu3000, ed) new_esEs27(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs5(xuu40000, xuu3000, dbh) new_esEs23(xuu40002, xuu3002, ty_@0) -> new_esEs14(xuu40002, xuu3002) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare27(xuu30000, xuu31000, True) -> EQ new_primCmpInt(Neg(Succ(xuu3000)), Neg(xuu310)) -> new_primCmpNat0(xuu310, xuu3000) new_esEs5(Just(xuu40000), Just(xuu3000), ty_Bool) -> new_esEs15(xuu40000, xuu3000) new_esEs21(xuu40000, xuu3000, ty_Double) -> new_esEs9(xuu40000, xuu3000) new_lt5(xuu30000, xuu31000) -> new_esEs8(new_compare5(xuu30000, xuu31000), LT) new_compare29(Just(xuu3000), Nothing, False, dea) -> GT new_ltEs12(xuu30002, xuu31002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs8(xuu30002, xuu31002, bcd, bce, bcf) new_ltEs11(EQ, LT) -> False new_compare31(xuu30000, xuu31000, app(app(ty_@2, dae), daf)) -> new_compare17(xuu30000, xuu31000, dae, daf) The set Q consists of the following terms: new_esEs21(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(:(x0, x1), [], x2) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs8(EQ, EQ) new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt7(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Bool) new_ltEs12(x0, x1, ty_@0) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat2(x0, Succ(x1)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Float) new_ltEs17(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_compare31(x0, x1, ty_Ordering) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpNat1(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs12(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_primCmpNat1(Zero, Zero) new_ltEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs22(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_lt11(x0, x1, x2) new_ltEs15(x0, x1) new_compare31(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_ltEs7(x0, x1) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare17(x0, x1, x2, x3) new_ltEs6(x0, x1, x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1) new_compare29(Just(x0), Just(x1), False, x2) new_primPlusNat1(x0, x1) new_primCmpNat0(Succ(x0), x1) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_lt14(x0, x1) new_compare210(x0, x1, True) new_esEs30(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs12(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_esEs5(Nothing, Just(x0), x1) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt12(x0, x1, x2, x3) new_ltEs14(Just(x0), Just(x1), ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare29(Nothing, Nothing, False, x0) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs12(x0, x1, ty_Integer) new_esEs11(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(x0, x1) new_esEs27(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs15(False, False) new_primMulInt(Neg(x0), Neg(x1)) new_compare5(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare5(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt8(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs5(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, ty_Char) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_lt8(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(GT, GT) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare111(x0, x1, False, x2) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Float) new_esEs21(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_lt17(x0, x1) new_asAs(False, x0) new_esEs5(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, ty_Float) new_compare0([], :(x0, x1), x2) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_lt7(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, ty_@0) new_compare5(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primCompAux00(x0, EQ) new_primCmpNat1(Zero, Succ(x0)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs22(x0, x1, ty_@0) new_primCmpNat1(Succ(x0), Succ(x1)) new_primEqNat0(Zero, Succ(x0)) new_lt9(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_ltEs12(x0, x1, ty_Int) new_esEs8(GT, GT) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Ordering) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, x2, x3) new_esEs24(x0, x1, ty_Integer) new_esEs12(Char(x0), Char(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, LT) new_compare31(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_@0) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs15(True, True) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_@0) new_ltEs12(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_ltEs11(EQ, EQ) new_ltEs12(x0, x1, app(ty_[], x2)) new_lt4(x0, x1) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs18(x0, x1, ty_@0) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Int) new_lt7(x0, x1, ty_Integer) new_compare31(x0, x1, ty_@0) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_esEs5(Just(x0), Just(x1), ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs20(x0, x1, ty_Char) new_esEs11([], [], x0) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3, x4) new_fsEs(x0) new_esEs21(x0, x1, ty_Ordering) new_compare18(x0, x1, False, x2, x3) new_compare111(x0, x1, True, x2) new_lt7(x0, x1, ty_Float) new_esEs21(x0, x1, ty_Double) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_asAs(True, x0) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Char) new_compare19(x0, x1, x2, x3, x4) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare9(@0, @0) new_ltEs11(LT, LT) new_lt8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Ordering) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare29(Just(x0), Nothing, False, x1) new_compare110(x0, x1, True) new_compare16(x0, x1, False) new_esEs29(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs23(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Char) new_compare27(x0, x1, True) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_@0) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Int) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat0(Zero, Zero) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Double) new_ltEs18(True, True) new_ltEs20(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(x0, x1) new_esEs30(x0, x1, ty_Double) new_not(True) new_esEs29(x0, x1, ty_Bool) new_ltEs16(Left(x0), Right(x1), x2, x3) new_ltEs16(Right(x0), Left(x1), x2, x3) new_compare210(x0, x1, False) new_esEs27(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare14(x0, x1, True, x2, x3, x4) new_lt15(x0, x1) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs29(x0, x1, ty_Double) new_compare10(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Double) new_primCmpNat0(Zero, x0) new_esEs10(x0, x1) new_primCmpNat2(x0, Zero) new_esEs13(Integer(x0), Integer(x1)) new_lt8(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Int) new_lt8(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare110(x0, x1, False) new_lt5(x0, x1) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, ty_Float) new_esEs18(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs12(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_compare25(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, False, x2, x3, x4) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare31(x0, x1, ty_Integer) new_compare29(x0, x1, True, x2) new_esEs19(x0, x1, app(ty_[], x2)) new_compare13(Char(x0), Char(x1)) new_esEs21(x0, x1, ty_Bool) new_compare29(Nothing, Just(x0), False, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1, app(ty_Maybe, x2)) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs14(@0, @0) new_compare18(x0, x1, True, x2, x3) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs12(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_compare15(Integer(x0), Integer(x1)) new_esEs18(x0, x1, ty_Int) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Nothing, Just(x0), x1) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_lt7(x0, x1, ty_@0) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, ty_Integer) new_compare12(:%(x0, x1), :%(x2, x3), ty_Int) new_compare6(x0, x1) new_ltEs12(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Double) new_esEs27(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare24(x0, x1, False, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_pePe(False, x0) new_primPlusNat0(Succ(x0), Zero) new_compare31(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare5(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs5(Nothing, Nothing, x0) new_compare31(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs15(False, True) new_esEs15(True, False) new_esEs29(x0, x1, ty_Float) new_lt6(x0, x1) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11([], :(x0, x1), x2) new_lt8(x0, x1, ty_Ordering) new_primEqNat0(Zero, Zero) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_not(False) new_esEs21(x0, x1, ty_Char) new_compare10(x0, x1, True, x2, x3) new_ltEs10(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_ltEs18(False, False) new_esEs19(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, ty_Float) new_lt13(x0, x1, x2) new_esEs18(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_compare16(x0, x1, True) new_compare0([], [], x0) new_ltEs14(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_esEs19(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_compare31(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_@0) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Char) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_Float) new_compare27(x0, x1, False) new_lt19(x0, x1) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Integer) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Float) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare31(x0, x1, ty_Float) 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_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu33, Nothing, xuu401, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, False, h, ba) -> new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), 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_C(Branch(Just(xuu300), xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C2(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(Nothing, Just(xuu300), False, h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 6, 4 >= 8, 5 >= 9 *new_addToFM_C(Branch(Nothing, xuu31, xuu32, xuu33, xuu34), Nothing, xuu401, h, ba) -> new_addToFM_C1(xuu31, xuu32, xuu33, xuu34, xuu401, new_esEs8(new_compare29(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_C1(xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) The graph contains the following edges 4 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 *new_addToFM_C10(xuu300, xuu31, xuu32, xuu33, xuu34, xuu401, True, h, ba) -> new_addToFM_C(xuu34, Nothing, xuu401, h, ba) The graph contains the following edges 5 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 ---------------------------------------- (59) YES