/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 9 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, 36 ms] (25) YES (26) QDP (27) DependencyGraphProof [EQUIVALENT, 3 ms] (28) AND (29) QDP (30) TransformationProof [EQUIVALENT, 1677 ms] (31) QDP (32) DependencyGraphProof [EQUIVALENT, 0 ms] (33) QDP (34) TransformationProof [EQUIVALENT, 0 ms] (35) QDP (36) TransformationProof [EQUIVALENT, 0 ms] (37) QDP (38) TransformationProof [EQUIVALENT, 0 ms] (39) QDP (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] (41) YES (42) QDP (43) QDPSizeChangeProof [EQUIVALENT, 0 ms] (44) YES (45) QDP (46) QDPSizeChangeProof [EQUIVALENT, 0 ms] (47) YES (48) QDP (49) QDPSizeChangeProof [EQUIVALENT, 0 ms] (50) YES (51) QDP (52) QDPSizeChangeProof [EQUIVALENT, 0 ms] (53) YES (54) QDP (55) QDPSizeChangeProof [EQUIVALENT, 0 ms] (56) YES (57) QDP (58) QDPSizeChangeProof [EQUIVALENT, 0 ms] (59) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap 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 (\old new ->new) fm key_elt_pairs; 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 b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | 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; } ---------------------------------------- (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 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 = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (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; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = 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 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 b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> 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; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; 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; } ---------------------------------------- (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 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 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 a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; 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; } ---------------------------------------- (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 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 b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r 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 :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "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; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "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_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; " "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); " "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; " "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; " The following Function with conditions "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; " is transformed to "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " The following Function with conditions "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; " is transformed to "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " The following Function with conditions "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = 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 a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = 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 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; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D wxw wxx = gcd wxw wxx; " "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); ; double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); ; mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; ; mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); ; mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; ; mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; ; single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; " "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; " "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); " "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); " "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); " "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; " "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); " "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; " "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); " "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); " "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; " "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); " "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); " "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; " "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; " The bindings of the following Let/Where expression "foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; } " are unpacked to the following functions on top level "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchRight_size wyx wyy wyz = sizeFM wyx; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchUnbox wyx wyy wyz x = x; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord 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 (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 b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> 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; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < 2); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxy wxz fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> 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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (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 :: (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; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 key elt fm_L fm_R key elt fm_L fm_R (mkBalBranch6Size_l key elt fm_L fm_R + mkBalBranch6Size_r key elt fm_L fm_R < Pos (Succ (Succ Zero))); mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wxy wxz fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wxy wxz fm_lrr fm_r); mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxy wxz fm_l fm_rl) fm_rr; mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wxy wxz fm_lr fm_r); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyu; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: b -> a -> FiniteMap b a; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 20[label="",style="dashed", color="red", weight=0]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];4021[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 4021[label="",style="solid", color="burlywood", weight=9]; 4021 -> 28[label="",style="solid", color="burlywood", weight=3]; 4022[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 4022[label="",style="solid", color="burlywood", weight=9]; 4022 -> 29[label="",style="solid", color="burlywood", weight=3]; 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 30 -> 20[label="",style="dashed", color="red", weight=0]; 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];4023[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 4023[label="",style="solid", color="burlywood", weight=9]; 4023 -> 34[label="",style="solid", color="burlywood", weight=3]; 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];4024[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 4024[label="",style="solid", color="burlywood", weight=9]; 4024 -> 36[label="",style="solid", color="burlywood", weight=3]; 4025[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 4025[label="",style="solid", color="burlywood", weight=9]; 4025 -> 37[label="",style="solid", color="burlywood", weight=3]; 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="black",shape="box"];41 -> 43[label="",style="solid", color="black", weight=3]; 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 44[label="",style="dashed", color="green", weight=3]; 42 -> 45[label="",style="dashed", color="green", weight=3]; 43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];43 -> 46[label="",style="solid", color="black", weight=3]; 44 -> 22[label="",style="dashed", color="red", weight=0]; 44[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];45 -> 22[label="",style="dashed", color="red", weight=0]; 45[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];46[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare3 xuu31100 xuu60 == LT)",fontsize=16,color="black",shape="box"];46 -> 47[label="",style="solid", color="black", weight=3]; 47[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (compare2 xuu31100 xuu60 (xuu31100 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4026[label="xuu31100/Nothing",fontsize=10,color="white",style="solid",shape="box"];47 -> 4026[label="",style="solid", color="burlywood", weight=9]; 4026 -> 48[label="",style="solid", color="burlywood", weight=3]; 4027[label="xuu31100/Just xuu311000",fontsize=10,color="white",style="solid",shape="box"];47 -> 4027[label="",style="solid", color="burlywood", weight=9]; 4027 -> 49[label="",style="solid", color="burlywood", weight=3]; 48[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing xuu60 (Nothing == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4028[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];48 -> 4028[label="",style="solid", color="burlywood", weight=9]; 4028 -> 50[label="",style="solid", color="burlywood", weight=3]; 4029[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];48 -> 4029[label="",style="solid", color="burlywood", weight=9]; 4029 -> 51[label="",style="solid", color="burlywood", weight=3]; 49[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) xuu60 (Just xuu311000 == xuu60) == LT)",fontsize=16,color="burlywood",shape="box"];4030[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];49 -> 4030[label="",style="solid", color="burlywood", weight=9]; 4030 -> 52[label="",style="solid", color="burlywood", weight=3]; 4031[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];49 -> 4031[label="",style="solid", color="burlywood", weight=9]; 4031 -> 53[label="",style="solid", color="burlywood", weight=3]; 50[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing Nothing (Nothing == Nothing) == LT)",fontsize=16,color="black",shape="box"];50 -> 54[label="",style="solid", color="black", weight=3]; 51[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing (Just xuu600) (Nothing == Just xuu600) == LT)",fontsize=16,color="black",shape="box"];51 -> 55[label="",style="solid", color="black", weight=3]; 52[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing) == LT)",fontsize=16,color="black",shape="box"];52 -> 56[label="",style="solid", color="black", weight=3]; 53[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) (Just xuu600) (Just xuu311000 == Just xuu600) == LT)",fontsize=16,color="black",shape="box"];53 -> 57[label="",style="solid", color="black", weight=3]; 54[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing Nothing True == LT)",fontsize=16,color="black",shape="box"];54 -> 58[label="",style="solid", color="black", weight=3]; 55 -> 115[label="",style="dashed", color="red", weight=0]; 55[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (compare2 Nothing (Just xuu600) False == LT)",fontsize=16,color="magenta"];55 -> 116[label="",style="dashed", color="magenta", weight=3]; 56 -> 124[label="",style="dashed", color="red", weight=0]; 56[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) Nothing False == LT)",fontsize=16,color="magenta"];56 -> 125[label="",style="dashed", color="magenta", weight=3]; 57 -> 171[label="",style="dashed", color="red", weight=0]; 57[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600) == LT)",fontsize=16,color="magenta"];57 -> 172[label="",style="dashed", color="magenta", weight=3]; 57 -> 173[label="",style="dashed", color="magenta", weight=3]; 57 -> 174[label="",style="dashed", color="magenta", weight=3]; 57 -> 175[label="",style="dashed", color="magenta", weight=3]; 57 -> 176[label="",style="dashed", color="magenta", weight=3]; 57 -> 177[label="",style="dashed", color="magenta", weight=3]; 57 -> 178[label="",style="dashed", color="magenta", weight=3]; 57 -> 179[label="",style="dashed", color="magenta", weight=3]; 58[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (EQ == LT)",fontsize=16,color="black",shape="box"];58 -> 70[label="",style="solid", color="black", weight=3]; 116 -> 86[label="",style="dashed", color="red", weight=0]; 116[label="compare2 Nothing (Just xuu600) False == LT",fontsize=16,color="magenta"];116 -> 120[label="",style="dashed", color="magenta", weight=3]; 116 -> 121[label="",style="dashed", color="magenta", weight=3]; 115[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu25",fontsize=16,color="burlywood",shape="triangle"];4032[label="xuu25/False",fontsize=10,color="white",style="solid",shape="box"];115 -> 4032[label="",style="solid", color="burlywood", weight=9]; 4032 -> 122[label="",style="solid", color="burlywood", weight=3]; 4033[label="xuu25/True",fontsize=10,color="white",style="solid",shape="box"];115 -> 4033[label="",style="solid", color="burlywood", weight=9]; 4033 -> 123[label="",style="solid", color="burlywood", weight=3]; 125 -> 86[label="",style="dashed", color="red", weight=0]; 125[label="compare2 (Just xuu311000) Nothing False == LT",fontsize=16,color="magenta"];125 -> 129[label="",style="dashed", color="magenta", weight=3]; 125 -> 130[label="",style="dashed", color="magenta", weight=3]; 124[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 xuu26",fontsize=16,color="burlywood",shape="triangle"];4034[label="xuu26/False",fontsize=10,color="white",style="solid",shape="box"];124 -> 4034[label="",style="solid", color="burlywood", weight=9]; 4034 -> 131[label="",style="solid", color="burlywood", weight=3]; 4035[label="xuu26/True",fontsize=10,color="white",style="solid",shape="box"];124 -> 4035[label="",style="solid", color="burlywood", weight=9]; 4035 -> 132[label="",style="solid", color="burlywood", weight=3]; 172[label="xuu64",fontsize=16,color="green",shape="box"];173[label="xuu63",fontsize=16,color="green",shape="box"];174[label="xuu311000",fontsize=16,color="green",shape="box"];175[label="xuu600",fontsize=16,color="green",shape="box"];176 -> 86[label="",style="dashed", color="red", weight=0]; 176[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600) == LT",fontsize=16,color="magenta"];176 -> 183[label="",style="dashed", color="magenta", weight=3]; 176 -> 184[label="",style="dashed", color="magenta", weight=3]; 177[label="xuu61",fontsize=16,color="green",shape="box"];178[label="xuu31101",fontsize=16,color="green",shape="box"];179[label="xuu62",fontsize=16,color="green",shape="box"];171[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu27",fontsize=16,color="burlywood",shape="triangle"];4036[label="xuu27/False",fontsize=10,color="white",style="solid",shape="box"];171 -> 4036[label="",style="solid", color="burlywood", weight=9]; 4036 -> 185[label="",style="solid", color="burlywood", weight=3]; 4037[label="xuu27/True",fontsize=10,color="white",style="solid",shape="box"];171 -> 4037[label="",style="solid", color="burlywood", weight=9]; 4037 -> 186[label="",style="solid", color="burlywood", weight=3]; 70[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];70 -> 89[label="",style="solid", color="black", weight=3]; 120 -> 1985[label="",style="dashed", color="red", weight=0]; 120[label="compare2 Nothing (Just xuu600) False",fontsize=16,color="magenta"];120 -> 1986[label="",style="dashed", color="magenta", weight=3]; 120 -> 1987[label="",style="dashed", color="magenta", weight=3]; 120 -> 1988[label="",style="dashed", color="magenta", weight=3]; 121[label="LT",fontsize=16,color="green",shape="box"];86[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4038[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];86 -> 4038[label="",style="solid", color="burlywood", weight=9]; 4038 -> 109[label="",style="solid", color="burlywood", weight=3]; 4039[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];86 -> 4039[label="",style="solid", color="burlywood", weight=9]; 4039 -> 110[label="",style="solid", color="burlywood", weight=3]; 4040[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];86 -> 4040[label="",style="solid", color="burlywood", weight=9]; 4040 -> 111[label="",style="solid", color="burlywood", weight=3]; 122[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];122 -> 134[label="",style="solid", color="black", weight=3]; 123[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];123 -> 135[label="",style="solid", color="black", weight=3]; 129 -> 1985[label="",style="dashed", color="red", weight=0]; 129[label="compare2 (Just xuu311000) Nothing False",fontsize=16,color="magenta"];129 -> 1989[label="",style="dashed", color="magenta", weight=3]; 129 -> 1990[label="",style="dashed", color="magenta", weight=3]; 129 -> 1991[label="",style="dashed", color="magenta", weight=3]; 130[label="LT",fontsize=16,color="green",shape="box"];131[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];131 -> 188[label="",style="solid", color="black", weight=3]; 132[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];132 -> 189[label="",style="solid", color="black", weight=3]; 183 -> 1985[label="",style="dashed", color="red", weight=0]; 183[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];183 -> 1992[label="",style="dashed", color="magenta", weight=3]; 183 -> 1993[label="",style="dashed", color="magenta", weight=3]; 183 -> 1994[label="",style="dashed", color="magenta", weight=3]; 184[label="LT",fontsize=16,color="green",shape="box"];185[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];185 -> 198[label="",style="solid", color="black", weight=3]; 186[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];186 -> 199[label="",style="solid", color="black", weight=3]; 89 -> 225[label="",style="dashed", color="red", weight=0]; 89[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (Nothing > Nothing)",fontsize=16,color="magenta"];89 -> 226[label="",style="dashed", color="magenta", weight=3]; 1986[label="Just xuu600",fontsize=16,color="green",shape="box"];1987[label="Nothing",fontsize=16,color="green",shape="box"];1988[label="False",fontsize=16,color="green",shape="box"];1985[label="compare2 xuu330 xuu340 xuu102",fontsize=16,color="burlywood",shape="triangle"];4041[label="xuu102/False",fontsize=10,color="white",style="solid",shape="box"];1985 -> 4041[label="",style="solid", color="burlywood", weight=9]; 4041 -> 2020[label="",style="solid", color="burlywood", weight=3]; 4042[label="xuu102/True",fontsize=10,color="white",style="solid",shape="box"];1985 -> 4042[label="",style="solid", color="burlywood", weight=9]; 4042 -> 2021[label="",style="solid", color="burlywood", weight=3]; 109[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];4043[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];109 -> 4043[label="",style="solid", color="burlywood", weight=9]; 4043 -> 136[label="",style="solid", color="burlywood", weight=3]; 4044[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];109 -> 4044[label="",style="solid", color="burlywood", weight=9]; 4044 -> 137[label="",style="solid", color="burlywood", weight=3]; 4045[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];109 -> 4045[label="",style="solid", color="burlywood", weight=9]; 4045 -> 138[label="",style="solid", color="burlywood", weight=3]; 110[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];4046[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];110 -> 4046[label="",style="solid", color="burlywood", weight=9]; 4046 -> 139[label="",style="solid", color="burlywood", weight=3]; 4047[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];110 -> 4047[label="",style="solid", color="burlywood", weight=9]; 4047 -> 140[label="",style="solid", color="burlywood", weight=3]; 4048[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];110 -> 4048[label="",style="solid", color="burlywood", weight=9]; 4048 -> 141[label="",style="solid", color="burlywood", weight=3]; 111[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];4049[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4049[label="",style="solid", color="burlywood", weight=9]; 4049 -> 142[label="",style="solid", color="burlywood", weight=3]; 4050[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];111 -> 4050[label="",style="solid", color="burlywood", weight=9]; 4050 -> 143[label="",style="solid", color="burlywood", weight=3]; 4051[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];111 -> 4051[label="",style="solid", color="burlywood", weight=9]; 4051 -> 144[label="",style="solid", color="burlywood", weight=3]; 134 -> 241[label="",style="dashed", color="red", weight=0]; 134[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 (Nothing > Just xuu600)",fontsize=16,color="magenta"];134 -> 242[label="",style="dashed", color="magenta", weight=3]; 135 -> 192[label="",style="dashed", color="red", weight=0]; 135[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 Nothing xuu31101) xuu64",fontsize=16,color="magenta"];135 -> 193[label="",style="dashed", color="magenta", weight=3]; 1989[label="Nothing",fontsize=16,color="green",shape="box"];1990[label="Just xuu311000",fontsize=16,color="green",shape="box"];1991[label="False",fontsize=16,color="green",shape="box"];188 -> 251[label="",style="dashed", color="red", weight=0]; 188[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 (Just xuu311000 > Nothing)",fontsize=16,color="magenta"];188 -> 252[label="",style="dashed", color="magenta", weight=3]; 189 -> 202[label="",style="dashed", color="red", weight=0]; 189[label="FiniteMap.mkBalBranch Nothing xuu61 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Just xuu311000) xuu31101) xuu64",fontsize=16,color="magenta"];189 -> 203[label="",style="dashed", color="magenta", weight=3]; 1992[label="Just xuu600",fontsize=16,color="green",shape="box"];1993[label="Just xuu311000",fontsize=16,color="green",shape="box"];1994[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];4052[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4052[label="",style="solid", color="blue", weight=9]; 4052 -> 2022[label="",style="solid", color="blue", weight=3]; 4053[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 2023[label="",style="solid", color="blue", weight=3]; 4054[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4054[label="",style="solid", color="blue", weight=9]; 4054 -> 2024[label="",style="solid", color="blue", weight=3]; 4055[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4055[label="",style="solid", color="blue", weight=9]; 4055 -> 2025[label="",style="solid", color="blue", weight=3]; 4056[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4056[label="",style="solid", color="blue", weight=9]; 4056 -> 2026[label="",style="solid", color="blue", weight=3]; 4057[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4057[label="",style="solid", color="blue", weight=9]; 4057 -> 2027[label="",style="solid", color="blue", weight=3]; 4058[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4058[label="",style="solid", color="blue", weight=9]; 4058 -> 2028[label="",style="solid", color="blue", weight=3]; 4059[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4059[label="",style="solid", color="blue", weight=9]; 4059 -> 2029[label="",style="solid", color="blue", weight=3]; 4060[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4060[label="",style="solid", color="blue", weight=9]; 4060 -> 2030[label="",style="solid", color="blue", weight=3]; 4061[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4061[label="",style="solid", color="blue", weight=9]; 4061 -> 2031[label="",style="solid", color="blue", weight=3]; 4062[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4062[label="",style="solid", color="blue", weight=9]; 4062 -> 2032[label="",style="solid", color="blue", weight=3]; 4063[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4063[label="",style="solid", color="blue", weight=9]; 4063 -> 2033[label="",style="solid", color="blue", weight=3]; 4064[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4064[label="",style="solid", color="blue", weight=9]; 4064 -> 2034[label="",style="solid", color="blue", weight=3]; 4065[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4065[label="",style="solid", color="blue", weight=9]; 4065 -> 2035[label="",style="solid", color="blue", weight=3]; 198 -> 279[label="",style="dashed", color="red", weight=0]; 198[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 (Just xuu22 > Just xuu17)",fontsize=16,color="magenta"];198 -> 280[label="",style="dashed", color="magenta", weight=3]; 199 -> 192[label="",style="dashed", color="red", weight=0]; 199[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Just xuu22) xuu23) xuu21",fontsize=16,color="magenta"];199 -> 221[label="",style="dashed", color="magenta", weight=3]; 199 -> 222[label="",style="dashed", color="magenta", weight=3]; 199 -> 223[label="",style="dashed", color="magenta", weight=3]; 199 -> 224[label="",style="dashed", color="magenta", weight=3]; 226[label="Nothing > Nothing",fontsize=16,color="black",shape="box"];226 -> 228[label="",style="solid", color="black", weight=3]; 225[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu37",fontsize=16,color="burlywood",shape="triangle"];4066[label="xuu37/False",fontsize=10,color="white",style="solid",shape="box"];225 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 229[label="",style="solid", color="burlywood", weight=3]; 4067[label="xuu37/True",fontsize=10,color="white",style="solid",shape="box"];225 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 230[label="",style="solid", color="burlywood", weight=3]; 2020[label="compare2 xuu330 xuu340 False",fontsize=16,color="black",shape="box"];2020 -> 2042[label="",style="solid", color="black", weight=3]; 2021[label="compare2 xuu330 xuu340 True",fontsize=16,color="black",shape="box"];2021 -> 2043[label="",style="solid", color="black", weight=3]; 136[label="LT == LT",fontsize=16,color="black",shape="box"];136 -> 232[label="",style="solid", color="black", weight=3]; 137[label="LT == EQ",fontsize=16,color="black",shape="box"];137 -> 233[label="",style="solid", color="black", weight=3]; 138[label="LT == GT",fontsize=16,color="black",shape="box"];138 -> 234[label="",style="solid", color="black", weight=3]; 139[label="EQ == LT",fontsize=16,color="black",shape="box"];139 -> 235[label="",style="solid", color="black", weight=3]; 140[label="EQ == EQ",fontsize=16,color="black",shape="box"];140 -> 236[label="",style="solid", color="black", weight=3]; 141[label="EQ == GT",fontsize=16,color="black",shape="box"];141 -> 237[label="",style="solid", color="black", weight=3]; 142[label="GT == LT",fontsize=16,color="black",shape="box"];142 -> 238[label="",style="solid", color="black", weight=3]; 143[label="GT == EQ",fontsize=16,color="black",shape="box"];143 -> 239[label="",style="solid", color="black", weight=3]; 144[label="GT == GT",fontsize=16,color="black",shape="box"];144 -> 240[label="",style="solid", color="black", weight=3]; 242[label="Nothing > Just xuu600",fontsize=16,color="black",shape="box"];242 -> 244[label="",style="solid", color="black", weight=3]; 241[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 xuu38",fontsize=16,color="burlywood",shape="triangle"];4068[label="xuu38/False",fontsize=10,color="white",style="solid",shape="box"];241 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 245[label="",style="solid", color="burlywood", weight=3]; 4069[label="xuu38/True",fontsize=10,color="white",style="solid",shape="box"];241 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 246[label="",style="solid", color="burlywood", weight=3]; 193 -> 35[label="",style="dashed", color="red", weight=0]; 193[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 Nothing xuu31101",fontsize=16,color="magenta"];193 -> 247[label="",style="dashed", color="magenta", weight=3]; 193 -> 248[label="",style="dashed", color="magenta", weight=3]; 192[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];192 -> 249[label="",style="solid", color="black", weight=3]; 252[label="Just xuu311000 > Nothing",fontsize=16,color="black",shape="box"];252 -> 254[label="",style="solid", color="black", weight=3]; 251[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 xuu39",fontsize=16,color="burlywood",shape="triangle"];4070[label="xuu39/False",fontsize=10,color="white",style="solid",shape="box"];251 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 255[label="",style="solid", color="burlywood", weight=3]; 4071[label="xuu39/True",fontsize=10,color="white",style="solid",shape="box"];251 -> 4071[label="",style="solid", color="burlywood", weight=9]; 4071 -> 256[label="",style="solid", color="burlywood", weight=3]; 203 -> 35[label="",style="dashed", color="red", weight=0]; 203[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu63 (Just xuu311000) xuu31101",fontsize=16,color="magenta"];203 -> 257[label="",style="dashed", color="magenta", weight=3]; 203 -> 258[label="",style="dashed", color="magenta", weight=3]; 202[label="FiniteMap.mkBalBranch Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];202 -> 259[label="",style="solid", color="black", weight=3]; 2022[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4072[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2022 -> 4072[label="",style="solid", color="burlywood", weight=9]; 4072 -> 2044[label="",style="solid", color="burlywood", weight=3]; 4073[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];2022 -> 4073[label="",style="solid", color="burlywood", weight=9]; 4073 -> 2045[label="",style="solid", color="burlywood", weight=3]; 2023[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2023 -> 2046[label="",style="solid", color="black", weight=3]; 2024[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2024 -> 2047[label="",style="solid", color="black", weight=3]; 2025[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4074[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];2025 -> 4074[label="",style="solid", color="burlywood", weight=9]; 4074 -> 2048[label="",style="solid", color="burlywood", weight=3]; 2026[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4075[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];2026 -> 4075[label="",style="solid", color="burlywood", weight=9]; 4075 -> 2049[label="",style="solid", color="burlywood", weight=3]; 4076[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];2026 -> 4076[label="",style="solid", color="burlywood", weight=9]; 4076 -> 2050[label="",style="solid", color="burlywood", weight=3]; 2027[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2027 -> 2051[label="",style="solid", color="black", weight=3]; 2028[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4077[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2028 -> 4077[label="",style="solid", color="burlywood", weight=9]; 4077 -> 2052[label="",style="solid", color="burlywood", weight=3]; 4078[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2028 -> 4078[label="",style="solid", color="burlywood", weight=9]; 4078 -> 2053[label="",style="solid", color="burlywood", weight=3]; 2029[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4079[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4079[label="",style="solid", color="burlywood", weight=9]; 4079 -> 2054[label="",style="solid", color="burlywood", weight=3]; 2030[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4080[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4080[label="",style="solid", color="burlywood", weight=9]; 4080 -> 2055[label="",style="solid", color="burlywood", weight=3]; 2031[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4081[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 2056[label="",style="solid", color="burlywood", weight=3]; 4082[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2031 -> 4082[label="",style="solid", color="burlywood", weight=9]; 4082 -> 2057[label="",style="solid", color="burlywood", weight=3]; 2032[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];2032 -> 2058[label="",style="solid", color="black", weight=3]; 2033[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4083[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];2033 -> 4083[label="",style="solid", color="burlywood", weight=9]; 4083 -> 2059[label="",style="solid", color="burlywood", weight=3]; 2034[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];4084[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2034 -> 4084[label="",style="solid", color="burlywood", weight=9]; 4084 -> 2060[label="",style="solid", color="burlywood", weight=3]; 2035 -> 86[label="",style="dashed", color="red", weight=0]; 2035[label="xuu311000 == xuu600",fontsize=16,color="magenta"];280[label="Just xuu22 > Just xuu17",fontsize=16,color="black",shape="box"];280 -> 282[label="",style="solid", color="black", weight=3]; 279[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 xuu40",fontsize=16,color="burlywood",shape="triangle"];4085[label="xuu40/False",fontsize=10,color="white",style="solid",shape="box"];279 -> 4085[label="",style="solid", color="burlywood", weight=9]; 4085 -> 283[label="",style="solid", color="burlywood", weight=3]; 4086[label="xuu40/True",fontsize=10,color="white",style="solid",shape="box"];279 -> 4086[label="",style="solid", color="burlywood", weight=9]; 4086 -> 284[label="",style="solid", color="burlywood", weight=3]; 221[label="xuu18",fontsize=16,color="green",shape="box"];222[label="xuu21",fontsize=16,color="green",shape="box"];223[label="xuu17",fontsize=16,color="green",shape="box"];224 -> 35[label="",style="dashed", color="red", weight=0]; 224[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (Just xuu22) xuu23",fontsize=16,color="magenta"];224 -> 285[label="",style="dashed", color="magenta", weight=3]; 224 -> 286[label="",style="dashed", color="magenta", weight=3]; 224 -> 287[label="",style="dashed", color="magenta", weight=3]; 228 -> 86[label="",style="dashed", color="red", weight=0]; 228[label="compare Nothing Nothing == GT",fontsize=16,color="magenta"];228 -> 288[label="",style="dashed", color="magenta", weight=3]; 228 -> 289[label="",style="dashed", color="magenta", weight=3]; 229[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];229 -> 290[label="",style="solid", color="black", weight=3]; 230[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];230 -> 291[label="",style="solid", color="black", weight=3]; 2042[label="compare1 xuu330 xuu340 (xuu330 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4087[label="xuu330/Nothing",fontsize=10,color="white",style="solid",shape="box"];2042 -> 4087[label="",style="solid", color="burlywood", weight=9]; 4087 -> 2087[label="",style="solid", color="burlywood", weight=3]; 4088[label="xuu330/Just xuu3300",fontsize=10,color="white",style="solid",shape="box"];2042 -> 4088[label="",style="solid", color="burlywood", weight=9]; 4088 -> 2088[label="",style="solid", color="burlywood", weight=3]; 2043[label="EQ",fontsize=16,color="green",shape="box"];232[label="True",fontsize=16,color="green",shape="box"];233[label="False",fontsize=16,color="green",shape="box"];234[label="False",fontsize=16,color="green",shape="box"];235[label="False",fontsize=16,color="green",shape="box"];236[label="True",fontsize=16,color="green",shape="box"];237[label="False",fontsize=16,color="green",shape="box"];238[label="False",fontsize=16,color="green",shape="box"];239[label="False",fontsize=16,color="green",shape="box"];240[label="True",fontsize=16,color="green",shape="box"];244 -> 86[label="",style="dashed", color="red", weight=0]; 244[label="compare Nothing (Just xuu600) == GT",fontsize=16,color="magenta"];244 -> 292[label="",style="dashed", color="magenta", weight=3]; 244 -> 293[label="",style="dashed", color="magenta", weight=3]; 245[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 False",fontsize=16,color="black",shape="box"];245 -> 294[label="",style="solid", color="black", weight=3]; 246[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];246 -> 295[label="",style="solid", color="black", weight=3]; 247[label="Nothing",fontsize=16,color="green",shape="box"];248[label="xuu63",fontsize=16,color="green",shape="box"];249[label="FiniteMap.mkBalBranch6 (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="box"];249 -> 296[label="",style="solid", color="black", weight=3]; 254 -> 86[label="",style="dashed", color="red", weight=0]; 254[label="compare (Just xuu311000) Nothing == GT",fontsize=16,color="magenta"];254 -> 298[label="",style="dashed", color="magenta", weight=3]; 254 -> 299[label="",style="dashed", color="magenta", weight=3]; 255[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 False",fontsize=16,color="black",shape="box"];255 -> 300[label="",style="solid", color="black", weight=3]; 256[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];256 -> 301[label="",style="solid", color="black", weight=3]; 257[label="Just xuu311000",fontsize=16,color="green",shape="box"];258[label="xuu63",fontsize=16,color="green",shape="box"];259[label="FiniteMap.mkBalBranch6 Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="box"];259 -> 302[label="",style="solid", color="black", weight=3]; 2044[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4089[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2044 -> 4089[label="",style="solid", color="burlywood", weight=9]; 4089 -> 2089[label="",style="solid", color="burlywood", weight=3]; 4090[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2044 -> 4090[label="",style="solid", color="burlywood", weight=9]; 4090 -> 2090[label="",style="solid", color="burlywood", weight=3]; 2045[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];4091[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];2045 -> 4091[label="",style="solid", color="burlywood", weight=9]; 4091 -> 2091[label="",style="solid", color="burlywood", weight=3]; 4092[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];2045 -> 4092[label="",style="solid", color="burlywood", weight=9]; 4092 -> 2092[label="",style="solid", color="burlywood", weight=3]; 2046[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];4093[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4093[label="",style="solid", color="burlywood", weight=9]; 4093 -> 2093[label="",style="solid", color="burlywood", weight=3]; 4094[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2046 -> 4094[label="",style="solid", color="burlywood", weight=9]; 4094 -> 2094[label="",style="solid", color="burlywood", weight=3]; 2047[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4095[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2047 -> 4095[label="",style="solid", color="burlywood", weight=9]; 4095 -> 2095[label="",style="solid", color="burlywood", weight=3]; 2048[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];4096[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];2048 -> 4096[label="",style="solid", color="burlywood", weight=9]; 4096 -> 2096[label="",style="solid", color="burlywood", weight=3]; 2049[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];4097[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2049 -> 4097[label="",style="solid", color="burlywood", weight=9]; 4097 -> 2097[label="",style="solid", color="burlywood", weight=3]; 4098[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2049 -> 4098[label="",style="solid", color="burlywood", weight=9]; 4098 -> 2098[label="",style="solid", color="burlywood", weight=3]; 2050[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];4099[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];2050 -> 4099[label="",style="solid", color="burlywood", weight=9]; 4099 -> 2099[label="",style="solid", color="burlywood", weight=3]; 4100[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];2050 -> 4100[label="",style="solid", color="burlywood", weight=9]; 4100 -> 2100[label="",style="solid", color="burlywood", weight=3]; 2051[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4101[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];2051 -> 4101[label="",style="solid", color="burlywood", weight=9]; 4101 -> 2101[label="",style="solid", color="burlywood", weight=3]; 2052[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4102[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4102[label="",style="solid", color="burlywood", weight=9]; 4102 -> 2102[label="",style="solid", color="burlywood", weight=3]; 4103[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2052 -> 4103[label="",style="solid", color="burlywood", weight=9]; 4103 -> 2103[label="",style="solid", color="burlywood", weight=3]; 2053[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4104[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];2053 -> 4104[label="",style="solid", color="burlywood", weight=9]; 4104 -> 2104[label="",style="solid", color="burlywood", weight=3]; 4105[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];2053 -> 4105[label="",style="solid", color="burlywood", weight=9]; 4105 -> 2105[label="",style="solid", color="burlywood", weight=3]; 2054[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];4106[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];2054 -> 4106[label="",style="solid", color="burlywood", weight=9]; 4106 -> 2106[label="",style="solid", color="burlywood", weight=3]; 2055[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4107[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];2055 -> 4107[label="",style="solid", color="burlywood", weight=9]; 4107 -> 2107[label="",style="solid", color="burlywood", weight=3]; 2056[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];4108[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4108[label="",style="solid", color="burlywood", weight=9]; 4108 -> 2108[label="",style="solid", color="burlywood", weight=3]; 4109[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2056 -> 4109[label="",style="solid", color="burlywood", weight=9]; 4109 -> 2109[label="",style="solid", color="burlywood", weight=3]; 2057[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];4110[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];2057 -> 4110[label="",style="solid", color="burlywood", weight=9]; 4110 -> 2110[label="",style="solid", color="burlywood", weight=3]; 4111[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];2057 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 2111[label="",style="solid", color="burlywood", weight=3]; 2058[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];4112[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];2058 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 2112[label="",style="solid", color="burlywood", weight=3]; 2059[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];4113[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];2059 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 2113[label="",style="solid", color="burlywood", weight=3]; 2060[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];4114[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];2060 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 2114[label="",style="solid", color="burlywood", weight=3]; 282 -> 86[label="",style="dashed", color="red", weight=0]; 282[label="compare (Just xuu22) (Just xuu17) == GT",fontsize=16,color="magenta"];282 -> 330[label="",style="dashed", color="magenta", weight=3]; 282 -> 331[label="",style="dashed", color="magenta", weight=3]; 283[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 False",fontsize=16,color="black",shape="box"];283 -> 332[label="",style="solid", color="black", weight=3]; 284[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];284 -> 333[label="",style="solid", color="black", weight=3]; 285[label="Just xuu22",fontsize=16,color="green",shape="box"];286[label="xuu23",fontsize=16,color="green",shape="box"];287[label="xuu20",fontsize=16,color="green",shape="box"];288[label="compare Nothing Nothing",fontsize=16,color="black",shape="box"];288 -> 334[label="",style="solid", color="black", weight=3]; 289[label="GT",fontsize=16,color="green",shape="box"];290[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 otherwise",fontsize=16,color="black",shape="box"];290 -> 335[label="",style="solid", color="black", weight=3]; 291 -> 202[label="",style="dashed", color="red", weight=0]; 291[label="FiniteMap.mkBalBranch Nothing xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101)",fontsize=16,color="magenta"];291 -> 336[label="",style="dashed", color="magenta", weight=3]; 291 -> 337[label="",style="dashed", color="magenta", weight=3]; 2087[label="compare1 Nothing xuu340 (Nothing <= xuu340)",fontsize=16,color="burlywood",shape="box"];4115[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2087 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 2181[label="",style="solid", color="burlywood", weight=3]; 4116[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2087 -> 4116[label="",style="solid", color="burlywood", weight=9]; 4116 -> 2182[label="",style="solid", color="burlywood", weight=3]; 2088[label="compare1 (Just xuu3300) xuu340 (Just xuu3300 <= xuu340)",fontsize=16,color="burlywood",shape="box"];4117[label="xuu340/Nothing",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4117[label="",style="solid", color="burlywood", weight=9]; 4117 -> 2183[label="",style="solid", color="burlywood", weight=3]; 4118[label="xuu340/Just xuu3400",fontsize=10,color="white",style="solid",shape="box"];2088 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 2184[label="",style="solid", color="burlywood", weight=3]; 292[label="compare Nothing (Just xuu600)",fontsize=16,color="black",shape="box"];292 -> 338[label="",style="solid", color="black", weight=3]; 293[label="GT",fontsize=16,color="green",shape="box"];294[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 otherwise",fontsize=16,color="black",shape="box"];294 -> 339[label="",style="solid", color="black", weight=3]; 295 -> 192[label="",style="dashed", color="red", weight=0]; 295[label="FiniteMap.mkBalBranch (Just xuu600) xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101)",fontsize=16,color="magenta"];295 -> 340[label="",style="dashed", color="magenta", weight=3]; 295 -> 341[label="",style="dashed", color="magenta", weight=3]; 296 -> 401[label="",style="dashed", color="red", weight=0]; 296[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];296 -> 402[label="",style="dashed", color="magenta", weight=3]; 298[label="compare (Just xuu311000) Nothing",fontsize=16,color="black",shape="box"];298 -> 344[label="",style="solid", color="black", weight=3]; 299[label="GT",fontsize=16,color="green",shape="box"];300[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 otherwise",fontsize=16,color="black",shape="box"];300 -> 345[label="",style="solid", color="black", weight=3]; 301 -> 202[label="",style="dashed", color="red", weight=0]; 301[label="FiniteMap.mkBalBranch Nothing xuu61 xuu63 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Just xuu311000) xuu31101)",fontsize=16,color="magenta"];301 -> 346[label="",style="dashed", color="magenta", weight=3]; 301 -> 347[label="",style="dashed", color="magenta", weight=3]; 302 -> 411[label="",style="dashed", color="red", weight=0]; 302[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];302 -> 412[label="",style="dashed", color="magenta", weight=3]; 2089[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2089 -> 2185[label="",style="solid", color="black", weight=3]; 2090[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];2090 -> 2186[label="",style="solid", color="black", weight=3]; 2091[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];2091 -> 2187[label="",style="solid", color="black", weight=3]; 2092[label="[] == []",fontsize=16,color="black",shape="box"];2092 -> 2188[label="",style="solid", color="black", weight=3]; 2093[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4119[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2093 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 2189[label="",style="solid", color="burlywood", weight=3]; 4120[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2093 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 2190[label="",style="solid", color="burlywood", weight=3]; 2094[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4121[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4121[label="",style="solid", color="burlywood", weight=9]; 4121 -> 2191[label="",style="solid", color="burlywood", weight=3]; 4122[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4122[label="",style="solid", color="burlywood", weight=9]; 4122 -> 2192[label="",style="solid", color="burlywood", weight=3]; 2095[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4123[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4123[label="",style="solid", color="burlywood", weight=9]; 4123 -> 2193[label="",style="solid", color="burlywood", weight=3]; 2096[label="() == ()",fontsize=16,color="black",shape="box"];2096 -> 2194[label="",style="solid", color="black", weight=3]; 2097[label="False == False",fontsize=16,color="black",shape="box"];2097 -> 2195[label="",style="solid", color="black", weight=3]; 2098[label="False == True",fontsize=16,color="black",shape="box"];2098 -> 2196[label="",style="solid", color="black", weight=3]; 2099[label="True == False",fontsize=16,color="black",shape="box"];2099 -> 2197[label="",style="solid", color="black", weight=3]; 2100[label="True == True",fontsize=16,color="black",shape="box"];2100 -> 2198[label="",style="solid", color="black", weight=3]; 2101[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];4124[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4124[label="",style="solid", color="burlywood", weight=9]; 4124 -> 2199[label="",style="solid", color="burlywood", weight=3]; 2102[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2102 -> 2200[label="",style="solid", color="black", weight=3]; 2103[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2103 -> 2201[label="",style="solid", color="black", weight=3]; 2104[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];2104 -> 2202[label="",style="solid", color="black", weight=3]; 2105[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];2105 -> 2203[label="",style="solid", color="black", weight=3]; 2106[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];2106 -> 2204[label="",style="solid", color="black", weight=3]; 2107[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];2107 -> 2205[label="",style="solid", color="black", weight=3]; 2108[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2108 -> 2206[label="",style="solid", color="black", weight=3]; 2109[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];2109 -> 2207[label="",style="solid", color="black", weight=3]; 2110[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];2110 -> 2208[label="",style="solid", color="black", weight=3]; 2111[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];2111 -> 2209[label="",style="solid", color="black", weight=3]; 2112[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];4125[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];2112 -> 4125[label="",style="solid", color="burlywood", weight=9]; 4125 -> 2210[label="",style="solid", color="burlywood", weight=3]; 2113[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];2113 -> 2211[label="",style="solid", color="black", weight=3]; 2114[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];2114 -> 2212[label="",style="solid", color="black", weight=3]; 330[label="compare (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];330 -> 387[label="",style="solid", color="black", weight=3]; 331[label="GT",fontsize=16,color="green",shape="box"];332[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 otherwise",fontsize=16,color="black",shape="box"];332 -> 388[label="",style="solid", color="black", weight=3]; 333 -> 192[label="",style="dashed", color="red", weight=0]; 333[label="FiniteMap.mkBalBranch (Just xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Just xuu22) xuu23)",fontsize=16,color="magenta"];333 -> 389[label="",style="dashed", color="magenta", weight=3]; 333 -> 390[label="",style="dashed", color="magenta", weight=3]; 333 -> 391[label="",style="dashed", color="magenta", weight=3]; 333 -> 392[label="",style="dashed", color="magenta", weight=3]; 334[label="compare3 Nothing Nothing",fontsize=16,color="black",shape="box"];334 -> 393[label="",style="solid", color="black", weight=3]; 335[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];335 -> 394[label="",style="solid", color="black", weight=3]; 336 -> 35[label="",style="dashed", color="red", weight=0]; 336[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101",fontsize=16,color="magenta"];336 -> 395[label="",style="dashed", color="magenta", weight=3]; 336 -> 396[label="",style="dashed", color="magenta", weight=3]; 337[label="xuu63",fontsize=16,color="green",shape="box"];2181[label="compare1 Nothing Nothing (Nothing <= Nothing)",fontsize=16,color="black",shape="box"];2181 -> 2244[label="",style="solid", color="black", weight=3]; 2182[label="compare1 Nothing (Just xuu3400) (Nothing <= Just xuu3400)",fontsize=16,color="black",shape="box"];2182 -> 2245[label="",style="solid", color="black", weight=3]; 2183[label="compare1 (Just xuu3300) Nothing (Just xuu3300 <= Nothing)",fontsize=16,color="black",shape="box"];2183 -> 2246[label="",style="solid", color="black", weight=3]; 2184[label="compare1 (Just xuu3300) (Just xuu3400) (Just xuu3300 <= Just xuu3400)",fontsize=16,color="black",shape="box"];2184 -> 2247[label="",style="solid", color="black", weight=3]; 338[label="compare3 Nothing (Just xuu600)",fontsize=16,color="black",shape="box"];338 -> 397[label="",style="solid", color="black", weight=3]; 339[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu600) xuu61 xuu62 xuu63 xuu64 Nothing xuu31101 True",fontsize=16,color="black",shape="box"];339 -> 398[label="",style="solid", color="black", weight=3]; 340 -> 35[label="",style="dashed", color="red", weight=0]; 340[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 Nothing xuu31101",fontsize=16,color="magenta"];340 -> 399[label="",style="dashed", color="magenta", weight=3]; 340 -> 400[label="",style="dashed", color="magenta", weight=3]; 341[label="xuu63",fontsize=16,color="green",shape="box"];402[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];402 -> 404[label="",style="solid", color="black", weight=3]; 401[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu48",fontsize=16,color="burlywood",shape="triangle"];4126[label="xuu48/False",fontsize=10,color="white",style="solid",shape="box"];401 -> 4126[label="",style="solid", color="burlywood", weight=9]; 4126 -> 405[label="",style="solid", color="burlywood", weight=3]; 4127[label="xuu48/True",fontsize=10,color="white",style="solid",shape="box"];401 -> 4127[label="",style="solid", color="burlywood", weight=9]; 4127 -> 406[label="",style="solid", color="burlywood", weight=3]; 344[label="compare3 (Just xuu311000) Nothing",fontsize=16,color="black",shape="box"];344 -> 407[label="",style="solid", color="black", weight=3]; 345[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 Nothing xuu61 xuu62 xuu63 xuu64 (Just xuu311000) xuu31101 True",fontsize=16,color="black",shape="box"];345 -> 408[label="",style="solid", color="black", weight=3]; 346 -> 35[label="",style="dashed", color="red", weight=0]; 346[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu64 (Just xuu311000) xuu31101",fontsize=16,color="magenta"];346 -> 409[label="",style="dashed", color="magenta", weight=3]; 346 -> 410[label="",style="dashed", color="magenta", weight=3]; 347[label="xuu63",fontsize=16,color="green",shape="box"];412[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];412 -> 414[label="",style="solid", color="black", weight=3]; 411[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu49",fontsize=16,color="burlywood",shape="triangle"];4128[label="xuu49/False",fontsize=10,color="white",style="solid",shape="box"];411 -> 4128[label="",style="solid", color="burlywood", weight=9]; 4128 -> 415[label="",style="solid", color="burlywood", weight=3]; 4129[label="xuu49/True",fontsize=10,color="white",style="solid",shape="box"];411 -> 4129[label="",style="solid", color="burlywood", weight=9]; 4129 -> 416[label="",style="solid", color="burlywood", weight=3]; 2185 -> 2323[label="",style="dashed", color="red", weight=0]; 2185[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2185 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2186[label="False",fontsize=16,color="green",shape="box"];2187[label="False",fontsize=16,color="green",shape="box"];2188[label="True",fontsize=16,color="green",shape="box"];2189[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4130[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4130[label="",style="solid", color="burlywood", weight=9]; 4130 -> 2259[label="",style="solid", color="burlywood", weight=3]; 4131[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2189 -> 4131[label="",style="solid", color="burlywood", weight=9]; 4131 -> 2260[label="",style="solid", color="burlywood", weight=3]; 2190[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4132[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2190 -> 4132[label="",style="solid", color="burlywood", weight=9]; 4132 -> 2261[label="",style="solid", color="burlywood", weight=3]; 4133[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2190 -> 4133[label="",style="solid", color="burlywood", weight=9]; 4133 -> 2262[label="",style="solid", color="burlywood", weight=3]; 2191[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];4134[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4134[label="",style="solid", color="burlywood", weight=9]; 4134 -> 2263[label="",style="solid", color="burlywood", weight=3]; 4135[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2191 -> 4135[label="",style="solid", color="burlywood", weight=9]; 4135 -> 2264[label="",style="solid", color="burlywood", weight=3]; 2192[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];4136[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4136[label="",style="solid", color="burlywood", weight=9]; 4136 -> 2265[label="",style="solid", color="burlywood", weight=3]; 4137[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];2192 -> 4137[label="",style="solid", color="burlywood", weight=9]; 4137 -> 2266[label="",style="solid", color="burlywood", weight=3]; 2193[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2193 -> 2267[label="",style="solid", color="black", weight=3]; 2194[label="True",fontsize=16,color="green",shape="box"];2195[label="True",fontsize=16,color="green",shape="box"];2196[label="False",fontsize=16,color="green",shape="box"];2197[label="False",fontsize=16,color="green",shape="box"];2198[label="True",fontsize=16,color="green",shape="box"];2199[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];2199 -> 2268[label="",style="solid", color="black", weight=3]; 2200[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4138[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 2269[label="",style="solid", color="blue", weight=3]; 4139[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 2270[label="",style="solid", color="blue", weight=3]; 4140[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 2271[label="",style="solid", color="blue", weight=3]; 4141[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 2272[label="",style="solid", color="blue", weight=3]; 4142[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 2273[label="",style="solid", color="blue", weight=3]; 4143[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 2274[label="",style="solid", color="blue", weight=3]; 4144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 2275[label="",style="solid", color="blue", weight=3]; 4145[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 2276[label="",style="solid", color="blue", weight=3]; 4146[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 2277[label="",style="solid", color="blue", weight=3]; 4147[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 2278[label="",style="solid", color="blue", weight=3]; 4148[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 2279[label="",style="solid", color="blue", weight=3]; 4149[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 2280[label="",style="solid", color="blue", weight=3]; 4150[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 2281[label="",style="solid", color="blue", weight=3]; 4151[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2200 -> 4151[label="",style="solid", color="blue", weight=9]; 4151 -> 2282[label="",style="solid", color="blue", weight=3]; 2201[label="False",fontsize=16,color="green",shape="box"];2202[label="False",fontsize=16,color="green",shape="box"];2203[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4152[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4152[label="",style="solid", color="blue", weight=9]; 4152 -> 2283[label="",style="solid", color="blue", weight=3]; 4153[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 2284[label="",style="solid", color="blue", weight=3]; 4154[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 2285[label="",style="solid", color="blue", weight=3]; 4155[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 2286[label="",style="solid", color="blue", weight=3]; 4156[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 2287[label="",style="solid", color="blue", weight=3]; 4157[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 2288[label="",style="solid", color="blue", weight=3]; 4158[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 2289[label="",style="solid", color="blue", weight=3]; 4159[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 2290[label="",style="solid", color="blue", weight=3]; 4160[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 2291[label="",style="solid", color="blue", weight=3]; 4161[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 2292[label="",style="solid", color="blue", weight=3]; 4162[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 2293[label="",style="solid", color="blue", weight=3]; 4163[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 2294[label="",style="solid", color="blue", weight=3]; 4164[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 2295[label="",style="solid", color="blue", weight=3]; 4165[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2203 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 2296[label="",style="solid", color="blue", weight=3]; 2204 -> 2323[label="",style="dashed", color="red", weight=0]; 2204[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2204 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2046[label="",style="dashed", color="red", weight=0]; 2205[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];2205 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2206[label="True",fontsize=16,color="green",shape="box"];2207[label="False",fontsize=16,color="green",shape="box"];2208[label="False",fontsize=16,color="green",shape="box"];2209[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4166[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 2299[label="",style="solid", color="blue", weight=3]; 4167[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 2300[label="",style="solid", color="blue", weight=3]; 4168[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 2301[label="",style="solid", color="blue", weight=3]; 4169[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 2302[label="",style="solid", color="blue", weight=3]; 4170[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 2303[label="",style="solid", color="blue", weight=3]; 4171[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 2304[label="",style="solid", color="blue", weight=3]; 4172[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 2305[label="",style="solid", color="blue", weight=3]; 4173[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 2306[label="",style="solid", color="blue", weight=3]; 4174[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 2307[label="",style="solid", color="blue", weight=3]; 4175[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 2308[label="",style="solid", color="blue", weight=3]; 4176[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 2309[label="",style="solid", color="blue", weight=3]; 4177[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 2310[label="",style="solid", color="blue", weight=3]; 4178[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 2311[label="",style="solid", color="blue", weight=3]; 4179[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2209 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 2312[label="",style="solid", color="blue", weight=3]; 2210[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];2210 -> 2313[label="",style="solid", color="black", weight=3]; 2211 -> 2323[label="",style="dashed", color="red", weight=0]; 2211[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2211 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2323[label="",style="dashed", color="red", weight=0]; 2212[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];2212 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2331[label="",style="dashed", color="magenta", weight=3]; 387[label="compare3 (Just xuu22) (Just xuu17)",fontsize=16,color="black",shape="box"];387 -> 499[label="",style="solid", color="black", weight=3]; 388[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (Just xuu17) xuu18 xuu19 xuu20 xuu21 (Just xuu22) xuu23 True",fontsize=16,color="black",shape="box"];388 -> 500[label="",style="solid", color="black", weight=3]; 389[label="xuu18",fontsize=16,color="green",shape="box"];390 -> 35[label="",style="dashed", color="red", weight=0]; 390[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (Just xuu22) xuu23",fontsize=16,color="magenta"];390 -> 501[label="",style="dashed", color="magenta", weight=3]; 390 -> 502[label="",style="dashed", color="magenta", weight=3]; 390 -> 503[label="",style="dashed", color="magenta", weight=3]; 391[label="xuu17",fontsize=16,color="green",shape="box"];392[label="xuu20",fontsize=16,color="green",shape="box"];393 -> 1985[label="",style="dashed", color="red", weight=0]; 393[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="magenta"];393 -> 2004[label="",style="dashed", color="magenta", weight=3]; 393 -> 2005[label="",style="dashed", color="magenta", weight=3]; 393 -> 2006[label="",style="dashed", color="magenta", weight=3]; 394[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];394 -> 506[label="",style="dashed", color="green", weight=3]; 395[label="Nothing",fontsize=16,color="green",shape="box"];396[label="xuu64",fontsize=16,color="green",shape="box"];2244[label="compare1 Nothing Nothing True",fontsize=16,color="black",shape="box"];2244 -> 2314[label="",style="solid", color="black", weight=3]; 2245[label="compare1 Nothing (Just xuu3400) True",fontsize=16,color="black",shape="box"];2245 -> 2315[label="",style="solid", color="black", weight=3]; 2246[label="compare1 (Just xuu3300) Nothing False",fontsize=16,color="black",shape="box"];2246 -> 2316[label="",style="solid", color="black", weight=3]; 2247 -> 2317[label="",style="dashed", color="red", weight=0]; 2247[label="compare1 (Just xuu3300) (Just xuu3400) (xuu3300 <= xuu3400)",fontsize=16,color="magenta"];2247 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2320[label="",style="dashed", color="magenta", weight=3]; 397 -> 1985[label="",style="dashed", color="red", weight=0]; 397[label="compare2 Nothing (Just xuu600) (Nothing == Just xuu600)",fontsize=16,color="magenta"];397 -> 2007[label="",style="dashed", color="magenta", weight=3]; 397 -> 2008[label="",style="dashed", color="magenta", weight=3]; 397 -> 2009[label="",style="dashed", color="magenta", weight=3]; 398[label="FiniteMap.Branch Nothing (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];398 -> 512[label="",style="dashed", color="green", weight=3]; 399[label="Nothing",fontsize=16,color="green",shape="box"];400[label="xuu64",fontsize=16,color="green",shape="box"];404 -> 86[label="",style="dashed", color="red", weight=0]; 404[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];404 -> 513[label="",style="dashed", color="magenta", weight=3]; 404 -> 514[label="",style="dashed", color="magenta", weight=3]; 405[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];405 -> 515[label="",style="solid", color="black", weight=3]; 406[label="FiniteMap.mkBalBranch6MkBalBranch5 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];406 -> 516[label="",style="solid", color="black", weight=3]; 407 -> 1985[label="",style="dashed", color="red", weight=0]; 407[label="compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing)",fontsize=16,color="magenta"];407 -> 2010[label="",style="dashed", color="magenta", weight=3]; 407 -> 2011[label="",style="dashed", color="magenta", weight=3]; 407 -> 2012[label="",style="dashed", color="magenta", weight=3]; 408[label="FiniteMap.Branch (Just xuu311000) (FiniteMap.addListToFM0 xuu61 xuu31101) xuu62 xuu63 xuu64",fontsize=16,color="green",shape="box"];408 -> 524[label="",style="dashed", color="green", weight=3]; 409[label="Just xuu311000",fontsize=16,color="green",shape="box"];410[label="xuu64",fontsize=16,color="green",shape="box"];414 -> 86[label="",style="dashed", color="red", weight=0]; 414[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];414 -> 525[label="",style="dashed", color="magenta", weight=3]; 414 -> 526[label="",style="dashed", color="magenta", weight=3]; 415[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];415 -> 527[label="",style="solid", color="black", weight=3]; 416[label="FiniteMap.mkBalBranch6MkBalBranch5 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];416 -> 528[label="",style="solid", color="black", weight=3]; 2324[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4180[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 2336[label="",style="solid", color="blue", weight=3]; 4181[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 2337[label="",style="solid", color="blue", weight=3]; 4182[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 2338[label="",style="solid", color="blue", weight=3]; 4183[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 2339[label="",style="solid", color="blue", weight=3]; 4184[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 2340[label="",style="solid", color="blue", weight=3]; 4185[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 2341[label="",style="solid", color="blue", weight=3]; 4186[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 2342[label="",style="solid", color="blue", weight=3]; 4187[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 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"];2324 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 2344[label="",style="solid", color="blue", weight=3]; 4189[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 2345[label="",style="solid", color="blue", weight=3]; 4190[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 2346[label="",style="solid", color="blue", weight=3]; 4191[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 2347[label="",style="solid", color="blue", weight=3]; 4192[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 2348[label="",style="solid", color="blue", weight=3]; 4193[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 2349[label="",style="solid", color="blue", weight=3]; 2325 -> 2022[label="",style="dashed", color="red", weight=0]; 2325[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2325 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2323[label="xuu122 && xuu123",fontsize=16,color="burlywood",shape="triangle"];4194[label="xuu122/False",fontsize=10,color="white",style="solid",shape="box"];2323 -> 4194[label="",style="solid", color="burlywood", weight=9]; 4194 -> 2352[label="",style="solid", color="burlywood", weight=3]; 4195[label="xuu122/True",fontsize=10,color="white",style="solid",shape="box"];2323 -> 4195[label="",style="solid", color="burlywood", weight=9]; 4195 -> 2353[label="",style="solid", color="burlywood", weight=3]; 2259[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4196[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2259 -> 4196[label="",style="solid", color="burlywood", weight=9]; 4196 -> 2354[label="",style="solid", color="burlywood", weight=3]; 4197[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2259 -> 4197[label="",style="solid", color="burlywood", weight=9]; 4197 -> 2355[label="",style="solid", color="burlywood", weight=3]; 2260[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];2260 -> 2356[label="",style="solid", color="black", weight=3]; 2261[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4198[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2261 -> 4198[label="",style="solid", color="burlywood", weight=9]; 4198 -> 2357[label="",style="solid", color="burlywood", weight=3]; 4199[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2261 -> 4199[label="",style="solid", color="burlywood", weight=9]; 4199 -> 2358[label="",style="solid", color="burlywood", weight=3]; 2262[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4200[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2262 -> 4200[label="",style="solid", color="burlywood", weight=9]; 4200 -> 2359[label="",style="solid", color="burlywood", weight=3]; 4201[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2262 -> 4201[label="",style="solid", color="burlywood", weight=9]; 4201 -> 2360[label="",style="solid", color="burlywood", weight=3]; 2263[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];2263 -> 2361[label="",style="solid", color="black", weight=3]; 2264[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4202[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2264 -> 4202[label="",style="solid", color="burlywood", weight=9]; 4202 -> 2362[label="",style="solid", color="burlywood", weight=3]; 4203[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2264 -> 4203[label="",style="solid", color="burlywood", weight=9]; 4203 -> 2363[label="",style="solid", color="burlywood", weight=3]; 2265[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];4204[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2265 -> 4204[label="",style="solid", color="burlywood", weight=9]; 4204 -> 2364[label="",style="solid", color="burlywood", weight=3]; 4205[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2265 -> 4205[label="",style="solid", color="burlywood", weight=9]; 4205 -> 2365[label="",style="solid", color="burlywood", weight=3]; 2266[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];4206[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2266 -> 4206[label="",style="solid", color="burlywood", weight=9]; 4206 -> 2366[label="",style="solid", color="burlywood", weight=3]; 4207[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2266 -> 4207[label="",style="solid", color="burlywood", weight=9]; 4207 -> 2367[label="",style="solid", color="burlywood", weight=3]; 2267 -> 2023[label="",style="dashed", color="red", weight=0]; 2267[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2267 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2023[label="",style="dashed", color="red", weight=0]; 2268[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];2268 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2022[label="",style="dashed", color="red", weight=0]; 2269[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2269 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2023[label="",style="dashed", color="red", weight=0]; 2270[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2270 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2024[label="",style="dashed", color="red", weight=0]; 2271[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2271 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2025[label="",style="dashed", color="red", weight=0]; 2272[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2272 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2026[label="",style="dashed", color="red", weight=0]; 2273[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2273 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2027[label="",style="dashed", color="red", weight=0]; 2274[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2274 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2028[label="",style="dashed", color="red", weight=0]; 2275[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2275 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2029[label="",style="dashed", color="red", weight=0]; 2276[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2276 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2030[label="",style="dashed", color="red", weight=0]; 2277[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2277 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2031[label="",style="dashed", color="red", weight=0]; 2278[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2278 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2032[label="",style="dashed", color="red", weight=0]; 2279[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2279 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2033[label="",style="dashed", color="red", weight=0]; 2280[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2280 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2034[label="",style="dashed", color="red", weight=0]; 2281[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2281 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2282 -> 86[label="",style="dashed", color="red", weight=0]; 2282[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2282 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2022[label="",style="dashed", color="red", weight=0]; 2283[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2283 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2023[label="",style="dashed", color="red", weight=0]; 2284[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2284 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2024[label="",style="dashed", color="red", weight=0]; 2285[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2285 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2025[label="",style="dashed", color="red", weight=0]; 2286[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2286 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2026[label="",style="dashed", color="red", weight=0]; 2287[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2287 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2027[label="",style="dashed", color="red", weight=0]; 2288[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2288 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2028[label="",style="dashed", color="red", weight=0]; 2289[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2289 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2029[label="",style="dashed", color="red", weight=0]; 2290[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2290 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2030[label="",style="dashed", color="red", weight=0]; 2291[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2291 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2031[label="",style="dashed", color="red", weight=0]; 2292[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2292 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2032[label="",style="dashed", color="red", weight=0]; 2293[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2293 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2033[label="",style="dashed", color="red", weight=0]; 2294[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2294 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2034[label="",style="dashed", color="red", weight=0]; 2295[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2295 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2296 -> 86[label="",style="dashed", color="red", weight=0]; 2296[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2296 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2326[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4208[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4208[label="",style="solid", color="blue", weight=9]; 4208 -> 2428[label="",style="solid", color="blue", weight=3]; 4209[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 2429[label="",style="solid", color="blue", weight=3]; 4210[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 2430[label="",style="solid", color="blue", weight=3]; 4211[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 2431[label="",style="solid", color="blue", weight=3]; 4212[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4212[label="",style="solid", color="blue", weight=9]; 4212 -> 2432[label="",style="solid", color="blue", weight=3]; 4213[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4213[label="",style="solid", color="blue", weight=9]; 4213 -> 2433[label="",style="solid", color="blue", weight=3]; 4214[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 2434[label="",style="solid", color="blue", weight=3]; 4215[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 2435[label="",style="solid", color="blue", weight=3]; 4216[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 2436[label="",style="solid", color="blue", weight=3]; 4217[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 2437[label="",style="solid", color="blue", weight=3]; 4218[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 2438[label="",style="solid", color="blue", weight=3]; 4219[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 2439[label="",style="solid", color="blue", weight=3]; 4220[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 2440[label="",style="solid", color="blue", weight=3]; 4221[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 2441[label="",style="solid", color="blue", weight=3]; 2327[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4222[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 2442[label="",style="solid", color="blue", weight=3]; 4223[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 2443[label="",style="solid", color="blue", weight=3]; 4224[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 2444[label="",style="solid", color="blue", weight=3]; 4225[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 2445[label="",style="solid", color="blue", weight=3]; 4226[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 2446[label="",style="solid", color="blue", weight=3]; 4227[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 2447[label="",style="solid", color="blue", weight=3]; 4228[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 2448[label="",style="solid", color="blue", weight=3]; 4229[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 2449[label="",style="solid", color="blue", weight=3]; 4230[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 2450[label="",style="solid", color="blue", weight=3]; 4231[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 2451[label="",style="solid", color="blue", weight=3]; 4232[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 2452[label="",style="solid", color="blue", weight=3]; 4233[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 2453[label="",style="solid", color="blue", weight=3]; 4234[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 2454[label="",style="solid", color="blue", weight=3]; 4235[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 2455[label="",style="solid", color="blue", weight=3]; 2297[label="xuu3110000",fontsize=16,color="green",shape="box"];2298[label="xuu6000",fontsize=16,color="green",shape="box"];2299 -> 2022[label="",style="dashed", color="red", weight=0]; 2299[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2299 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2023[label="",style="dashed", color="red", weight=0]; 2300[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2300 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2024[label="",style="dashed", color="red", weight=0]; 2301[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2301 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2025[label="",style="dashed", color="red", weight=0]; 2302[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2302 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2026[label="",style="dashed", color="red", weight=0]; 2303[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2303 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2027[label="",style="dashed", color="red", weight=0]; 2304[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2304 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2028[label="",style="dashed", color="red", weight=0]; 2305[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2305 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2029[label="",style="dashed", color="red", weight=0]; 2306[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2306 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2030[label="",style="dashed", color="red", weight=0]; 2307[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2307 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2031[label="",style="dashed", color="red", weight=0]; 2308[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2308 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2032[label="",style="dashed", color="red", weight=0]; 2309[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2309 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2033[label="",style="dashed", color="red", weight=0]; 2310[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2310 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2034[label="",style="dashed", color="red", weight=0]; 2311[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2311 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2312 -> 86[label="",style="dashed", color="red", weight=0]; 2312[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2312 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2313[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];4236[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];2313 -> 4236[label="",style="solid", color="burlywood", weight=9]; 4236 -> 2484[label="",style="solid", color="burlywood", weight=3]; 4237[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];2313 -> 4237[label="",style="solid", color="burlywood", weight=9]; 4237 -> 2485[label="",style="solid", color="burlywood", weight=3]; 2328[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4238[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 2486[label="",style="solid", color="blue", weight=3]; 4239[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 2487[label="",style="solid", color="blue", weight=3]; 4240[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 2488[label="",style="solid", color="blue", weight=3]; 4241[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 2489[label="",style="solid", color="blue", weight=3]; 4242[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 2490[label="",style="solid", color="blue", weight=3]; 4243[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 2491[label="",style="solid", color="blue", weight=3]; 4244[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 2492[label="",style="solid", color="blue", weight=3]; 4245[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 2493[label="",style="solid", color="blue", weight=3]; 4246[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 2494[label="",style="solid", color="blue", weight=3]; 4247[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 2495[label="",style="solid", color="blue", weight=3]; 4248[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 2496[label="",style="solid", color="blue", weight=3]; 4249[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 2497[label="",style="solid", color="blue", weight=3]; 4250[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 2498[label="",style="solid", color="blue", weight=3]; 4251[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 2499[label="",style="solid", color="blue", weight=3]; 2329 -> 2323[label="",style="dashed", color="red", weight=0]; 2329[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];2329 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2330[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];4252[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 2502[label="",style="solid", color="blue", weight=3]; 4253[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 2503[label="",style="solid", color="blue", weight=3]; 2331[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4254[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 2504[label="",style="solid", color="blue", weight=3]; 4255[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2331 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 2505[label="",style="solid", color="blue", weight=3]; 499 -> 1985[label="",style="dashed", color="red", weight=0]; 499[label="compare2 (Just xuu22) (Just xuu17) (Just xuu22 == Just xuu17)",fontsize=16,color="magenta"];499 -> 2013[label="",style="dashed", color="magenta", weight=3]; 499 -> 2014[label="",style="dashed", color="magenta", weight=3]; 499 -> 2015[label="",style="dashed", color="magenta", weight=3]; 500[label="FiniteMap.Branch (Just xuu22) (FiniteMap.addListToFM0 xuu18 xuu23) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];500 -> 740[label="",style="dashed", color="green", weight=3]; 501[label="Just xuu22",fontsize=16,color="green",shape="box"];502[label="xuu23",fontsize=16,color="green",shape="box"];503[label="xuu21",fontsize=16,color="green",shape="box"];2004[label="Nothing",fontsize=16,color="green",shape="box"];2005[label="Nothing",fontsize=16,color="green",shape="box"];2006[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2006 -> 2036[label="",style="solid", color="black", weight=3]; 506[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="black",shape="triangle"];506 -> 745[label="",style="solid", color="black", weight=3]; 2314[label="LT",fontsize=16,color="green",shape="box"];2315[label="LT",fontsize=16,color="green",shape="box"];2316[label="compare0 (Just xuu3300) Nothing otherwise",fontsize=16,color="black",shape="box"];2316 -> 2506[label="",style="solid", color="black", weight=3]; 2318[label="xuu3400",fontsize=16,color="green",shape="box"];2319[label="xuu3300",fontsize=16,color="green",shape="box"];2320[label="xuu3300 <= xuu3400",fontsize=16,color="blue",shape="box"];4256[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 2507[label="",style="solid", color="blue", weight=3]; 4257[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 2508[label="",style="solid", color="blue", weight=3]; 4258[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 2509[label="",style="solid", color="blue", weight=3]; 4259[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 2510[label="",style="solid", color="blue", weight=3]; 4260[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 2511[label="",style="solid", color="blue", weight=3]; 4261[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4261[label="",style="solid", color="blue", weight=9]; 4261 -> 2512[label="",style="solid", color="blue", weight=3]; 4262[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 2513[label="",style="solid", color="blue", weight=3]; 4263[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 2514[label="",style="solid", color="blue", weight=3]; 4264[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 2515[label="",style="solid", color="blue", weight=3]; 4265[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 2516[label="",style="solid", color="blue", weight=3]; 4266[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 2517[label="",style="solid", color="blue", weight=3]; 4267[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 2518[label="",style="solid", color="blue", weight=3]; 4268[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 2519[label="",style="solid", color="blue", weight=3]; 4269[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 2520[label="",style="solid", color="blue", weight=3]; 2317[label="compare1 (Just xuu116) (Just xuu117) xuu118",fontsize=16,color="burlywood",shape="triangle"];4270[label="xuu118/False",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4270[label="",style="solid", color="burlywood", weight=9]; 4270 -> 2521[label="",style="solid", color="burlywood", weight=3]; 4271[label="xuu118/True",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4271[label="",style="solid", color="burlywood", weight=9]; 4271 -> 2522[label="",style="solid", color="burlywood", weight=3]; 2007[label="Just xuu600",fontsize=16,color="green",shape="box"];2008[label="Nothing",fontsize=16,color="green",shape="box"];2009[label="Nothing == Just xuu600",fontsize=16,color="black",shape="box"];2009 -> 2037[label="",style="solid", color="black", weight=3]; 512 -> 506[label="",style="dashed", color="red", weight=0]; 512[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];513[label="compare (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];513 -> 748[label="",style="solid", color="black", weight=3]; 514[label="LT",fontsize=16,color="green",shape="box"];515 -> 975[label="",style="dashed", color="red", weight=0]; 515[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64)",fontsize=16,color="magenta"];515 -> 976[label="",style="dashed", color="magenta", weight=3]; 516 -> 3793[label="",style="dashed", color="red", weight=0]; 516[label="FiniteMap.mkBranch (Pos (Succ Zero)) (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];516 -> 3794[label="",style="dashed", color="magenta", weight=3]; 516 -> 3795[label="",style="dashed", color="magenta", weight=3]; 516 -> 3796[label="",style="dashed", color="magenta", weight=3]; 516 -> 3797[label="",style="dashed", color="magenta", weight=3]; 516 -> 3798[label="",style="dashed", color="magenta", weight=3]; 2010[label="Nothing",fontsize=16,color="green",shape="box"];2011[label="Just xuu311000",fontsize=16,color="green",shape="box"];2012[label="Just xuu311000 == Nothing",fontsize=16,color="black",shape="box"];2012 -> 2038[label="",style="solid", color="black", weight=3]; 524 -> 506[label="",style="dashed", color="red", weight=0]; 524[label="FiniteMap.addListToFM0 xuu61 xuu31101",fontsize=16,color="magenta"];525[label="compare (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];525 -> 753[label="",style="solid", color="black", weight=3]; 526[label="LT",fontsize=16,color="green",shape="box"];527 -> 1005[label="",style="dashed", color="red", weight=0]; 527[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64)",fontsize=16,color="magenta"];527 -> 1006[label="",style="dashed", color="magenta", weight=3]; 528 -> 3793[label="",style="dashed", color="red", weight=0]; 528[label="FiniteMap.mkBranch (Pos (Succ Zero)) Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];528 -> 3799[label="",style="dashed", color="magenta", weight=3]; 528 -> 3800[label="",style="dashed", color="magenta", weight=3]; 528 -> 3801[label="",style="dashed", color="magenta", weight=3]; 528 -> 3802[label="",style="dashed", color="magenta", weight=3]; 528 -> 3803[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2022[label="",style="dashed", color="red", weight=0]; 2336[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2336 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2023[label="",style="dashed", color="red", weight=0]; 2337[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2337 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2024[label="",style="dashed", color="red", weight=0]; 2338[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2338 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2025[label="",style="dashed", color="red", weight=0]; 2339[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2339 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2026[label="",style="dashed", color="red", weight=0]; 2340[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2340 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2027[label="",style="dashed", color="red", weight=0]; 2341[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2341 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2028[label="",style="dashed", color="red", weight=0]; 2342[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2342 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2029[label="",style="dashed", color="red", weight=0]; 2343[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2343 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2030[label="",style="dashed", color="red", weight=0]; 2344[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2344 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2031[label="",style="dashed", color="red", weight=0]; 2345[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2345 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2032[label="",style="dashed", color="red", weight=0]; 2346[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2346 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2033[label="",style="dashed", color="red", weight=0]; 2347[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2347 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2034[label="",style="dashed", color="red", weight=0]; 2348[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2348 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2349 -> 86[label="",style="dashed", color="red", weight=0]; 2349[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2349 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2350[label="xuu3110001",fontsize=16,color="green",shape="box"];2351[label="xuu6001",fontsize=16,color="green",shape="box"];2352[label="False && xuu123",fontsize=16,color="black",shape="box"];2352 -> 2574[label="",style="solid", color="black", weight=3]; 2353[label="True && xuu123",fontsize=16,color="black",shape="box"];2353 -> 2575[label="",style="solid", color="black", weight=3]; 2354[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2354 -> 2576[label="",style="solid", color="black", weight=3]; 2355[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2355 -> 2577[label="",style="solid", color="black", weight=3]; 2356[label="False",fontsize=16,color="green",shape="box"];2357[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2357 -> 2578[label="",style="solid", color="black", weight=3]; 2358[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2358 -> 2579[label="",style="solid", color="black", weight=3]; 2359[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2359 -> 2580[label="",style="solid", color="black", weight=3]; 2360[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2360 -> 2581[label="",style="solid", color="black", weight=3]; 2361[label="False",fontsize=16,color="green",shape="box"];2362[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2362 -> 2582[label="",style="solid", color="black", weight=3]; 2363[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2363 -> 2583[label="",style="solid", color="black", weight=3]; 2364[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];2364 -> 2584[label="",style="solid", color="black", weight=3]; 2365[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2365 -> 2585[label="",style="solid", color="black", weight=3]; 2366[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];2366 -> 2586[label="",style="solid", color="black", weight=3]; 2367[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2367 -> 2587[label="",style="solid", color="black", weight=3]; 2368 -> 579[label="",style="dashed", color="red", weight=0]; 2368[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2369 -> 579[label="",style="dashed", color="red", weight=0]; 2369[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2369 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2370 -> 579[label="",style="dashed", color="red", weight=0]; 2370[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];2370 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2371 -> 579[label="",style="dashed", color="red", weight=0]; 2371[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];2371 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2372[label="xuu3110000",fontsize=16,color="green",shape="box"];2373[label="xuu6000",fontsize=16,color="green",shape="box"];2374[label="xuu3110000",fontsize=16,color="green",shape="box"];2375[label="xuu6000",fontsize=16,color="green",shape="box"];2376[label="xuu3110000",fontsize=16,color="green",shape="box"];2377[label="xuu6000",fontsize=16,color="green",shape="box"];2378[label="xuu3110000",fontsize=16,color="green",shape="box"];2379[label="xuu6000",fontsize=16,color="green",shape="box"];2380[label="xuu3110000",fontsize=16,color="green",shape="box"];2381[label="xuu6000",fontsize=16,color="green",shape="box"];2382[label="xuu3110000",fontsize=16,color="green",shape="box"];2383[label="xuu6000",fontsize=16,color="green",shape="box"];2384[label="xuu3110000",fontsize=16,color="green",shape="box"];2385[label="xuu6000",fontsize=16,color="green",shape="box"];2386[label="xuu3110000",fontsize=16,color="green",shape="box"];2387[label="xuu6000",fontsize=16,color="green",shape="box"];2388[label="xuu3110000",fontsize=16,color="green",shape="box"];2389[label="xuu6000",fontsize=16,color="green",shape="box"];2390[label="xuu3110000",fontsize=16,color="green",shape="box"];2391[label="xuu6000",fontsize=16,color="green",shape="box"];2392[label="xuu3110000",fontsize=16,color="green",shape="box"];2393[label="xuu6000",fontsize=16,color="green",shape="box"];2394[label="xuu3110000",fontsize=16,color="green",shape="box"];2395[label="xuu6000",fontsize=16,color="green",shape="box"];2396[label="xuu3110000",fontsize=16,color="green",shape="box"];2397[label="xuu6000",fontsize=16,color="green",shape="box"];2398[label="xuu3110000",fontsize=16,color="green",shape="box"];2399[label="xuu6000",fontsize=16,color="green",shape="box"];2400[label="xuu3110000",fontsize=16,color="green",shape="box"];2401[label="xuu6000",fontsize=16,color="green",shape="box"];2402[label="xuu3110000",fontsize=16,color="green",shape="box"];2403[label="xuu6000",fontsize=16,color="green",shape="box"];2404[label="xuu3110000",fontsize=16,color="green",shape="box"];2405[label="xuu6000",fontsize=16,color="green",shape="box"];2406[label="xuu3110000",fontsize=16,color="green",shape="box"];2407[label="xuu6000",fontsize=16,color="green",shape="box"];2408[label="xuu3110000",fontsize=16,color="green",shape="box"];2409[label="xuu6000",fontsize=16,color="green",shape="box"];2410[label="xuu3110000",fontsize=16,color="green",shape="box"];2411[label="xuu6000",fontsize=16,color="green",shape="box"];2412[label="xuu3110000",fontsize=16,color="green",shape="box"];2413[label="xuu6000",fontsize=16,color="green",shape="box"];2414[label="xuu3110000",fontsize=16,color="green",shape="box"];2415[label="xuu6000",fontsize=16,color="green",shape="box"];2416[label="xuu3110000",fontsize=16,color="green",shape="box"];2417[label="xuu6000",fontsize=16,color="green",shape="box"];2418[label="xuu3110000",fontsize=16,color="green",shape="box"];2419[label="xuu6000",fontsize=16,color="green",shape="box"];2420[label="xuu3110000",fontsize=16,color="green",shape="box"];2421[label="xuu6000",fontsize=16,color="green",shape="box"];2422[label="xuu3110000",fontsize=16,color="green",shape="box"];2423[label="xuu6000",fontsize=16,color="green",shape="box"];2424[label="xuu3110000",fontsize=16,color="green",shape="box"];2425[label="xuu6000",fontsize=16,color="green",shape="box"];2426[label="xuu3110000",fontsize=16,color="green",shape="box"];2427[label="xuu6000",fontsize=16,color="green",shape="box"];2428 -> 2022[label="",style="dashed", color="red", weight=0]; 2428[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2428 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2023[label="",style="dashed", color="red", weight=0]; 2429[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2429 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2024[label="",style="dashed", color="red", weight=0]; 2430[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2430 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2025[label="",style="dashed", color="red", weight=0]; 2431[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2431 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2026[label="",style="dashed", color="red", weight=0]; 2432[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2432 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2027[label="",style="dashed", color="red", weight=0]; 2433[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2433 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2028[label="",style="dashed", color="red", weight=0]; 2434[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2434 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2029[label="",style="dashed", color="red", weight=0]; 2435[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2435 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2030[label="",style="dashed", color="red", weight=0]; 2436[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2436 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2031[label="",style="dashed", color="red", weight=0]; 2437[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2437 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2032[label="",style="dashed", color="red", weight=0]; 2438[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2438 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2033[label="",style="dashed", color="red", weight=0]; 2439[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2439 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2034[label="",style="dashed", color="red", weight=0]; 2440[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2440 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2441 -> 86[label="",style="dashed", color="red", weight=0]; 2441[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2441 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2022[label="",style="dashed", color="red", weight=0]; 2442[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2442 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2023[label="",style="dashed", color="red", weight=0]; 2443[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2443 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2024[label="",style="dashed", color="red", weight=0]; 2444[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2444 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2025[label="",style="dashed", color="red", weight=0]; 2445[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2445 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2026[label="",style="dashed", color="red", weight=0]; 2446[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2446 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2027[label="",style="dashed", color="red", weight=0]; 2447[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2447 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2028[label="",style="dashed", color="red", weight=0]; 2448[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2448 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2029[label="",style="dashed", color="red", weight=0]; 2449[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2449 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2030[label="",style="dashed", color="red", weight=0]; 2450[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2450 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2031[label="",style="dashed", color="red", weight=0]; 2451[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2451 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2032[label="",style="dashed", color="red", weight=0]; 2452[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2452 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2033[label="",style="dashed", color="red", weight=0]; 2453[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2453 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2034[label="",style="dashed", color="red", weight=0]; 2454[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2454 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2455 -> 86[label="",style="dashed", color="red", weight=0]; 2455[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2455 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2456[label="xuu3110000",fontsize=16,color="green",shape="box"];2457[label="xuu6000",fontsize=16,color="green",shape="box"];2458[label="xuu3110000",fontsize=16,color="green",shape="box"];2459[label="xuu6000",fontsize=16,color="green",shape="box"];2460[label="xuu3110000",fontsize=16,color="green",shape="box"];2461[label="xuu6000",fontsize=16,color="green",shape="box"];2462[label="xuu3110000",fontsize=16,color="green",shape="box"];2463[label="xuu6000",fontsize=16,color="green",shape="box"];2464[label="xuu3110000",fontsize=16,color="green",shape="box"];2465[label="xuu6000",fontsize=16,color="green",shape="box"];2466[label="xuu3110000",fontsize=16,color="green",shape="box"];2467[label="xuu6000",fontsize=16,color="green",shape="box"];2468[label="xuu3110000",fontsize=16,color="green",shape="box"];2469[label="xuu6000",fontsize=16,color="green",shape="box"];2470[label="xuu3110000",fontsize=16,color="green",shape="box"];2471[label="xuu6000",fontsize=16,color="green",shape="box"];2472[label="xuu3110000",fontsize=16,color="green",shape="box"];2473[label="xuu6000",fontsize=16,color="green",shape="box"];2474[label="xuu3110000",fontsize=16,color="green",shape="box"];2475[label="xuu6000",fontsize=16,color="green",shape="box"];2476[label="xuu3110000",fontsize=16,color="green",shape="box"];2477[label="xuu6000",fontsize=16,color="green",shape="box"];2478[label="xuu3110000",fontsize=16,color="green",shape="box"];2479[label="xuu6000",fontsize=16,color="green",shape="box"];2480[label="xuu3110000",fontsize=16,color="green",shape="box"];2481[label="xuu6000",fontsize=16,color="green",shape="box"];2482[label="xuu3110000",fontsize=16,color="green",shape="box"];2483[label="xuu6000",fontsize=16,color="green",shape="box"];2484[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];4272[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4272[label="",style="solid", color="burlywood", weight=9]; 4272 -> 2650[label="",style="solid", color="burlywood", weight=3]; 4273[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2484 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 2651[label="",style="solid", color="burlywood", weight=3]; 2485[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];4274[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 2652[label="",style="solid", color="burlywood", weight=3]; 4275[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2485 -> 4275[label="",style="solid", color="burlywood", weight=9]; 4275 -> 2653[label="",style="solid", color="burlywood", weight=3]; 2486 -> 2022[label="",style="dashed", color="red", weight=0]; 2486[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2486 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2023[label="",style="dashed", color="red", weight=0]; 2487[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2487 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2024[label="",style="dashed", color="red", weight=0]; 2488[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2488 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2025[label="",style="dashed", color="red", weight=0]; 2489[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2489 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2026[label="",style="dashed", color="red", weight=0]; 2490[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2490 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2027[label="",style="dashed", color="red", weight=0]; 2491[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2491 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2028[label="",style="dashed", color="red", weight=0]; 2492[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2492 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2029[label="",style="dashed", color="red", weight=0]; 2493[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2493 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2030[label="",style="dashed", color="red", weight=0]; 2494[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2494 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2031[label="",style="dashed", color="red", weight=0]; 2495[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2495 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2032[label="",style="dashed", color="red", weight=0]; 2496[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2496 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2033[label="",style="dashed", color="red", weight=0]; 2497[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2497 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2034[label="",style="dashed", color="red", weight=0]; 2498[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2498 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2499 -> 86[label="",style="dashed", color="red", weight=0]; 2499[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2499 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2500[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];4276[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 2682[label="",style="solid", color="blue", weight=3]; 4277[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 2683[label="",style="solid", color="blue", weight=3]; 4278[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 2684[label="",style="solid", color="blue", weight=3]; 4279[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 2685[label="",style="solid", color="blue", weight=3]; 4280[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 2686[label="",style="solid", color="blue", weight=3]; 4281[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 2687[label="",style="solid", color="blue", weight=3]; 4282[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4282[label="",style="solid", color="blue", weight=9]; 4282 -> 2688[label="",style="solid", color="blue", weight=3]; 4283[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4283[label="",style="solid", color="blue", weight=9]; 4283 -> 2689[label="",style="solid", color="blue", weight=3]; 4284[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4284[label="",style="solid", color="blue", weight=9]; 4284 -> 2690[label="",style="solid", color="blue", weight=3]; 4285[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4285[label="",style="solid", color="blue", weight=9]; 4285 -> 2691[label="",style="solid", color="blue", weight=3]; 4286[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4286[label="",style="solid", color="blue", weight=9]; 4286 -> 2692[label="",style="solid", color="blue", weight=3]; 4287[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4287[label="",style="solid", color="blue", weight=9]; 4287 -> 2693[label="",style="solid", color="blue", weight=3]; 4288[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4288[label="",style="solid", color="blue", weight=9]; 4288 -> 2694[label="",style="solid", color="blue", weight=3]; 4289[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2500 -> 4289[label="",style="solid", color="blue", weight=9]; 4289 -> 2695[label="",style="solid", color="blue", weight=3]; 2501[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];4290[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4290[label="",style="solid", color="blue", weight=9]; 4290 -> 2696[label="",style="solid", color="blue", weight=3]; 4291[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4291[label="",style="solid", color="blue", weight=9]; 4291 -> 2697[label="",style="solid", color="blue", weight=3]; 4292[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4292[label="",style="solid", color="blue", weight=9]; 4292 -> 2698[label="",style="solid", color="blue", weight=3]; 4293[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4293[label="",style="solid", color="blue", weight=9]; 4293 -> 2699[label="",style="solid", color="blue", weight=3]; 4294[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 2700[label="",style="solid", color="blue", weight=3]; 4295[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 2701[label="",style="solid", color="blue", weight=3]; 4296[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4296[label="",style="solid", color="blue", weight=9]; 4296 -> 2702[label="",style="solid", color="blue", weight=3]; 4297[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4297[label="",style="solid", color="blue", weight=9]; 4297 -> 2703[label="",style="solid", color="blue", weight=3]; 4298[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 2704[label="",style="solid", color="blue", weight=3]; 4299[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 2705[label="",style="solid", color="blue", weight=3]; 4300[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 2706[label="",style="solid", color="blue", weight=3]; 4301[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 2707[label="",style="solid", color="blue", weight=3]; 4302[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 2708[label="",style="solid", color="blue", weight=3]; 4303[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2501 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 2709[label="",style="solid", color="blue", weight=3]; 2502 -> 2023[label="",style="dashed", color="red", weight=0]; 2502[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2502 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2030[label="",style="dashed", color="red", weight=0]; 2503[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2503 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2023[label="",style="dashed", color="red", weight=0]; 2504[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2504 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2030[label="",style="dashed", color="red", weight=0]; 2505[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2505 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2013[label="Just xuu17",fontsize=16,color="green",shape="box"];2014[label="Just xuu22",fontsize=16,color="green",shape="box"];2015[label="Just xuu22 == Just xuu17",fontsize=16,color="black",shape="box"];2015 -> 2039[label="",style="solid", color="black", weight=3]; 740 -> 506[label="",style="dashed", color="red", weight=0]; 740[label="FiniteMap.addListToFM0 xuu18 xuu23",fontsize=16,color="magenta"];740 -> 970[label="",style="dashed", color="magenta", weight=3]; 740 -> 971[label="",style="dashed", color="magenta", weight=3]; 2036[label="True",fontsize=16,color="green",shape="box"];745[label="xuu31101",fontsize=16,color="green",shape="box"];2506[label="compare0 (Just xuu3300) Nothing True",fontsize=16,color="black",shape="box"];2506 -> 2718[label="",style="solid", color="black", weight=3]; 2507[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4304[label="xuu3300/False",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4304[label="",style="solid", color="burlywood", weight=9]; 4304 -> 2719[label="",style="solid", color="burlywood", weight=3]; 4305[label="xuu3300/True",fontsize=10,color="white",style="solid",shape="box"];2507 -> 4305[label="",style="solid", color="burlywood", weight=9]; 4305 -> 2720[label="",style="solid", color="burlywood", weight=3]; 2508[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4306[label="xuu3300/(xuu33000,xuu33001)",fontsize=10,color="white",style="solid",shape="box"];2508 -> 4306[label="",style="solid", color="burlywood", weight=9]; 4306 -> 2721[label="",style="solid", color="burlywood", weight=3]; 2509[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2509 -> 2722[label="",style="solid", color="black", weight=3]; 2510[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4307[label="xuu3300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4307[label="",style="solid", color="burlywood", weight=9]; 4307 -> 2723[label="",style="solid", color="burlywood", weight=3]; 4308[label="xuu3300/Just xuu33000",fontsize=10,color="white",style="solid",shape="box"];2510 -> 4308[label="",style="solid", color="burlywood", weight=9]; 4308 -> 2724[label="",style="solid", color="burlywood", weight=3]; 2511[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4309[label="xuu3300/LT",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4309[label="",style="solid", color="burlywood", weight=9]; 4309 -> 2725[label="",style="solid", color="burlywood", weight=3]; 4310[label="xuu3300/EQ",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4310[label="",style="solid", color="burlywood", weight=9]; 4310 -> 2726[label="",style="solid", color="burlywood", weight=3]; 4311[label="xuu3300/GT",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4311[label="",style="solid", color="burlywood", weight=9]; 4311 -> 2727[label="",style="solid", color="burlywood", weight=3]; 2512[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2512 -> 2728[label="",style="solid", color="black", weight=3]; 2513[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2513 -> 2729[label="",style="solid", color="black", weight=3]; 2514[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2514 -> 2730[label="",style="solid", color="black", weight=3]; 2515[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4312[label="xuu3300/(xuu33000,xuu33001,xuu33002)",fontsize=10,color="white",style="solid",shape="box"];2515 -> 4312[label="",style="solid", color="burlywood", weight=9]; 4312 -> 2731[label="",style="solid", color="burlywood", weight=3]; 2516[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2516 -> 2732[label="",style="solid", color="black", weight=3]; 2517[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2517 -> 2733[label="",style="solid", color="black", weight=3]; 2518[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2518 -> 2734[label="",style="solid", color="black", weight=3]; 2519[label="xuu3300 <= xuu3400",fontsize=16,color="burlywood",shape="triangle"];4313[label="xuu3300/Left xuu33000",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4313[label="",style="solid", color="burlywood", weight=9]; 4313 -> 2735[label="",style="solid", color="burlywood", weight=3]; 4314[label="xuu3300/Right xuu33000",fontsize=10,color="white",style="solid",shape="box"];2519 -> 4314[label="",style="solid", color="burlywood", weight=9]; 4314 -> 2736[label="",style="solid", color="burlywood", weight=3]; 2520[label="xuu3300 <= xuu3400",fontsize=16,color="black",shape="triangle"];2520 -> 2737[label="",style="solid", color="black", weight=3]; 2521[label="compare1 (Just xuu116) (Just xuu117) False",fontsize=16,color="black",shape="box"];2521 -> 2738[label="",style="solid", color="black", weight=3]; 2522[label="compare1 (Just xuu116) (Just xuu117) True",fontsize=16,color="black",shape="box"];2522 -> 2739[label="",style="solid", color="black", weight=3]; 2037[label="False",fontsize=16,color="green",shape="box"];748[label="primCmpInt (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 + FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];748 -> 974[label="",style="solid", color="black", weight=3]; 976 -> 1491[label="",style="dashed", color="red", weight=0]; 976[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];976 -> 1492[label="",style="dashed", color="magenta", weight=3]; 976 -> 1493[label="",style="dashed", color="magenta", weight=3]; 975[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu60",fontsize=16,color="burlywood",shape="triangle"];4315[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];975 -> 4315[label="",style="solid", color="burlywood", weight=9]; 4315 -> 987[label="",style="solid", color="burlywood", weight=3]; 4316[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];975 -> 4316[label="",style="solid", color="burlywood", weight=9]; 4316 -> 988[label="",style="solid", color="burlywood", weight=3]; 3794[label="Zero",fontsize=16,color="green",shape="box"];3795[label="Just xuu600",fontsize=16,color="green",shape="box"];3796[label="xuu28",fontsize=16,color="green",shape="box"];3797[label="xuu64",fontsize=16,color="green",shape="box"];3798[label="xuu61",fontsize=16,color="green",shape="box"];3793[label="FiniteMap.mkBranch (Pos (Succ xuu191)) xuu192 xuu193 xuu194 xuu195",fontsize=16,color="black",shape="triangle"];3793 -> 3924[label="",style="solid", color="black", weight=3]; 2038[label="False",fontsize=16,color="green",shape="box"];753[label="primCmpInt (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 + FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];753 -> 1004[label="",style="solid", color="black", weight=3]; 1006 -> 1491[label="",style="dashed", color="red", weight=0]; 1006[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1006 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1005[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu63",fontsize=16,color="burlywood",shape="triangle"];4317[label="xuu63/False",fontsize=10,color="white",style="solid",shape="box"];1005 -> 4317[label="",style="solid", color="burlywood", weight=9]; 4317 -> 1011[label="",style="solid", color="burlywood", weight=3]; 4318[label="xuu63/True",fontsize=10,color="white",style="solid",shape="box"];1005 -> 4318[label="",style="solid", color="burlywood", weight=9]; 4318 -> 1012[label="",style="solid", color="burlywood", weight=3]; 3799[label="Zero",fontsize=16,color="green",shape="box"];3800[label="Nothing",fontsize=16,color="green",shape="box"];3801[label="xuu36",fontsize=16,color="green",shape="box"];3802[label="xuu64",fontsize=16,color="green",shape="box"];3803[label="xuu61",fontsize=16,color="green",shape="box"];2546[label="xuu3110000",fontsize=16,color="green",shape="box"];2547[label="xuu6000",fontsize=16,color="green",shape="box"];2548[label="xuu3110000",fontsize=16,color="green",shape="box"];2549[label="xuu6000",fontsize=16,color="green",shape="box"];2550[label="xuu3110000",fontsize=16,color="green",shape="box"];2551[label="xuu6000",fontsize=16,color="green",shape="box"];2552[label="xuu3110000",fontsize=16,color="green",shape="box"];2553[label="xuu6000",fontsize=16,color="green",shape="box"];2554[label="xuu3110000",fontsize=16,color="green",shape="box"];2555[label="xuu6000",fontsize=16,color="green",shape="box"];2556[label="xuu3110000",fontsize=16,color="green",shape="box"];2557[label="xuu6000",fontsize=16,color="green",shape="box"];2558[label="xuu3110000",fontsize=16,color="green",shape="box"];2559[label="xuu6000",fontsize=16,color="green",shape="box"];2560[label="xuu3110000",fontsize=16,color="green",shape="box"];2561[label="xuu6000",fontsize=16,color="green",shape="box"];2562[label="xuu3110000",fontsize=16,color="green",shape="box"];2563[label="xuu6000",fontsize=16,color="green",shape="box"];2564[label="xuu3110000",fontsize=16,color="green",shape="box"];2565[label="xuu6000",fontsize=16,color="green",shape="box"];2566[label="xuu3110000",fontsize=16,color="green",shape="box"];2567[label="xuu6000",fontsize=16,color="green",shape="box"];2568[label="xuu3110000",fontsize=16,color="green",shape="box"];2569[label="xuu6000",fontsize=16,color="green",shape="box"];2570[label="xuu3110000",fontsize=16,color="green",shape="box"];2571[label="xuu6000",fontsize=16,color="green",shape="box"];2572[label="xuu3110000",fontsize=16,color="green",shape="box"];2573[label="xuu6000",fontsize=16,color="green",shape="box"];2574[label="False",fontsize=16,color="green",shape="box"];2575[label="xuu123",fontsize=16,color="green",shape="box"];2576 -> 2313[label="",style="dashed", color="red", weight=0]; 2576[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2576 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2577[label="False",fontsize=16,color="green",shape="box"];2578[label="False",fontsize=16,color="green",shape="box"];2579[label="True",fontsize=16,color="green",shape="box"];2580[label="False",fontsize=16,color="green",shape="box"];2581[label="True",fontsize=16,color="green",shape="box"];2582 -> 2313[label="",style="dashed", color="red", weight=0]; 2582[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2582 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2583[label="False",fontsize=16,color="green",shape="box"];2584[label="False",fontsize=16,color="green",shape="box"];2585[label="True",fontsize=16,color="green",shape="box"];2586[label="False",fontsize=16,color="green",shape="box"];2587[label="True",fontsize=16,color="green",shape="box"];579[label="xuu3110000 * xuu6001",fontsize=16,color="black",shape="triangle"];579 -> 805[label="",style="solid", color="black", weight=3]; 2588[label="xuu3110001",fontsize=16,color="green",shape="box"];2589[label="xuu6000",fontsize=16,color="green",shape="box"];2590[label="xuu3110000",fontsize=16,color="green",shape="box"];2591[label="xuu6001",fontsize=16,color="green",shape="box"];2592[label="xuu3110001",fontsize=16,color="green",shape="box"];2593[label="xuu6000",fontsize=16,color="green",shape="box"];2594[label="xuu3110000",fontsize=16,color="green",shape="box"];2595[label="xuu6000",fontsize=16,color="green",shape="box"];2596[label="xuu3110000",fontsize=16,color="green",shape="box"];2597[label="xuu6000",fontsize=16,color="green",shape="box"];2598[label="xuu3110000",fontsize=16,color="green",shape="box"];2599[label="xuu6000",fontsize=16,color="green",shape="box"];2600[label="xuu3110000",fontsize=16,color="green",shape="box"];2601[label="xuu6000",fontsize=16,color="green",shape="box"];2602[label="xuu3110000",fontsize=16,color="green",shape="box"];2603[label="xuu6000",fontsize=16,color="green",shape="box"];2604[label="xuu3110000",fontsize=16,color="green",shape="box"];2605[label="xuu6000",fontsize=16,color="green",shape="box"];2606[label="xuu3110000",fontsize=16,color="green",shape="box"];2607[label="xuu6000",fontsize=16,color="green",shape="box"];2608[label="xuu3110000",fontsize=16,color="green",shape="box"];2609[label="xuu6000",fontsize=16,color="green",shape="box"];2610[label="xuu3110000",fontsize=16,color="green",shape="box"];2611[label="xuu6000",fontsize=16,color="green",shape="box"];2612[label="xuu3110000",fontsize=16,color="green",shape="box"];2613[label="xuu6000",fontsize=16,color="green",shape="box"];2614[label="xuu3110000",fontsize=16,color="green",shape="box"];2615[label="xuu6000",fontsize=16,color="green",shape="box"];2616[label="xuu3110000",fontsize=16,color="green",shape="box"];2617[label="xuu6000",fontsize=16,color="green",shape="box"];2618[label="xuu3110000",fontsize=16,color="green",shape="box"];2619[label="xuu6000",fontsize=16,color="green",shape="box"];2620[label="xuu3110000",fontsize=16,color="green",shape="box"];2621[label="xuu6000",fontsize=16,color="green",shape="box"];2622[label="xuu3110001",fontsize=16,color="green",shape="box"];2623[label="xuu6001",fontsize=16,color="green",shape="box"];2624[label="xuu3110001",fontsize=16,color="green",shape="box"];2625[label="xuu6001",fontsize=16,color="green",shape="box"];2626[label="xuu3110001",fontsize=16,color="green",shape="box"];2627[label="xuu6001",fontsize=16,color="green",shape="box"];2628[label="xuu3110001",fontsize=16,color="green",shape="box"];2629[label="xuu6001",fontsize=16,color="green",shape="box"];2630[label="xuu3110001",fontsize=16,color="green",shape="box"];2631[label="xuu6001",fontsize=16,color="green",shape="box"];2632[label="xuu3110001",fontsize=16,color="green",shape="box"];2633[label="xuu6001",fontsize=16,color="green",shape="box"];2634[label="xuu3110001",fontsize=16,color="green",shape="box"];2635[label="xuu6001",fontsize=16,color="green",shape="box"];2636[label="xuu3110001",fontsize=16,color="green",shape="box"];2637[label="xuu6001",fontsize=16,color="green",shape="box"];2638[label="xuu3110001",fontsize=16,color="green",shape="box"];2639[label="xuu6001",fontsize=16,color="green",shape="box"];2640[label="xuu3110001",fontsize=16,color="green",shape="box"];2641[label="xuu6001",fontsize=16,color="green",shape="box"];2642[label="xuu3110001",fontsize=16,color="green",shape="box"];2643[label="xuu6001",fontsize=16,color="green",shape="box"];2644[label="xuu3110001",fontsize=16,color="green",shape="box"];2645[label="xuu6001",fontsize=16,color="green",shape="box"];2646[label="xuu3110001",fontsize=16,color="green",shape="box"];2647[label="xuu6001",fontsize=16,color="green",shape="box"];2648[label="xuu3110001",fontsize=16,color="green",shape="box"];2649[label="xuu6001",fontsize=16,color="green",shape="box"];2650[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];2650 -> 2762[label="",style="solid", color="black", weight=3]; 2651[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2651 -> 2763[label="",style="solid", color="black", weight=3]; 2652[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];2652 -> 2764[label="",style="solid", color="black", weight=3]; 2653[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2653 -> 2765[label="",style="solid", color="black", weight=3]; 2654[label="xuu3110000",fontsize=16,color="green",shape="box"];2655[label="xuu6000",fontsize=16,color="green",shape="box"];2656[label="xuu3110000",fontsize=16,color="green",shape="box"];2657[label="xuu6000",fontsize=16,color="green",shape="box"];2658[label="xuu3110000",fontsize=16,color="green",shape="box"];2659[label="xuu6000",fontsize=16,color="green",shape="box"];2660[label="xuu3110000",fontsize=16,color="green",shape="box"];2661[label="xuu6000",fontsize=16,color="green",shape="box"];2662[label="xuu3110000",fontsize=16,color="green",shape="box"];2663[label="xuu6000",fontsize=16,color="green",shape="box"];2664[label="xuu3110000",fontsize=16,color="green",shape="box"];2665[label="xuu6000",fontsize=16,color="green",shape="box"];2666[label="xuu3110000",fontsize=16,color="green",shape="box"];2667[label="xuu6000",fontsize=16,color="green",shape="box"];2668[label="xuu3110000",fontsize=16,color="green",shape="box"];2669[label="xuu6000",fontsize=16,color="green",shape="box"];2670[label="xuu3110000",fontsize=16,color="green",shape="box"];2671[label="xuu6000",fontsize=16,color="green",shape="box"];2672[label="xuu3110000",fontsize=16,color="green",shape="box"];2673[label="xuu6000",fontsize=16,color="green",shape="box"];2674[label="xuu3110000",fontsize=16,color="green",shape="box"];2675[label="xuu6000",fontsize=16,color="green",shape="box"];2676[label="xuu3110000",fontsize=16,color="green",shape="box"];2677[label="xuu6000",fontsize=16,color="green",shape="box"];2678[label="xuu3110000",fontsize=16,color="green",shape="box"];2679[label="xuu6000",fontsize=16,color="green",shape="box"];2680[label="xuu3110000",fontsize=16,color="green",shape="box"];2681[label="xuu6000",fontsize=16,color="green",shape="box"];2682 -> 2022[label="",style="dashed", color="red", weight=0]; 2682[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2682 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2023[label="",style="dashed", color="red", weight=0]; 2683[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2683 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2024[label="",style="dashed", color="red", weight=0]; 2684[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2684 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2025[label="",style="dashed", color="red", weight=0]; 2685[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2685 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2026[label="",style="dashed", color="red", weight=0]; 2686[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2686 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2027[label="",style="dashed", color="red", weight=0]; 2687[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2687 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2028[label="",style="dashed", color="red", weight=0]; 2688[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2688 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2029[label="",style="dashed", color="red", weight=0]; 2689[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2689 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2030[label="",style="dashed", color="red", weight=0]; 2690[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2690 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2031[label="",style="dashed", color="red", weight=0]; 2691[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2691 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2032[label="",style="dashed", color="red", weight=0]; 2692[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2692 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2033[label="",style="dashed", color="red", weight=0]; 2693[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2693 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2034[label="",style="dashed", color="red", weight=0]; 2694[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2694 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2695 -> 86[label="",style="dashed", color="red", weight=0]; 2695[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2695 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2022[label="",style="dashed", color="red", weight=0]; 2696[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2696 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2023[label="",style="dashed", color="red", weight=0]; 2697[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2697 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2024[label="",style="dashed", color="red", weight=0]; 2698[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2698 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2025[label="",style="dashed", color="red", weight=0]; 2699[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2699 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2026[label="",style="dashed", color="red", weight=0]; 2700[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2700 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2027[label="",style="dashed", color="red", weight=0]; 2701[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2701 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2028[label="",style="dashed", color="red", weight=0]; 2702[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2702 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2029[label="",style="dashed", color="red", weight=0]; 2703[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2703 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2030[label="",style="dashed", color="red", weight=0]; 2704[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2704 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2031[label="",style="dashed", color="red", weight=0]; 2705[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2705 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2032[label="",style="dashed", color="red", weight=0]; 2706[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2706 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2033[label="",style="dashed", color="red", weight=0]; 2707[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2707 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2034[label="",style="dashed", color="red", weight=0]; 2708[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2708 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2709 -> 86[label="",style="dashed", color="red", weight=0]; 2709[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2709 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2710[label="xuu3110000",fontsize=16,color="green",shape="box"];2711[label="xuu6000",fontsize=16,color="green",shape="box"];2712[label="xuu3110000",fontsize=16,color="green",shape="box"];2713[label="xuu6000",fontsize=16,color="green",shape="box"];2714[label="xuu3110001",fontsize=16,color="green",shape="box"];2715[label="xuu6001",fontsize=16,color="green",shape="box"];2716[label="xuu3110001",fontsize=16,color="green",shape="box"];2717[label="xuu6001",fontsize=16,color="green",shape="box"];2039[label="xuu22 == xuu17",fontsize=16,color="blue",shape="box"];4319[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 2061[label="",style="solid", color="blue", weight=3]; 4320[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 2062[label="",style="solid", color="blue", weight=3]; 4321[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 2063[label="",style="solid", color="blue", weight=3]; 4322[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 2064[label="",style="solid", color="blue", weight=3]; 4323[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4323[label="",style="solid", color="blue", weight=9]; 4323 -> 2065[label="",style="solid", color="blue", weight=3]; 4324[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 2066[label="",style="solid", color="blue", weight=3]; 4325[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 2067[label="",style="solid", color="blue", weight=3]; 4326[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4326[label="",style="solid", color="blue", weight=9]; 4326 -> 2068[label="",style="solid", color="blue", weight=3]; 4327[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4327[label="",style="solid", color="blue", weight=9]; 4327 -> 2069[label="",style="solid", color="blue", weight=3]; 4328[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4328[label="",style="solid", color="blue", weight=9]; 4328 -> 2070[label="",style="solid", color="blue", weight=3]; 4329[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4329[label="",style="solid", color="blue", weight=9]; 4329 -> 2071[label="",style="solid", color="blue", weight=3]; 4330[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4330[label="",style="solid", color="blue", weight=9]; 4330 -> 2072[label="",style="solid", color="blue", weight=3]; 4331[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4331[label="",style="solid", color="blue", weight=9]; 4331 -> 2073[label="",style="solid", color="blue", weight=3]; 4332[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2039 -> 4332[label="",style="solid", color="blue", weight=9]; 4332 -> 2074[label="",style="solid", color="blue", weight=3]; 970[label="xuu18",fontsize=16,color="green",shape="box"];971[label="xuu23",fontsize=16,color="green",shape="box"];2718[label="GT",fontsize=16,color="green",shape="box"];2719[label="False <= xuu3400",fontsize=16,color="burlywood",shape="box"];4333[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2719 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 2822[label="",style="solid", color="burlywood", weight=3]; 4334[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2719 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 2823[label="",style="solid", color="burlywood", weight=3]; 2720[label="True <= xuu3400",fontsize=16,color="burlywood",shape="box"];4335[label="xuu3400/False",fontsize=10,color="white",style="solid",shape="box"];2720 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 2824[label="",style="solid", color="burlywood", weight=3]; 4336[label="xuu3400/True",fontsize=10,color="white",style="solid",shape="box"];2720 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 2825[label="",style="solid", color="burlywood", weight=3]; 2721[label="(xuu33000,xuu33001) <= xuu3400",fontsize=16,color="burlywood",shape="box"];4337[label="xuu3400/(xuu34000,xuu34001)",fontsize=10,color="white",style="solid",shape="box"];2721 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 2826[label="",style="solid", color="burlywood", weight=3]; 2722 -> 2843[label="",style="dashed", color="red", weight=0]; 2722[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2722 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2723[label="Nothing <= xuu3400",fontsize=16,color="burlywood",shape="box"];4338[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 2828[label="",style="solid", color="burlywood", weight=3]; 4339[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2723 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 2829[label="",style="solid", color="burlywood", weight=3]; 2724[label="Just xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4340[label="xuu3400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 2830[label="",style="solid", color="burlywood", weight=3]; 4341[label="xuu3400/Just xuu34000",fontsize=10,color="white",style="solid",shape="box"];2724 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 2831[label="",style="solid", color="burlywood", weight=3]; 2725[label="LT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4342[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2725 -> 4342[label="",style="solid", color="burlywood", weight=9]; 4342 -> 2832[label="",style="solid", color="burlywood", weight=3]; 4343[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2725 -> 4343[label="",style="solid", color="burlywood", weight=9]; 4343 -> 2833[label="",style="solid", color="burlywood", weight=3]; 4344[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2725 -> 4344[label="",style="solid", color="burlywood", weight=9]; 4344 -> 2834[label="",style="solid", color="burlywood", weight=3]; 2726[label="EQ <= xuu3400",fontsize=16,color="burlywood",shape="box"];4345[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2726 -> 4345[label="",style="solid", color="burlywood", weight=9]; 4345 -> 2835[label="",style="solid", color="burlywood", weight=3]; 4346[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2726 -> 4346[label="",style="solid", color="burlywood", weight=9]; 4346 -> 2836[label="",style="solid", color="burlywood", weight=3]; 4347[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2726 -> 4347[label="",style="solid", color="burlywood", weight=9]; 4347 -> 2837[label="",style="solid", color="burlywood", weight=3]; 2727[label="GT <= xuu3400",fontsize=16,color="burlywood",shape="box"];4348[label="xuu3400/LT",fontsize=10,color="white",style="solid",shape="box"];2727 -> 4348[label="",style="solid", color="burlywood", weight=9]; 4348 -> 2838[label="",style="solid", color="burlywood", weight=3]; 4349[label="xuu3400/EQ",fontsize=10,color="white",style="solid",shape="box"];2727 -> 4349[label="",style="solid", color="burlywood", weight=9]; 4349 -> 2839[label="",style="solid", color="burlywood", weight=3]; 4350[label="xuu3400/GT",fontsize=10,color="white",style="solid",shape="box"];2727 -> 4350[label="",style="solid", color="burlywood", weight=9]; 4350 -> 2840[label="",style="solid", color="burlywood", weight=3]; 2728 -> 2843[label="",style="dashed", color="red", weight=0]; 2728[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2728 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2843[label="",style="dashed", color="red", weight=0]; 2729[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2729 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2843[label="",style="dashed", color="red", weight=0]; 2730[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2730 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2731[label="(xuu33000,xuu33001,xuu33002) <= xuu3400",fontsize=16,color="burlywood",shape="box"];4351[label="xuu3400/(xuu34000,xuu34001,xuu34002)",fontsize=10,color="white",style="solid",shape="box"];2731 -> 4351[label="",style="solid", color="burlywood", weight=9]; 4351 -> 2852[label="",style="solid", color="burlywood", weight=3]; 2732 -> 2843[label="",style="dashed", color="red", weight=0]; 2732[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2732 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2843[label="",style="dashed", color="red", weight=0]; 2733[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2733 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2843[label="",style="dashed", color="red", weight=0]; 2734[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2734 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2735[label="Left xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4352[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4352[label="",style="solid", color="burlywood", weight=9]; 4352 -> 2853[label="",style="solid", color="burlywood", weight=3]; 4353[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4353[label="",style="solid", color="burlywood", weight=9]; 4353 -> 2854[label="",style="solid", color="burlywood", weight=3]; 2736[label="Right xuu33000 <= xuu3400",fontsize=16,color="burlywood",shape="box"];4354[label="xuu3400/Left xuu34000",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4354[label="",style="solid", color="burlywood", weight=9]; 4354 -> 2855[label="",style="solid", color="burlywood", weight=3]; 4355[label="xuu3400/Right xuu34000",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4355[label="",style="solid", color="burlywood", weight=9]; 4355 -> 2856[label="",style="solid", color="burlywood", weight=3]; 2737 -> 2843[label="",style="dashed", color="red", weight=0]; 2737[label="compare xuu3300 xuu3400 /= GT",fontsize=16,color="magenta"];2737 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2738[label="compare0 (Just xuu116) (Just xuu117) otherwise",fontsize=16,color="black",shape="box"];2738 -> 2857[label="",style="solid", color="black", weight=3]; 2739[label="LT",fontsize=16,color="green",shape="box"];974[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];974 -> 1110[label="",style="solid", color="black", weight=3]; 1492[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];1492 -> 1502[label="",style="solid", color="black", weight=3]; 1493 -> 579[label="",style="dashed", color="red", weight=0]; 1493[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1493 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1491[label="xuu83 > xuu82",fontsize=16,color="black",shape="triangle"];1491 -> 1505[label="",style="solid", color="black", weight=3]; 987[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];987 -> 1114[label="",style="solid", color="black", weight=3]; 988[label="FiniteMap.mkBalBranch6MkBalBranch4 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];988 -> 1115[label="",style="solid", color="black", weight=3]; 3924[label="FiniteMap.mkBranchResult xuu192 xuu193 xuu195 xuu194",fontsize=16,color="black",shape="box"];3924 -> 3995[label="",style="solid", color="black", weight=3]; 1004[label="primCmpInt (primPlusInt (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1004 -> 1145[label="",style="solid", color="black", weight=3]; 1494[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];1494 -> 1506[label="",style="solid", color="black", weight=3]; 1495 -> 579[label="",style="dashed", color="red", weight=0]; 1495[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1495 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1011[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];1011 -> 1149[label="",style="solid", color="black", weight=3]; 1012[label="FiniteMap.mkBalBranch6MkBalBranch4 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1012 -> 1150[label="",style="solid", color="black", weight=3]; 2758[label="xuu31100000",fontsize=16,color="green",shape="box"];2759[label="xuu60000",fontsize=16,color="green",shape="box"];2760[label="xuu31100000",fontsize=16,color="green",shape="box"];2761[label="xuu60000",fontsize=16,color="green",shape="box"];805[label="primMulInt xuu3110000 xuu6001",fontsize=16,color="burlywood",shape="triangle"];4356[label="xuu3110000/Pos xuu31100000",fontsize=10,color="white",style="solid",shape="box"];805 -> 4356[label="",style="solid", color="burlywood", weight=9]; 4356 -> 1018[label="",style="solid", color="burlywood", weight=3]; 4357[label="xuu3110000/Neg xuu31100000",fontsize=10,color="white",style="solid",shape="box"];805 -> 4357[label="",style="solid", color="burlywood", weight=9]; 4357 -> 1019[label="",style="solid", color="burlywood", weight=3]; 2762 -> 2313[label="",style="dashed", color="red", weight=0]; 2762[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2762 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2763[label="False",fontsize=16,color="green",shape="box"];2764[label="False",fontsize=16,color="green",shape="box"];2765[label="True",fontsize=16,color="green",shape="box"];2766[label="xuu3110001",fontsize=16,color="green",shape="box"];2767[label="xuu6001",fontsize=16,color="green",shape="box"];2768[label="xuu3110001",fontsize=16,color="green",shape="box"];2769[label="xuu6001",fontsize=16,color="green",shape="box"];2770[label="xuu3110001",fontsize=16,color="green",shape="box"];2771[label="xuu6001",fontsize=16,color="green",shape="box"];2772[label="xuu3110001",fontsize=16,color="green",shape="box"];2773[label="xuu6001",fontsize=16,color="green",shape="box"];2774[label="xuu3110001",fontsize=16,color="green",shape="box"];2775[label="xuu6001",fontsize=16,color="green",shape="box"];2776[label="xuu3110001",fontsize=16,color="green",shape="box"];2777[label="xuu6001",fontsize=16,color="green",shape="box"];2778[label="xuu3110001",fontsize=16,color="green",shape="box"];2779[label="xuu6001",fontsize=16,color="green",shape="box"];2780[label="xuu3110001",fontsize=16,color="green",shape="box"];2781[label="xuu6001",fontsize=16,color="green",shape="box"];2782[label="xuu3110001",fontsize=16,color="green",shape="box"];2783[label="xuu6001",fontsize=16,color="green",shape="box"];2784[label="xuu3110001",fontsize=16,color="green",shape="box"];2785[label="xuu6001",fontsize=16,color="green",shape="box"];2786[label="xuu3110001",fontsize=16,color="green",shape="box"];2787[label="xuu6001",fontsize=16,color="green",shape="box"];2788[label="xuu3110001",fontsize=16,color="green",shape="box"];2789[label="xuu6001",fontsize=16,color="green",shape="box"];2790[label="xuu3110001",fontsize=16,color="green",shape="box"];2791[label="xuu6001",fontsize=16,color="green",shape="box"];2792[label="xuu3110001",fontsize=16,color="green",shape="box"];2793[label="xuu6001",fontsize=16,color="green",shape="box"];2794[label="xuu3110002",fontsize=16,color="green",shape="box"];2795[label="xuu6002",fontsize=16,color="green",shape="box"];2796[label="xuu3110002",fontsize=16,color="green",shape="box"];2797[label="xuu6002",fontsize=16,color="green",shape="box"];2798[label="xuu3110002",fontsize=16,color="green",shape="box"];2799[label="xuu6002",fontsize=16,color="green",shape="box"];2800[label="xuu3110002",fontsize=16,color="green",shape="box"];2801[label="xuu6002",fontsize=16,color="green",shape="box"];2802[label="xuu3110002",fontsize=16,color="green",shape="box"];2803[label="xuu6002",fontsize=16,color="green",shape="box"];2804[label="xuu3110002",fontsize=16,color="green",shape="box"];2805[label="xuu6002",fontsize=16,color="green",shape="box"];2806[label="xuu3110002",fontsize=16,color="green",shape="box"];2807[label="xuu6002",fontsize=16,color="green",shape="box"];2808[label="xuu3110002",fontsize=16,color="green",shape="box"];2809[label="xuu6002",fontsize=16,color="green",shape="box"];2810[label="xuu3110002",fontsize=16,color="green",shape="box"];2811[label="xuu6002",fontsize=16,color="green",shape="box"];2812[label="xuu3110002",fontsize=16,color="green",shape="box"];2813[label="xuu6002",fontsize=16,color="green",shape="box"];2814[label="xuu3110002",fontsize=16,color="green",shape="box"];2815[label="xuu6002",fontsize=16,color="green",shape="box"];2816[label="xuu3110002",fontsize=16,color="green",shape="box"];2817[label="xuu6002",fontsize=16,color="green",shape="box"];2818[label="xuu3110002",fontsize=16,color="green",shape="box"];2819[label="xuu6002",fontsize=16,color="green",shape="box"];2820[label="xuu3110002",fontsize=16,color="green",shape="box"];2821[label="xuu6002",fontsize=16,color="green",shape="box"];2061 -> 2022[label="",style="dashed", color="red", weight=0]; 2061[label="xuu22 == xuu17",fontsize=16,color="magenta"];2061 -> 2115[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2116[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2023[label="",style="dashed", color="red", weight=0]; 2062[label="xuu22 == xuu17",fontsize=16,color="magenta"];2062 -> 2117[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2118[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2024[label="",style="dashed", color="red", weight=0]; 2063[label="xuu22 == xuu17",fontsize=16,color="magenta"];2063 -> 2119[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2120[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2025[label="",style="dashed", color="red", weight=0]; 2064[label="xuu22 == xuu17",fontsize=16,color="magenta"];2064 -> 2121[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2122[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2026[label="",style="dashed", color="red", weight=0]; 2065[label="xuu22 == xuu17",fontsize=16,color="magenta"];2065 -> 2123[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2027[label="",style="dashed", color="red", weight=0]; 2066[label="xuu22 == xuu17",fontsize=16,color="magenta"];2066 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2028[label="",style="dashed", color="red", weight=0]; 2067[label="xuu22 == xuu17",fontsize=16,color="magenta"];2067 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2029[label="",style="dashed", color="red", weight=0]; 2068[label="xuu22 == xuu17",fontsize=16,color="magenta"];2068 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2030[label="",style="dashed", color="red", weight=0]; 2069[label="xuu22 == xuu17",fontsize=16,color="magenta"];2069 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2031[label="",style="dashed", color="red", weight=0]; 2070[label="xuu22 == xuu17",fontsize=16,color="magenta"];2070 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2032[label="",style="dashed", color="red", weight=0]; 2071[label="xuu22 == xuu17",fontsize=16,color="magenta"];2071 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2033[label="",style="dashed", color="red", weight=0]; 2072[label="xuu22 == xuu17",fontsize=16,color="magenta"];2072 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2034[label="",style="dashed", color="red", weight=0]; 2073[label="xuu22 == xuu17",fontsize=16,color="magenta"];2073 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2074 -> 86[label="",style="dashed", color="red", weight=0]; 2074[label="xuu22 == xuu17",fontsize=16,color="magenta"];2074 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2822[label="False <= False",fontsize=16,color="black",shape="box"];2822 -> 2860[label="",style="solid", color="black", weight=3]; 2823[label="False <= True",fontsize=16,color="black",shape="box"];2823 -> 2861[label="",style="solid", color="black", weight=3]; 2824[label="True <= False",fontsize=16,color="black",shape="box"];2824 -> 2862[label="",style="solid", color="black", weight=3]; 2825[label="True <= True",fontsize=16,color="black",shape="box"];2825 -> 2863[label="",style="solid", color="black", weight=3]; 2826[label="(xuu33000,xuu33001) <= (xuu34000,xuu34001)",fontsize=16,color="black",shape="box"];2826 -> 2864[label="",style="solid", color="black", weight=3]; 2844[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4358[label="xuu3300/xuu33000 : xuu33001",fontsize=10,color="white",style="solid",shape="box"];2844 -> 4358[label="",style="solid", color="burlywood", weight=9]; 4358 -> 2865[label="",style="solid", color="burlywood", weight=3]; 4359[label="xuu3300/[]",fontsize=10,color="white",style="solid",shape="box"];2844 -> 4359[label="",style="solid", color="burlywood", weight=9]; 4359 -> 2866[label="",style="solid", color="burlywood", weight=3]; 2843[label="xuu133 /= GT",fontsize=16,color="black",shape="triangle"];2843 -> 2867[label="",style="solid", color="black", weight=3]; 2828[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2828 -> 2868[label="",style="solid", color="black", weight=3]; 2829[label="Nothing <= Just xuu34000",fontsize=16,color="black",shape="box"];2829 -> 2869[label="",style="solid", color="black", weight=3]; 2830[label="Just xuu33000 <= Nothing",fontsize=16,color="black",shape="box"];2830 -> 2870[label="",style="solid", color="black", weight=3]; 2831[label="Just xuu33000 <= Just xuu34000",fontsize=16,color="black",shape="box"];2831 -> 2871[label="",style="solid", color="black", weight=3]; 2832[label="LT <= LT",fontsize=16,color="black",shape="box"];2832 -> 2872[label="",style="solid", color="black", weight=3]; 2833[label="LT <= EQ",fontsize=16,color="black",shape="box"];2833 -> 2873[label="",style="solid", color="black", weight=3]; 2834[label="LT <= GT",fontsize=16,color="black",shape="box"];2834 -> 2874[label="",style="solid", color="black", weight=3]; 2835[label="EQ <= LT",fontsize=16,color="black",shape="box"];2835 -> 2875[label="",style="solid", color="black", weight=3]; 2836[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2836 -> 2876[label="",style="solid", color="black", weight=3]; 2837[label="EQ <= GT",fontsize=16,color="black",shape="box"];2837 -> 2877[label="",style="solid", color="black", weight=3]; 2838[label="GT <= LT",fontsize=16,color="black",shape="box"];2838 -> 2878[label="",style="solid", color="black", weight=3]; 2839[label="GT <= EQ",fontsize=16,color="black",shape="box"];2839 -> 2879[label="",style="solid", color="black", weight=3]; 2840[label="GT <= GT",fontsize=16,color="black",shape="box"];2840 -> 2880[label="",style="solid", color="black", weight=3]; 2845[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4360[label="xuu3300/Integer xuu33000",fontsize=10,color="white",style="solid",shape="box"];2845 -> 4360[label="",style="solid", color="burlywood", weight=9]; 4360 -> 2881[label="",style="solid", color="burlywood", weight=3]; 2846[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2846 -> 2882[label="",style="solid", color="black", weight=3]; 2847 -> 1171[label="",style="dashed", color="red", weight=0]; 2847[label="compare xuu3300 xuu3400",fontsize=16,color="magenta"];2847 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2852[label="(xuu33000,xuu33001,xuu33002) <= (xuu34000,xuu34001,xuu34002)",fontsize=16,color="black",shape="box"];2852 -> 2902[label="",style="solid", color="black", weight=3]; 2848[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2848 -> 2885[label="",style="solid", color="black", weight=3]; 2849[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4361[label="xuu3300/()",fontsize=10,color="white",style="solid",shape="box"];2849 -> 4361[label="",style="solid", color="burlywood", weight=9]; 4361 -> 2886[label="",style="solid", color="burlywood", weight=3]; 2850[label="compare xuu3300 xuu3400",fontsize=16,color="black",shape="triangle"];2850 -> 2887[label="",style="solid", color="black", weight=3]; 2853[label="Left xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2853 -> 2903[label="",style="solid", color="black", weight=3]; 2854[label="Left xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2854 -> 2904[label="",style="solid", color="black", weight=3]; 2855[label="Right xuu33000 <= Left xuu34000",fontsize=16,color="black",shape="box"];2855 -> 2905[label="",style="solid", color="black", weight=3]; 2856[label="Right xuu33000 <= Right xuu34000",fontsize=16,color="black",shape="box"];2856 -> 2906[label="",style="solid", color="black", weight=3]; 2851[label="compare xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4362[label="xuu3300/xuu33000 :% xuu33001",fontsize=10,color="white",style="solid",shape="box"];2851 -> 4362[label="",style="solid", color="burlywood", weight=9]; 4362 -> 2888[label="",style="solid", color="burlywood", weight=3]; 2857[label="compare0 (Just xuu116) (Just xuu117) True",fontsize=16,color="black",shape="box"];2857 -> 2907[label="",style="solid", color="black", weight=3]; 1110[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu28) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4363[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1110 -> 4363[label="",style="solid", color="burlywood", weight=9]; 4363 -> 1213[label="",style="solid", color="burlywood", weight=3]; 4364[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1110 -> 4364[label="",style="solid", color="burlywood", weight=9]; 4364 -> 1214[label="",style="solid", color="burlywood", weight=3]; 1502[label="FiniteMap.sizeFM xuu64",fontsize=16,color="burlywood",shape="triangle"];4365[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1502 -> 4365[label="",style="solid", color="burlywood", weight=9]; 4365 -> 1525[label="",style="solid", color="burlywood", weight=3]; 4366[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1502 -> 4366[label="",style="solid", color="burlywood", weight=9]; 4366 -> 1526[label="",style="solid", color="burlywood", weight=3]; 1503[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1503 -> 1527[label="",style="solid", color="black", weight=3]; 1504 -> 1500[label="",style="dashed", color="red", weight=0]; 1504[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1505 -> 86[label="",style="dashed", color="red", weight=0]; 1505[label="compare xuu83 xuu82 == GT",fontsize=16,color="magenta"];1505 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1487[label="",style="dashed", color="red", weight=0]; 1114[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 (FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64)",fontsize=16,color="magenta"];1114 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1115[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 xuu64 xuu28 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4367[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1115 -> 4367[label="",style="solid", color="burlywood", weight=9]; 4367 -> 1222[label="",style="solid", color="burlywood", weight=3]; 4368[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1115 -> 4368[label="",style="solid", color="burlywood", weight=9]; 4368 -> 1223[label="",style="solid", color="burlywood", weight=3]; 3995[label="FiniteMap.Branch xuu192 xuu193 (FiniteMap.mkBranchUnbox xuu195 xuu192 xuu194 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu192 xuu194 + FiniteMap.mkBranchRight_size xuu195 xuu192 xuu194)) xuu194 xuu195",fontsize=16,color="green",shape="box"];3995 -> 4001[label="",style="dashed", color="green", weight=3]; 1145[label="primCmpInt (primPlusInt (FiniteMap.sizeFM xuu36) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="burlywood",shape="box"];4369[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1145 -> 4369[label="",style="solid", color="burlywood", weight=9]; 4369 -> 1225[label="",style="solid", color="burlywood", weight=3]; 4370[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1145 -> 4370[label="",style="solid", color="burlywood", weight=9]; 4370 -> 1226[label="",style="solid", color="burlywood", weight=3]; 1506 -> 1502[label="",style="dashed", color="red", weight=0]; 1506[label="FiniteMap.sizeFM xuu64",fontsize=16,color="magenta"];1507 -> 1503[label="",style="dashed", color="red", weight=0]; 1507[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1508[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="black",shape="triangle"];1508 -> 1530[label="",style="solid", color="black", weight=3]; 1149 -> 1521[label="",style="dashed", color="red", weight=0]; 1149[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 (FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64)",fontsize=16,color="magenta"];1149 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1150[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 xuu64 xuu36 xuu64 xuu64",fontsize=16,color="burlywood",shape="box"];4371[label="xuu64/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1150 -> 4371[label="",style="solid", color="burlywood", weight=9]; 4371 -> 1233[label="",style="solid", color="burlywood", weight=3]; 4372[label="xuu64/FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644",fontsize=10,color="white",style="solid",shape="box"];1150 -> 4372[label="",style="solid", color="burlywood", weight=9]; 4372 -> 1234[label="",style="solid", color="burlywood", weight=3]; 1018[label="primMulInt (Pos xuu31100000) xuu6001",fontsize=16,color="burlywood",shape="box"];4373[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];1018 -> 4373[label="",style="solid", color="burlywood", weight=9]; 4373 -> 1152[label="",style="solid", color="burlywood", weight=3]; 4374[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];1018 -> 4374[label="",style="solid", color="burlywood", weight=9]; 4374 -> 1153[label="",style="solid", color="burlywood", weight=3]; 1019[label="primMulInt (Neg xuu31100000) xuu6001",fontsize=16,color="burlywood",shape="box"];4375[label="xuu6001/Pos xuu60010",fontsize=10,color="white",style="solid",shape="box"];1019 -> 4375[label="",style="solid", color="burlywood", weight=9]; 4375 -> 1154[label="",style="solid", color="burlywood", weight=3]; 4376[label="xuu6001/Neg xuu60010",fontsize=10,color="white",style="solid",shape="box"];1019 -> 4376[label="",style="solid", color="burlywood", weight=9]; 4376 -> 1155[label="",style="solid", color="burlywood", weight=3]; 2858[label="xuu31100000",fontsize=16,color="green",shape="box"];2859[label="xuu60000",fontsize=16,color="green",shape="box"];2115[label="xuu22",fontsize=16,color="green",shape="box"];2116[label="xuu17",fontsize=16,color="green",shape="box"];2117[label="xuu22",fontsize=16,color="green",shape="box"];2118[label="xuu17",fontsize=16,color="green",shape="box"];2119[label="xuu22",fontsize=16,color="green",shape="box"];2120[label="xuu17",fontsize=16,color="green",shape="box"];2121[label="xuu22",fontsize=16,color="green",shape="box"];2122[label="xuu17",fontsize=16,color="green",shape="box"];2123[label="xuu22",fontsize=16,color="green",shape="box"];2124[label="xuu17",fontsize=16,color="green",shape="box"];2125[label="xuu22",fontsize=16,color="green",shape="box"];2126[label="xuu17",fontsize=16,color="green",shape="box"];2127[label="xuu22",fontsize=16,color="green",shape="box"];2128[label="xuu17",fontsize=16,color="green",shape="box"];2129[label="xuu22",fontsize=16,color="green",shape="box"];2130[label="xuu17",fontsize=16,color="green",shape="box"];2131[label="xuu22",fontsize=16,color="green",shape="box"];2132[label="xuu17",fontsize=16,color="green",shape="box"];2133[label="xuu22",fontsize=16,color="green",shape="box"];2134[label="xuu17",fontsize=16,color="green",shape="box"];2135[label="xuu22",fontsize=16,color="green",shape="box"];2136[label="xuu17",fontsize=16,color="green",shape="box"];2137[label="xuu22",fontsize=16,color="green",shape="box"];2138[label="xuu17",fontsize=16,color="green",shape="box"];2139[label="xuu22",fontsize=16,color="green",shape="box"];2140[label="xuu17",fontsize=16,color="green",shape="box"];2141[label="xuu22",fontsize=16,color="green",shape="box"];2142[label="xuu17",fontsize=16,color="green",shape="box"];2860[label="True",fontsize=16,color="green",shape="box"];2861[label="True",fontsize=16,color="green",shape="box"];2862[label="False",fontsize=16,color="green",shape="box"];2863[label="True",fontsize=16,color="green",shape="box"];2864 -> 2969[label="",style="dashed", color="red", weight=0]; 2864[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];2864 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2864 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2865[label="compare (xuu33000 : xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4377[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4377[label="",style="solid", color="burlywood", weight=9]; 4377 -> 2913[label="",style="solid", color="burlywood", weight=3]; 4378[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2865 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 2914[label="",style="solid", color="burlywood", weight=3]; 2866[label="compare [] xuu3400",fontsize=16,color="burlywood",shape="box"];4379[label="xuu3400/xuu34000 : xuu34001",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4379[label="",style="solid", color="burlywood", weight=9]; 4379 -> 2915[label="",style="solid", color="burlywood", weight=3]; 4380[label="xuu3400/[]",fontsize=10,color="white",style="solid",shape="box"];2866 -> 4380[label="",style="solid", color="burlywood", weight=9]; 4380 -> 2916[label="",style="solid", color="burlywood", weight=3]; 2867 -> 2917[label="",style="dashed", color="red", weight=0]; 2867[label="not (xuu133 == GT)",fontsize=16,color="magenta"];2867 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2868[label="True",fontsize=16,color="green",shape="box"];2869[label="True",fontsize=16,color="green",shape="box"];2870[label="False",fontsize=16,color="green",shape="box"];2871[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4381[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4381[label="",style="solid", color="blue", weight=9]; 4381 -> 2919[label="",style="solid", color="blue", weight=3]; 4382[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4382[label="",style="solid", color="blue", weight=9]; 4382 -> 2920[label="",style="solid", color="blue", weight=3]; 4383[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4383[label="",style="solid", color="blue", weight=9]; 4383 -> 2921[label="",style="solid", color="blue", weight=3]; 4384[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4384[label="",style="solid", color="blue", weight=9]; 4384 -> 2922[label="",style="solid", color="blue", weight=3]; 4385[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4385[label="",style="solid", color="blue", weight=9]; 4385 -> 2923[label="",style="solid", color="blue", weight=3]; 4386[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4386[label="",style="solid", color="blue", weight=9]; 4386 -> 2924[label="",style="solid", color="blue", weight=3]; 4387[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4387[label="",style="solid", color="blue", weight=9]; 4387 -> 2925[label="",style="solid", color="blue", weight=3]; 4388[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4388[label="",style="solid", color="blue", weight=9]; 4388 -> 2926[label="",style="solid", color="blue", weight=3]; 4389[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4389[label="",style="solid", color="blue", weight=9]; 4389 -> 2927[label="",style="solid", color="blue", weight=3]; 4390[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4390[label="",style="solid", color="blue", weight=9]; 4390 -> 2928[label="",style="solid", color="blue", weight=3]; 4391[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4391[label="",style="solid", color="blue", weight=9]; 4391 -> 2929[label="",style="solid", color="blue", weight=3]; 4392[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4392[label="",style="solid", color="blue", weight=9]; 4392 -> 2930[label="",style="solid", color="blue", weight=3]; 4393[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4393[label="",style="solid", color="blue", weight=9]; 4393 -> 2931[label="",style="solid", color="blue", weight=3]; 4394[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2871 -> 4394[label="",style="solid", color="blue", weight=9]; 4394 -> 2932[label="",style="solid", color="blue", weight=3]; 2872[label="True",fontsize=16,color="green",shape="box"];2873[label="True",fontsize=16,color="green",shape="box"];2874[label="True",fontsize=16,color="green",shape="box"];2875[label="False",fontsize=16,color="green",shape="box"];2876[label="True",fontsize=16,color="green",shape="box"];2877[label="True",fontsize=16,color="green",shape="box"];2878[label="False",fontsize=16,color="green",shape="box"];2879[label="False",fontsize=16,color="green",shape="box"];2880[label="True",fontsize=16,color="green",shape="box"];2881[label="compare (Integer xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4395[label="xuu3400/Integer xuu34000",fontsize=10,color="white",style="solid",shape="box"];2881 -> 4395[label="",style="solid", color="burlywood", weight=9]; 4395 -> 2933[label="",style="solid", color="burlywood", weight=3]; 2882[label="primCmpDouble xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4396[label="xuu3300/Double xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2882 -> 4396[label="",style="solid", color="burlywood", weight=9]; 4396 -> 2934[label="",style="solid", color="burlywood", weight=3]; 2883[label="xuu3300",fontsize=16,color="green",shape="box"];2884[label="xuu3400",fontsize=16,color="green",shape="box"];1171[label="compare xuu33 xuu34",fontsize=16,color="black",shape="triangle"];1171 -> 1273[label="",style="solid", color="black", weight=3]; 2902 -> 2969[label="",style="dashed", color="red", weight=0]; 2902[label="xuu33000 < xuu34000 || xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];2902 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2902 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2885[label="primCmpFloat xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4397[label="xuu3300/Float xuu33000 xuu33001",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4397[label="",style="solid", color="burlywood", weight=9]; 4397 -> 2935[label="",style="solid", color="burlywood", weight=3]; 2886[label="compare () xuu3400",fontsize=16,color="burlywood",shape="box"];4398[label="xuu3400/()",fontsize=10,color="white",style="solid",shape="box"];2886 -> 4398[label="",style="solid", color="burlywood", weight=9]; 4398 -> 2936[label="",style="solid", color="burlywood", weight=3]; 2887[label="primCmpChar xuu3300 xuu3400",fontsize=16,color="burlywood",shape="box"];4399[label="xuu3300/Char xuu33000",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4399[label="",style="solid", color="burlywood", weight=9]; 4399 -> 2937[label="",style="solid", color="burlywood", weight=3]; 2903[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4400[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4400[label="",style="solid", color="blue", weight=9]; 4400 -> 2938[label="",style="solid", color="blue", weight=3]; 4401[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4401[label="",style="solid", color="blue", weight=9]; 4401 -> 2939[label="",style="solid", color="blue", weight=3]; 4402[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4402[label="",style="solid", color="blue", weight=9]; 4402 -> 2940[label="",style="solid", color="blue", weight=3]; 4403[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4403[label="",style="solid", color="blue", weight=9]; 4403 -> 2941[label="",style="solid", color="blue", weight=3]; 4404[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4404[label="",style="solid", color="blue", weight=9]; 4404 -> 2942[label="",style="solid", color="blue", weight=3]; 4405[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4405[label="",style="solid", color="blue", weight=9]; 4405 -> 2943[label="",style="solid", color="blue", weight=3]; 4406[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4406[label="",style="solid", color="blue", weight=9]; 4406 -> 2944[label="",style="solid", color="blue", weight=3]; 4407[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4407[label="",style="solid", color="blue", weight=9]; 4407 -> 2945[label="",style="solid", color="blue", weight=3]; 4408[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4408[label="",style="solid", color="blue", weight=9]; 4408 -> 2946[label="",style="solid", color="blue", weight=3]; 4409[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4409[label="",style="solid", color="blue", weight=9]; 4409 -> 2947[label="",style="solid", color="blue", weight=3]; 4410[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4410[label="",style="solid", color="blue", weight=9]; 4410 -> 2948[label="",style="solid", color="blue", weight=3]; 4411[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4411[label="",style="solid", color="blue", weight=9]; 4411 -> 2949[label="",style="solid", color="blue", weight=3]; 4412[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4412[label="",style="solid", color="blue", weight=9]; 4412 -> 2950[label="",style="solid", color="blue", weight=3]; 4413[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2903 -> 4413[label="",style="solid", color="blue", weight=9]; 4413 -> 2951[label="",style="solid", color="blue", weight=3]; 2904[label="True",fontsize=16,color="green",shape="box"];2905[label="False",fontsize=16,color="green",shape="box"];2906[label="xuu33000 <= xuu34000",fontsize=16,color="blue",shape="box"];4414[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4414[label="",style="solid", color="blue", weight=9]; 4414 -> 2952[label="",style="solid", color="blue", weight=3]; 4415[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4415[label="",style="solid", color="blue", weight=9]; 4415 -> 2953[label="",style="solid", color="blue", weight=3]; 4416[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4416[label="",style="solid", color="blue", weight=9]; 4416 -> 2954[label="",style="solid", color="blue", weight=3]; 4417[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4417[label="",style="solid", color="blue", weight=9]; 4417 -> 2955[label="",style="solid", color="blue", weight=3]; 4418[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4418[label="",style="solid", color="blue", weight=9]; 4418 -> 2956[label="",style="solid", color="blue", weight=3]; 4419[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4419[label="",style="solid", color="blue", weight=9]; 4419 -> 2957[label="",style="solid", color="blue", weight=3]; 4420[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4420[label="",style="solid", color="blue", weight=9]; 4420 -> 2958[label="",style="solid", color="blue", weight=3]; 4421[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4421[label="",style="solid", color="blue", weight=9]; 4421 -> 2959[label="",style="solid", color="blue", weight=3]; 4422[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4422[label="",style="solid", color="blue", weight=9]; 4422 -> 2960[label="",style="solid", color="blue", weight=3]; 4423[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4423[label="",style="solid", color="blue", weight=9]; 4423 -> 2961[label="",style="solid", color="blue", weight=3]; 4424[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4424[label="",style="solid", color="blue", weight=9]; 4424 -> 2962[label="",style="solid", color="blue", weight=3]; 4425[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4425[label="",style="solid", color="blue", weight=9]; 4425 -> 2963[label="",style="solid", color="blue", weight=3]; 4426[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4426[label="",style="solid", color="blue", weight=9]; 4426 -> 2964[label="",style="solid", color="blue", weight=3]; 4427[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4427[label="",style="solid", color="blue", weight=9]; 4427 -> 2965[label="",style="solid", color="blue", weight=3]; 2888[label="compare (xuu33000 :% xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4428[label="xuu3400/xuu34000 :% xuu34001",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4428[label="",style="solid", color="burlywood", weight=9]; 4428 -> 2966[label="",style="solid", color="burlywood", weight=3]; 2907[label="GT",fontsize=16,color="green",shape="box"];1213[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1213 -> 1352[label="",style="solid", color="black", weight=3]; 1214[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1214 -> 1353[label="",style="solid", color="black", weight=3]; 1525[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1525 -> 1693[label="",style="solid", color="black", weight=3]; 1526[label="FiniteMap.sizeFM (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1526 -> 1694[label="",style="solid", color="black", weight=3]; 1527[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1500[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="black",shape="triangle"];1500 -> 1511[label="",style="solid", color="black", weight=3]; 1528 -> 1171[label="",style="dashed", color="red", weight=0]; 1528[label="compare xuu83 xuu82",fontsize=16,color="magenta"];1528 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1529[label="GT",fontsize=16,color="green",shape="box"];1488 -> 1491[label="",style="dashed", color="red", weight=0]; 1488[label="FiniteMap.mkBalBranch6Size_l (Just xuu600) xuu61 xuu28 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1488 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1487[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 xuu80",fontsize=16,color="burlywood",shape="triangle"];4429[label="xuu80/False",fontsize=10,color="white",style="solid",shape="box"];1487 -> 4429[label="",style="solid", color="burlywood", weight=9]; 4429 -> 1509[label="",style="solid", color="burlywood", weight=3]; 4430[label="xuu80/True",fontsize=10,color="white",style="solid",shape="box"];1487 -> 4430[label="",style="solid", color="burlywood", weight=9]; 4430 -> 1510[label="",style="solid", color="burlywood", weight=3]; 1222[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 FiniteMap.EmptyFM xuu28 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1222 -> 1361[label="",style="solid", color="black", weight=3]; 1223[label="FiniteMap.mkBalBranch6MkBalBranch0 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1223 -> 1362[label="",style="solid", color="black", weight=3]; 4001[label="FiniteMap.mkBranchUnbox xuu195 xuu192 xuu194 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu192 xuu194 + FiniteMap.mkBranchRight_size xuu195 xuu192 xuu194)",fontsize=16,color="black",shape="box"];4001 -> 4007[label="",style="solid", color="black", weight=3]; 1225[label="primCmpInt (primPlusInt (FiniteMap.sizeFM FiniteMap.EmptyFM) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1225 -> 1364[label="",style="solid", color="black", weight=3]; 1226[label="primCmpInt (primPlusInt (FiniteMap.sizeFM (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];1226 -> 1365[label="",style="solid", color="black", weight=3]; 1530 -> 1502[label="",style="dashed", color="red", weight=0]; 1530[label="FiniteMap.sizeFM xuu36",fontsize=16,color="magenta"];1530 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1491[label="",style="dashed", color="red", weight=0]; 1522[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1522 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1521[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 xuu86",fontsize=16,color="burlywood",shape="triangle"];4431[label="xuu86/False",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4431[label="",style="solid", color="burlywood", weight=9]; 4431 -> 1533[label="",style="solid", color="burlywood", weight=3]; 4432[label="xuu86/True",fontsize=10,color="white",style="solid",shape="box"];1521 -> 4432[label="",style="solid", color="burlywood", weight=9]; 4432 -> 1534[label="",style="solid", color="burlywood", weight=3]; 1233[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 FiniteMap.EmptyFM xuu36 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1233 -> 1372[label="",style="solid", color="black", weight=3]; 1234[label="FiniteMap.mkBalBranch6MkBalBranch0 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1234 -> 1373[label="",style="solid", color="black", weight=3]; 1152[label="primMulInt (Pos xuu31100000) (Pos xuu60010)",fontsize=16,color="black",shape="box"];1152 -> 1236[label="",style="solid", color="black", weight=3]; 1153[label="primMulInt (Pos xuu31100000) (Neg xuu60010)",fontsize=16,color="black",shape="box"];1153 -> 1237[label="",style="solid", color="black", weight=3]; 1154[label="primMulInt (Neg xuu31100000) (Pos xuu60010)",fontsize=16,color="black",shape="box"];1154 -> 1238[label="",style="solid", color="black", weight=3]; 1155[label="primMulInt (Neg xuu31100000) (Neg xuu60010)",fontsize=16,color="black",shape="box"];1155 -> 1239[label="",style="solid", color="black", weight=3]; 2970[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4433[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4433[label="",style="solid", color="blue", weight=9]; 4433 -> 2976[label="",style="solid", color="blue", weight=3]; 4434[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4434[label="",style="solid", color="blue", weight=9]; 4434 -> 2977[label="",style="solid", color="blue", weight=3]; 4435[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4435[label="",style="solid", color="blue", weight=9]; 4435 -> 2978[label="",style="solid", color="blue", weight=3]; 4436[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4436[label="",style="solid", color="blue", weight=9]; 4436 -> 2979[label="",style="solid", color="blue", weight=3]; 4437[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4437[label="",style="solid", color="blue", weight=9]; 4437 -> 2980[label="",style="solid", color="blue", weight=3]; 4438[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4438[label="",style="solid", color="blue", weight=9]; 4438 -> 2981[label="",style="solid", color="blue", weight=3]; 4439[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4439[label="",style="solid", color="blue", weight=9]; 4439 -> 2982[label="",style="solid", color="blue", weight=3]; 4440[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4440[label="",style="solid", color="blue", weight=9]; 4440 -> 2983[label="",style="solid", color="blue", weight=3]; 4441[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4441[label="",style="solid", color="blue", weight=9]; 4441 -> 2984[label="",style="solid", color="blue", weight=3]; 4442[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4442[label="",style="solid", color="blue", weight=9]; 4442 -> 2985[label="",style="solid", color="blue", weight=3]; 4443[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4443[label="",style="solid", color="blue", weight=9]; 4443 -> 2986[label="",style="solid", color="blue", weight=3]; 4444[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4444[label="",style="solid", color="blue", weight=9]; 4444 -> 2987[label="",style="solid", color="blue", weight=3]; 4445[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4445[label="",style="solid", color="blue", weight=9]; 4445 -> 2988[label="",style="solid", color="blue", weight=3]; 4446[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2970 -> 4446[label="",style="solid", color="blue", weight=9]; 4446 -> 2989[label="",style="solid", color="blue", weight=3]; 2971 -> 2323[label="",style="dashed", color="red", weight=0]; 2971[label="xuu33000 == xuu34000 && xuu33001 <= xuu34001",fontsize=16,color="magenta"];2971 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2971 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2969[label="xuu147 || xuu148",fontsize=16,color="burlywood",shape="triangle"];4447[label="xuu147/False",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4447[label="",style="solid", color="burlywood", weight=9]; 4447 -> 2992[label="",style="solid", color="burlywood", weight=3]; 4448[label="xuu147/True",fontsize=10,color="white",style="solid",shape="box"];2969 -> 4448[label="",style="solid", color="burlywood", weight=9]; 4448 -> 2993[label="",style="solid", color="burlywood", weight=3]; 2913[label="compare (xuu33000 : xuu33001) (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2913 -> 2994[label="",style="solid", color="black", weight=3]; 2914[label="compare (xuu33000 : xuu33001) []",fontsize=16,color="black",shape="box"];2914 -> 2995[label="",style="solid", color="black", weight=3]; 2915[label="compare [] (xuu34000 : xuu34001)",fontsize=16,color="black",shape="box"];2915 -> 2996[label="",style="solid", color="black", weight=3]; 2916[label="compare [] []",fontsize=16,color="black",shape="box"];2916 -> 2997[label="",style="solid", color="black", weight=3]; 2918 -> 86[label="",style="dashed", color="red", weight=0]; 2918[label="xuu133 == GT",fontsize=16,color="magenta"];2918 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2918 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2917[label="not xuu143",fontsize=16,color="burlywood",shape="triangle"];4449[label="xuu143/False",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4449[label="",style="solid", color="burlywood", weight=9]; 4449 -> 3000[label="",style="solid", color="burlywood", weight=3]; 4450[label="xuu143/True",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4450[label="",style="solid", color="burlywood", weight=9]; 4450 -> 3001[label="",style="solid", color="burlywood", weight=3]; 2919 -> 2507[label="",style="dashed", color="red", weight=0]; 2919[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2919 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2919 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2920 -> 2508[label="",style="dashed", color="red", weight=0]; 2920[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2920 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3005[label="",style="dashed", color="magenta", weight=3]; 2921 -> 2509[label="",style="dashed", color="red", weight=0]; 2921[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2921 -> 3006[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3007[label="",style="dashed", color="magenta", weight=3]; 2922 -> 2510[label="",style="dashed", color="red", weight=0]; 2922[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2922 -> 3008[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3009[label="",style="dashed", color="magenta", weight=3]; 2923 -> 2511[label="",style="dashed", color="red", weight=0]; 2923[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2923 -> 3010[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3011[label="",style="dashed", color="magenta", weight=3]; 2924 -> 2512[label="",style="dashed", color="red", weight=0]; 2924[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2924 -> 3012[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3013[label="",style="dashed", color="magenta", weight=3]; 2925 -> 2513[label="",style="dashed", color="red", weight=0]; 2925[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2925 -> 3014[label="",style="dashed", color="magenta", weight=3]; 2925 -> 3015[label="",style="dashed", color="magenta", weight=3]; 2926 -> 2514[label="",style="dashed", color="red", weight=0]; 2926[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2926 -> 3016[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3017[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2515[label="",style="dashed", color="red", weight=0]; 2927[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2927 -> 3018[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3019[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2516[label="",style="dashed", color="red", weight=0]; 2928[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2928 -> 3020[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3021[label="",style="dashed", color="magenta", weight=3]; 2929 -> 2517[label="",style="dashed", color="red", weight=0]; 2929[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2929 -> 3022[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3023[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2518[label="",style="dashed", color="red", weight=0]; 2930[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2930 -> 3024[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3025[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2519[label="",style="dashed", color="red", weight=0]; 2931[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2931 -> 3026[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3027[label="",style="dashed", color="magenta", weight=3]; 2932 -> 2520[label="",style="dashed", color="red", weight=0]; 2932[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2932 -> 3028[label="",style="dashed", color="magenta", weight=3]; 2932 -> 3029[label="",style="dashed", color="magenta", weight=3]; 2933[label="compare (Integer xuu33000) (Integer xuu34000)",fontsize=16,color="black",shape="box"];2933 -> 3030[label="",style="solid", color="black", weight=3]; 2934[label="primCmpDouble (Double xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4451[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2934 -> 4451[label="",style="solid", color="burlywood", weight=9]; 4451 -> 3031[label="",style="solid", color="burlywood", weight=3]; 4452[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2934 -> 4452[label="",style="solid", color="burlywood", weight=9]; 4452 -> 3032[label="",style="solid", color="burlywood", weight=3]; 1273[label="primCmpInt xuu33 xuu34",fontsize=16,color="burlywood",shape="triangle"];4453[label="xuu33/Pos xuu330",fontsize=10,color="white",style="solid",shape="box"];1273 -> 4453[label="",style="solid", color="burlywood", weight=9]; 4453 -> 1429[label="",style="solid", color="burlywood", weight=3]; 4454[label="xuu33/Neg xuu330",fontsize=10,color="white",style="solid",shape="box"];1273 -> 4454[label="",style="solid", color="burlywood", weight=9]; 4454 -> 1430[label="",style="solid", color="burlywood", weight=3]; 2972[label="xuu33000 < xuu34000",fontsize=16,color="blue",shape="box"];4455[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4455[label="",style="solid", color="blue", weight=9]; 4455 -> 3033[label="",style="solid", color="blue", weight=3]; 4456[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4456[label="",style="solid", color="blue", weight=9]; 4456 -> 3034[label="",style="solid", color="blue", weight=3]; 4457[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4457[label="",style="solid", color="blue", weight=9]; 4457 -> 3035[label="",style="solid", color="blue", weight=3]; 4458[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4458[label="",style="solid", color="blue", weight=9]; 4458 -> 3036[label="",style="solid", color="blue", weight=3]; 4459[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4459[label="",style="solid", color="blue", weight=9]; 4459 -> 3037[label="",style="solid", color="blue", weight=3]; 4460[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4460[label="",style="solid", color="blue", weight=9]; 4460 -> 3038[label="",style="solid", color="blue", weight=3]; 4461[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4461[label="",style="solid", color="blue", weight=9]; 4461 -> 3039[label="",style="solid", color="blue", weight=3]; 4462[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4462[label="",style="solid", color="blue", weight=9]; 4462 -> 3040[label="",style="solid", color="blue", weight=3]; 4463[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4463[label="",style="solid", color="blue", weight=9]; 4463 -> 3041[label="",style="solid", color="blue", weight=3]; 4464[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4464[label="",style="solid", color="blue", weight=9]; 4464 -> 3042[label="",style="solid", color="blue", weight=3]; 4465[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4465[label="",style="solid", color="blue", weight=9]; 4465 -> 3043[label="",style="solid", color="blue", weight=3]; 4466[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4466[label="",style="solid", color="blue", weight=9]; 4466 -> 3044[label="",style="solid", color="blue", weight=3]; 4467[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4467[label="",style="solid", color="blue", weight=9]; 4467 -> 3045[label="",style="solid", color="blue", weight=3]; 4468[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4468[label="",style="solid", color="blue", weight=9]; 4468 -> 3046[label="",style="solid", color="blue", weight=3]; 2973 -> 2323[label="",style="dashed", color="red", weight=0]; 2973[label="xuu33000 == xuu34000 && (xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002)",fontsize=16,color="magenta"];2973 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2973 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2935[label="primCmpFloat (Float xuu33000 xuu33001) xuu3400",fontsize=16,color="burlywood",shape="box"];4469[label="xuu33001/Pos xuu330010",fontsize=10,color="white",style="solid",shape="box"];2935 -> 4469[label="",style="solid", color="burlywood", weight=9]; 4469 -> 3049[label="",style="solid", color="burlywood", weight=3]; 4470[label="xuu33001/Neg xuu330010",fontsize=10,color="white",style="solid",shape="box"];2935 -> 4470[label="",style="solid", color="burlywood", weight=9]; 4470 -> 3050[label="",style="solid", color="burlywood", weight=3]; 2936[label="compare () ()",fontsize=16,color="black",shape="box"];2936 -> 3051[label="",style="solid", color="black", weight=3]; 2937[label="primCmpChar (Char xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4471[label="xuu3400/Char xuu34000",fontsize=10,color="white",style="solid",shape="box"];2937 -> 4471[label="",style="solid", color="burlywood", weight=9]; 4471 -> 3052[label="",style="solid", color="burlywood", weight=3]; 2938 -> 2507[label="",style="dashed", color="red", weight=0]; 2938[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2938 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2938 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2939 -> 2508[label="",style="dashed", color="red", weight=0]; 2939[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2939 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2939 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2940 -> 2509[label="",style="dashed", color="red", weight=0]; 2940[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2940 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2940 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2941 -> 2510[label="",style="dashed", color="red", weight=0]; 2941[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2941 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2941 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2942 -> 2511[label="",style="dashed", color="red", weight=0]; 2942[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2942 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2943 -> 2512[label="",style="dashed", color="red", weight=0]; 2943[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2943 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2944 -> 2513[label="",style="dashed", color="red", weight=0]; 2944[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2944 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2944 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2945 -> 2514[label="",style="dashed", color="red", weight=0]; 2945[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2945 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2946 -> 2515[label="",style="dashed", color="red", weight=0]; 2946[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2946 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2946 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2947 -> 2516[label="",style="dashed", color="red", weight=0]; 2947[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2947 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2947 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2948 -> 2517[label="",style="dashed", color="red", weight=0]; 2948[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2948 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2948 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2949 -> 2518[label="",style="dashed", color="red", weight=0]; 2949[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2949 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2949 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2950 -> 2519[label="",style="dashed", color="red", weight=0]; 2950[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2950 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2950 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2951 -> 2520[label="",style="dashed", color="red", weight=0]; 2951[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2951 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2951 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2952 -> 2507[label="",style="dashed", color="red", weight=0]; 2952[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2952 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2953 -> 2508[label="",style="dashed", color="red", weight=0]; 2953[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2953 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2954 -> 2509[label="",style="dashed", color="red", weight=0]; 2954[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2954 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2955 -> 2510[label="",style="dashed", color="red", weight=0]; 2955[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2955 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2955 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2956 -> 2511[label="",style="dashed", color="red", weight=0]; 2956[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2956 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2956 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2957 -> 2512[label="",style="dashed", color="red", weight=0]; 2957[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2957 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2957 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2958 -> 2513[label="",style="dashed", color="red", weight=0]; 2958[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2958 -> 3093[label="",style="dashed", color="magenta", weight=3]; 2958 -> 3094[label="",style="dashed", color="magenta", weight=3]; 2959 -> 2514[label="",style="dashed", color="red", weight=0]; 2959[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2959 -> 3095[label="",style="dashed", color="magenta", weight=3]; 2959 -> 3096[label="",style="dashed", color="magenta", weight=3]; 2960 -> 2515[label="",style="dashed", color="red", weight=0]; 2960[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2960 -> 3097[label="",style="dashed", color="magenta", weight=3]; 2960 -> 3098[label="",style="dashed", color="magenta", weight=3]; 2961 -> 2516[label="",style="dashed", color="red", weight=0]; 2961[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2961 -> 3099[label="",style="dashed", color="magenta", weight=3]; 2961 -> 3100[label="",style="dashed", color="magenta", weight=3]; 2962 -> 2517[label="",style="dashed", color="red", weight=0]; 2962[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2962 -> 3101[label="",style="dashed", color="magenta", weight=3]; 2962 -> 3102[label="",style="dashed", color="magenta", weight=3]; 2963 -> 2518[label="",style="dashed", color="red", weight=0]; 2963[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2963 -> 3103[label="",style="dashed", color="magenta", weight=3]; 2963 -> 3104[label="",style="dashed", color="magenta", weight=3]; 2964 -> 2519[label="",style="dashed", color="red", weight=0]; 2964[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2964 -> 3105[label="",style="dashed", color="magenta", weight=3]; 2964 -> 3106[label="",style="dashed", color="magenta", weight=3]; 2965 -> 2520[label="",style="dashed", color="red", weight=0]; 2965[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];2965 -> 3107[label="",style="dashed", color="magenta", weight=3]; 2965 -> 3108[label="",style="dashed", color="magenta", weight=3]; 2966[label="compare (xuu33000 :% xuu33001) (xuu34000 :% xuu34001)",fontsize=16,color="black",shape="box"];2966 -> 3109[label="",style="solid", color="black", weight=3]; 1352 -> 1273[label="",style="dashed", color="red", weight=0]; 1352[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1352 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1273[label="",style="dashed", color="red", weight=0]; 1353[label="primCmpInt (primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1353 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1693[label="Pos Zero",fontsize=16,color="green",shape="box"];1694[label="xuu642",fontsize=16,color="green",shape="box"];1511 -> 1502[label="",style="dashed", color="red", weight=0]; 1511[label="FiniteMap.sizeFM xuu28",fontsize=16,color="magenta"];1511 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1695[label="xuu83",fontsize=16,color="green",shape="box"];1696[label="xuu82",fontsize=16,color="green",shape="box"];1501 -> 579[label="",style="dashed", color="red", weight=0]; 1501[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1501 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1509[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 False",fontsize=16,color="black",shape="box"];1509 -> 1535[label="",style="solid", color="black", weight=3]; 1510[label="FiniteMap.mkBalBranch6MkBalBranch3 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1510 -> 1536[label="",style="solid", color="black", weight=3]; 1361[label="error []",fontsize=16,color="red",shape="box"];1362[label="FiniteMap.mkBalBranch6MkBalBranch02 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1362 -> 1514[label="",style="solid", color="black", weight=3]; 4007[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu192 xuu194 + FiniteMap.mkBranchRight_size xuu195 xuu192 xuu194",fontsize=16,color="black",shape="box"];4007 -> 4008[label="",style="solid", color="black", weight=3]; 1364 -> 1273[label="",style="dashed", color="red", weight=0]; 1364[label="primCmpInt (primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1364 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1273[label="",style="dashed", color="red", weight=0]; 1365[label="primCmpInt (primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];1365 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1697[label="xuu36",fontsize=16,color="green",shape="box"];1531 -> 1508[label="",style="dashed", color="red", weight=0]; 1531[label="FiniteMap.mkBalBranch6Size_l Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1532 -> 579[label="",style="dashed", color="red", weight=0]; 1532[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1532 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1533[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 False",fontsize=16,color="black",shape="box"];1533 -> 1701[label="",style="solid", color="black", weight=3]; 1534[label="FiniteMap.mkBalBranch6MkBalBranch3 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1534 -> 1702[label="",style="solid", color="black", weight=3]; 1372[label="error []",fontsize=16,color="red",shape="box"];1373[label="FiniteMap.mkBalBranch6MkBalBranch02 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1373 -> 1537[label="",style="solid", color="black", weight=3]; 1236[label="Pos (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1236 -> 1375[label="",style="dashed", color="green", weight=3]; 1237[label="Neg (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1237 -> 1376[label="",style="dashed", color="green", weight=3]; 1238[label="Neg (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1238 -> 1377[label="",style="dashed", color="green", weight=3]; 1239[label="Pos (primMulNat xuu31100000 xuu60010)",fontsize=16,color="green",shape="box"];1239 -> 1378[label="",style="dashed", color="green", weight=3]; 2976[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2976 -> 3138[label="",style="solid", color="black", weight=3]; 2977[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2977 -> 3139[label="",style="solid", color="black", weight=3]; 2978[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2978 -> 3140[label="",style="solid", color="black", weight=3]; 2979[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2979 -> 3141[label="",style="solid", color="black", weight=3]; 2980[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2980 -> 3142[label="",style="solid", color="black", weight=3]; 2981[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2981 -> 3143[label="",style="solid", color="black", weight=3]; 2982[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2982 -> 3144[label="",style="solid", color="black", weight=3]; 2983 -> 1258[label="",style="dashed", color="red", weight=0]; 2983[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];2983 -> 3145[label="",style="dashed", color="magenta", weight=3]; 2983 -> 3146[label="",style="dashed", color="magenta", weight=3]; 2984[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2984 -> 3147[label="",style="solid", color="black", weight=3]; 2985[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2985 -> 3148[label="",style="solid", color="black", weight=3]; 2986[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2986 -> 3149[label="",style="solid", color="black", weight=3]; 2987[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2987 -> 3150[label="",style="solid", color="black", weight=3]; 2988[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2988 -> 3151[label="",style="solid", color="black", weight=3]; 2989[label="xuu33000 < xuu34000",fontsize=16,color="black",shape="triangle"];2989 -> 3152[label="",style="solid", color="black", weight=3]; 2990[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4472[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4472[label="",style="solid", color="blue", weight=9]; 4472 -> 3153[label="",style="solid", color="blue", weight=3]; 4473[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4473[label="",style="solid", color="blue", weight=9]; 4473 -> 3154[label="",style="solid", color="blue", weight=3]; 4474[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4474[label="",style="solid", color="blue", weight=9]; 4474 -> 3155[label="",style="solid", color="blue", weight=3]; 4475[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4475[label="",style="solid", color="blue", weight=9]; 4475 -> 3156[label="",style="solid", color="blue", weight=3]; 4476[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4476[label="",style="solid", color="blue", weight=9]; 4476 -> 3157[label="",style="solid", color="blue", weight=3]; 4477[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4477[label="",style="solid", color="blue", weight=9]; 4477 -> 3158[label="",style="solid", color="blue", weight=3]; 4478[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4478[label="",style="solid", color="blue", weight=9]; 4478 -> 3159[label="",style="solid", color="blue", weight=3]; 4479[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4479[label="",style="solid", color="blue", weight=9]; 4479 -> 3160[label="",style="solid", color="blue", weight=3]; 4480[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4480[label="",style="solid", color="blue", weight=9]; 4480 -> 3161[label="",style="solid", color="blue", weight=3]; 4481[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4481[label="",style="solid", color="blue", weight=9]; 4481 -> 3162[label="",style="solid", color="blue", weight=3]; 4482[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4482[label="",style="solid", color="blue", weight=9]; 4482 -> 3163[label="",style="solid", color="blue", weight=3]; 4483[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4483[label="",style="solid", color="blue", weight=9]; 4483 -> 3164[label="",style="solid", color="blue", weight=3]; 4484[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4484[label="",style="solid", color="blue", weight=9]; 4484 -> 3165[label="",style="solid", color="blue", weight=3]; 4485[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4485[label="",style="solid", color="blue", weight=9]; 4485 -> 3166[label="",style="solid", color="blue", weight=3]; 2991[label="xuu33001 <= xuu34001",fontsize=16,color="blue",shape="box"];4486[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4486[label="",style="solid", color="blue", weight=9]; 4486 -> 3167[label="",style="solid", color="blue", weight=3]; 4487[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4487[label="",style="solid", color="blue", weight=9]; 4487 -> 3168[label="",style="solid", color="blue", weight=3]; 4488[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4488[label="",style="solid", color="blue", weight=9]; 4488 -> 3169[label="",style="solid", color="blue", weight=3]; 4489[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4489[label="",style="solid", color="blue", weight=9]; 4489 -> 3170[label="",style="solid", color="blue", weight=3]; 4490[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4490[label="",style="solid", color="blue", weight=9]; 4490 -> 3171[label="",style="solid", color="blue", weight=3]; 4491[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4491[label="",style="solid", color="blue", weight=9]; 4491 -> 3172[label="",style="solid", color="blue", weight=3]; 4492[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4492[label="",style="solid", color="blue", weight=9]; 4492 -> 3173[label="",style="solid", color="blue", weight=3]; 4493[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4493[label="",style="solid", color="blue", weight=9]; 4493 -> 3174[label="",style="solid", color="blue", weight=3]; 4494[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4494[label="",style="solid", color="blue", weight=9]; 4494 -> 3175[label="",style="solid", color="blue", weight=3]; 4495[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4495[label="",style="solid", color="blue", weight=9]; 4495 -> 3176[label="",style="solid", color="blue", weight=3]; 4496[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4496[label="",style="solid", color="blue", weight=9]; 4496 -> 3177[label="",style="solid", color="blue", weight=3]; 4497[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4497[label="",style="solid", color="blue", weight=9]; 4497 -> 3178[label="",style="solid", color="blue", weight=3]; 4498[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4498[label="",style="solid", color="blue", weight=9]; 4498 -> 3179[label="",style="solid", color="blue", weight=3]; 4499[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2991 -> 4499[label="",style="solid", color="blue", weight=9]; 4499 -> 3180[label="",style="solid", color="blue", weight=3]; 2992[label="False || xuu148",fontsize=16,color="black",shape="box"];2992 -> 3181[label="",style="solid", color="black", weight=3]; 2993[label="True || xuu148",fontsize=16,color="black",shape="box"];2993 -> 3182[label="",style="solid", color="black", weight=3]; 2994 -> 3183[label="",style="dashed", color="red", weight=0]; 2994[label="primCompAux xuu33000 xuu34000 (compare xuu33001 xuu34001)",fontsize=16,color="magenta"];2994 -> 3184[label="",style="dashed", color="magenta", weight=3]; 2995[label="GT",fontsize=16,color="green",shape="box"];2996[label="LT",fontsize=16,color="green",shape="box"];2997[label="EQ",fontsize=16,color="green",shape="box"];2998[label="xuu133",fontsize=16,color="green",shape="box"];2999[label="GT",fontsize=16,color="green",shape="box"];3000[label="not False",fontsize=16,color="black",shape="box"];3000 -> 3185[label="",style="solid", color="black", weight=3]; 3001[label="not True",fontsize=16,color="black",shape="box"];3001 -> 3186[label="",style="solid", color="black", weight=3]; 3002[label="xuu33000",fontsize=16,color="green",shape="box"];3003[label="xuu34000",fontsize=16,color="green",shape="box"];3004[label="xuu33000",fontsize=16,color="green",shape="box"];3005[label="xuu34000",fontsize=16,color="green",shape="box"];3006[label="xuu33000",fontsize=16,color="green",shape="box"];3007[label="xuu34000",fontsize=16,color="green",shape="box"];3008[label="xuu33000",fontsize=16,color="green",shape="box"];3009[label="xuu34000",fontsize=16,color="green",shape="box"];3010[label="xuu33000",fontsize=16,color="green",shape="box"];3011[label="xuu34000",fontsize=16,color="green",shape="box"];3012[label="xuu33000",fontsize=16,color="green",shape="box"];3013[label="xuu34000",fontsize=16,color="green",shape="box"];3014[label="xuu33000",fontsize=16,color="green",shape="box"];3015[label="xuu34000",fontsize=16,color="green",shape="box"];3016[label="xuu33000",fontsize=16,color="green",shape="box"];3017[label="xuu34000",fontsize=16,color="green",shape="box"];3018[label="xuu33000",fontsize=16,color="green",shape="box"];3019[label="xuu34000",fontsize=16,color="green",shape="box"];3020[label="xuu33000",fontsize=16,color="green",shape="box"];3021[label="xuu34000",fontsize=16,color="green",shape="box"];3022[label="xuu33000",fontsize=16,color="green",shape="box"];3023[label="xuu34000",fontsize=16,color="green",shape="box"];3024[label="xuu33000",fontsize=16,color="green",shape="box"];3025[label="xuu34000",fontsize=16,color="green",shape="box"];3026[label="xuu33000",fontsize=16,color="green",shape="box"];3027[label="xuu34000",fontsize=16,color="green",shape="box"];3028[label="xuu33000",fontsize=16,color="green",shape="box"];3029[label="xuu34000",fontsize=16,color="green",shape="box"];3030 -> 1273[label="",style="dashed", color="red", weight=0]; 3030[label="primCmpInt xuu33000 xuu34000",fontsize=16,color="magenta"];3030 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3031[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4500[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3031 -> 4500[label="",style="solid", color="burlywood", weight=9]; 4500 -> 3189[label="",style="solid", color="burlywood", weight=3]; 3032[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4501[label="xuu3400/Double xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3032 -> 4501[label="",style="solid", color="burlywood", weight=9]; 4501 -> 3190[label="",style="solid", color="burlywood", weight=3]; 1429[label="primCmpInt (Pos xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4502[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4502[label="",style="solid", color="burlywood", weight=9]; 4502 -> 1636[label="",style="solid", color="burlywood", weight=3]; 4503[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1429 -> 4503[label="",style="solid", color="burlywood", weight=9]; 4503 -> 1637[label="",style="solid", color="burlywood", weight=3]; 1430[label="primCmpInt (Neg xuu330) xuu34",fontsize=16,color="burlywood",shape="box"];4504[label="xuu330/Succ xuu3300",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4504[label="",style="solid", color="burlywood", weight=9]; 4504 -> 1638[label="",style="solid", color="burlywood", weight=3]; 4505[label="xuu330/Zero",fontsize=10,color="white",style="solid",shape="box"];1430 -> 4505[label="",style="solid", color="burlywood", weight=9]; 4505 -> 1639[label="",style="solid", color="burlywood", weight=3]; 3033 -> 2976[label="",style="dashed", color="red", weight=0]; 3033[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3033 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3034 -> 2977[label="",style="dashed", color="red", weight=0]; 3034[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3034 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3035 -> 2978[label="",style="dashed", color="red", weight=0]; 3035[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3035 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3036 -> 2979[label="",style="dashed", color="red", weight=0]; 3036[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3036 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3037 -> 2980[label="",style="dashed", color="red", weight=0]; 3037[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3037 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3037 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3038 -> 2981[label="",style="dashed", color="red", weight=0]; 3038[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3038 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3038 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3039 -> 2982[label="",style="dashed", color="red", weight=0]; 3039[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3039 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3039 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3040 -> 1258[label="",style="dashed", color="red", weight=0]; 3040[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3040 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3040 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3041 -> 2984[label="",style="dashed", color="red", weight=0]; 3041[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3041 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3041 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3042 -> 2985[label="",style="dashed", color="red", weight=0]; 3042[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3042 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3042 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3043 -> 2986[label="",style="dashed", color="red", weight=0]; 3043[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3043 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3043 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3044 -> 2987[label="",style="dashed", color="red", weight=0]; 3044[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3044 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3045 -> 2988[label="",style="dashed", color="red", weight=0]; 3045[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3045 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3046 -> 2989[label="",style="dashed", color="red", weight=0]; 3046[label="xuu33000 < xuu34000",fontsize=16,color="magenta"];3046 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3046 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3047[label="xuu33000 == xuu34000",fontsize=16,color="blue",shape="box"];4506[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4506[label="",style="solid", color="blue", weight=9]; 4506 -> 3219[label="",style="solid", color="blue", weight=3]; 4507[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4507[label="",style="solid", color="blue", weight=9]; 4507 -> 3220[label="",style="solid", color="blue", weight=3]; 4508[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4508[label="",style="solid", color="blue", weight=9]; 4508 -> 3221[label="",style="solid", color="blue", weight=3]; 4509[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4509[label="",style="solid", color="blue", weight=9]; 4509 -> 3222[label="",style="solid", color="blue", weight=3]; 4510[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4510[label="",style="solid", color="blue", weight=9]; 4510 -> 3223[label="",style="solid", color="blue", weight=3]; 4511[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4511[label="",style="solid", color="blue", weight=9]; 4511 -> 3224[label="",style="solid", color="blue", weight=3]; 4512[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4512[label="",style="solid", color="blue", weight=9]; 4512 -> 3225[label="",style="solid", color="blue", weight=3]; 4513[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4513[label="",style="solid", color="blue", weight=9]; 4513 -> 3226[label="",style="solid", color="blue", weight=3]; 4514[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4514[label="",style="solid", color="blue", weight=9]; 4514 -> 3227[label="",style="solid", color="blue", weight=3]; 4515[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4515[label="",style="solid", color="blue", weight=9]; 4515 -> 3228[label="",style="solid", color="blue", weight=3]; 4516[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4516[label="",style="solid", color="blue", weight=9]; 4516 -> 3229[label="",style="solid", color="blue", weight=3]; 4517[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4517[label="",style="solid", color="blue", weight=9]; 4517 -> 3230[label="",style="solid", color="blue", weight=3]; 4518[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4518[label="",style="solid", color="blue", weight=9]; 4518 -> 3231[label="",style="solid", color="blue", weight=3]; 4519[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4519[label="",style="solid", color="blue", weight=9]; 4519 -> 3232[label="",style="solid", color="blue", weight=3]; 3048 -> 2969[label="",style="dashed", color="red", weight=0]; 3048[label="xuu33001 < xuu34001 || xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3048 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3049[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4520[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4520[label="",style="solid", color="burlywood", weight=9]; 4520 -> 3235[label="",style="solid", color="burlywood", weight=3]; 3050[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) xuu3400",fontsize=16,color="burlywood",shape="box"];4521[label="xuu3400/Float xuu34000 xuu34001",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4521[label="",style="solid", color="burlywood", weight=9]; 4521 -> 3236[label="",style="solid", color="burlywood", weight=3]; 3051[label="EQ",fontsize=16,color="green",shape="box"];3052[label="primCmpChar (Char xuu33000) (Char xuu34000)",fontsize=16,color="black",shape="box"];3052 -> 3237[label="",style="solid", color="black", weight=3]; 3053[label="xuu33000",fontsize=16,color="green",shape="box"];3054[label="xuu34000",fontsize=16,color="green",shape="box"];3055[label="xuu33000",fontsize=16,color="green",shape="box"];3056[label="xuu34000",fontsize=16,color="green",shape="box"];3057[label="xuu33000",fontsize=16,color="green",shape="box"];3058[label="xuu34000",fontsize=16,color="green",shape="box"];3059[label="xuu33000",fontsize=16,color="green",shape="box"];3060[label="xuu34000",fontsize=16,color="green",shape="box"];3061[label="xuu33000",fontsize=16,color="green",shape="box"];3062[label="xuu34000",fontsize=16,color="green",shape="box"];3063[label="xuu33000",fontsize=16,color="green",shape="box"];3064[label="xuu34000",fontsize=16,color="green",shape="box"];3065[label="xuu33000",fontsize=16,color="green",shape="box"];3066[label="xuu34000",fontsize=16,color="green",shape="box"];3067[label="xuu33000",fontsize=16,color="green",shape="box"];3068[label="xuu34000",fontsize=16,color="green",shape="box"];3069[label="xuu33000",fontsize=16,color="green",shape="box"];3070[label="xuu34000",fontsize=16,color="green",shape="box"];3071[label="xuu33000",fontsize=16,color="green",shape="box"];3072[label="xuu34000",fontsize=16,color="green",shape="box"];3073[label="xuu33000",fontsize=16,color="green",shape="box"];3074[label="xuu34000",fontsize=16,color="green",shape="box"];3075[label="xuu33000",fontsize=16,color="green",shape="box"];3076[label="xuu34000",fontsize=16,color="green",shape="box"];3077[label="xuu33000",fontsize=16,color="green",shape="box"];3078[label="xuu34000",fontsize=16,color="green",shape="box"];3079[label="xuu33000",fontsize=16,color="green",shape="box"];3080[label="xuu34000",fontsize=16,color="green",shape="box"];3081[label="xuu33000",fontsize=16,color="green",shape="box"];3082[label="xuu34000",fontsize=16,color="green",shape="box"];3083[label="xuu33000",fontsize=16,color="green",shape="box"];3084[label="xuu34000",fontsize=16,color="green",shape="box"];3085[label="xuu33000",fontsize=16,color="green",shape="box"];3086[label="xuu34000",fontsize=16,color="green",shape="box"];3087[label="xuu33000",fontsize=16,color="green",shape="box"];3088[label="xuu34000",fontsize=16,color="green",shape="box"];3089[label="xuu33000",fontsize=16,color="green",shape="box"];3090[label="xuu34000",fontsize=16,color="green",shape="box"];3091[label="xuu33000",fontsize=16,color="green",shape="box"];3092[label="xuu34000",fontsize=16,color="green",shape="box"];3093[label="xuu33000",fontsize=16,color="green",shape="box"];3094[label="xuu34000",fontsize=16,color="green",shape="box"];3095[label="xuu33000",fontsize=16,color="green",shape="box"];3096[label="xuu34000",fontsize=16,color="green",shape="box"];3097[label="xuu33000",fontsize=16,color="green",shape="box"];3098[label="xuu34000",fontsize=16,color="green",shape="box"];3099[label="xuu33000",fontsize=16,color="green",shape="box"];3100[label="xuu34000",fontsize=16,color="green",shape="box"];3101[label="xuu33000",fontsize=16,color="green",shape="box"];3102[label="xuu34000",fontsize=16,color="green",shape="box"];3103[label="xuu33000",fontsize=16,color="green",shape="box"];3104[label="xuu34000",fontsize=16,color="green",shape="box"];3105[label="xuu33000",fontsize=16,color="green",shape="box"];3106[label="xuu34000",fontsize=16,color="green",shape="box"];3107[label="xuu33000",fontsize=16,color="green",shape="box"];3108[label="xuu34000",fontsize=16,color="green",shape="box"];3109[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="blue",shape="box"];4522[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3109 -> 4522[label="",style="solid", color="blue", weight=9]; 4522 -> 3238[label="",style="solid", color="blue", weight=3]; 4523[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3109 -> 4523[label="",style="solid", color="blue", weight=9]; 4523 -> 3239[label="",style="solid", color="blue", weight=3]; 1480 -> 1703[label="",style="dashed", color="red", weight=0]; 1480[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64)",fontsize=16,color="magenta"];1480 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1481[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1482 -> 1703[label="",style="dashed", color="red", weight=0]; 1482[label="primPlusInt xuu282 (FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64)",fontsize=16,color="magenta"];1482 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1483[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1698[label="xuu28",fontsize=16,color="green",shape="box"];1512 -> 1503[label="",style="dashed", color="red", weight=0]; 1512[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1513 -> 1492[label="",style="dashed", color="red", weight=0]; 1513[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1535[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 otherwise",fontsize=16,color="black",shape="box"];1535 -> 1721[label="",style="solid", color="black", weight=3]; 1536[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 xuu28 xuu64 xuu28 xuu64 xuu28",fontsize=16,color="burlywood",shape="box"];4524[label="xuu28/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4524[label="",style="solid", color="burlywood", weight=9]; 4524 -> 1722[label="",style="solid", color="burlywood", weight=3]; 4525[label="xuu28/FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=10,color="white",style="solid",shape="box"];1536 -> 4525[label="",style="solid", color="burlywood", weight=9]; 4525 -> 1723[label="",style="solid", color="burlywood", weight=3]; 1514 -> 1724[label="",style="dashed", color="red", weight=0]; 1514[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1514 -> 1725[label="",style="dashed", color="magenta", weight=3]; 4008 -> 1703[label="",style="dashed", color="red", weight=0]; 4008[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu192 xuu194) (FiniteMap.mkBranchRight_size xuu195 xuu192 xuu194)",fontsize=16,color="magenta"];4008 -> 4009[label="",style="dashed", color="magenta", weight=3]; 4008 -> 4010[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1703[label="",style="dashed", color="red", weight=0]; 1516[label="primPlusInt (Pos Zero) (FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64)",fontsize=16,color="magenta"];1516 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1517[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1518 -> 1703[label="",style="dashed", color="red", weight=0]; 1518[label="primPlusInt xuu362 (FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64)",fontsize=16,color="magenta"];1518 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1519[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1699 -> 1503[label="",style="dashed", color="red", weight=0]; 1699[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1700 -> 1494[label="",style="dashed", color="red", weight=0]; 1700[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1701[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 otherwise",fontsize=16,color="black",shape="box"];1701 -> 1730[label="",style="solid", color="black", weight=3]; 1702[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 xuu36 xuu64 xuu36 xuu64 xuu36",fontsize=16,color="burlywood",shape="box"];4526[label="xuu36/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1702 -> 4526[label="",style="solid", color="burlywood", weight=9]; 4526 -> 1731[label="",style="solid", color="burlywood", weight=3]; 4527[label="xuu36/FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=10,color="white",style="solid",shape="box"];1702 -> 4527[label="",style="solid", color="burlywood", weight=9]; 4527 -> 1732[label="",style="solid", color="burlywood", weight=3]; 1537 -> 1733[label="",style="dashed", color="red", weight=0]; 1537[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 (FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644)",fontsize=16,color="magenta"];1537 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1375[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="burlywood",shape="triangle"];4528[label="xuu31100000/Succ xuu311000000",fontsize=10,color="white",style="solid",shape="box"];1375 -> 4528[label="",style="solid", color="burlywood", weight=9]; 4528 -> 1539[label="",style="solid", color="burlywood", weight=3]; 4529[label="xuu31100000/Zero",fontsize=10,color="white",style="solid",shape="box"];1375 -> 4529[label="",style="solid", color="burlywood", weight=9]; 4529 -> 1540[label="",style="solid", color="burlywood", weight=3]; 1376 -> 1375[label="",style="dashed", color="red", weight=0]; 1376[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1376 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1375[label="",style="dashed", color="red", weight=0]; 1377[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1377 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1375[label="",style="dashed", color="red", weight=0]; 1378[label="primMulNat xuu31100000 xuu60010",fontsize=16,color="magenta"];1378 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1544[label="",style="dashed", color="magenta", weight=3]; 3138 -> 86[label="",style="dashed", color="red", weight=0]; 3138[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3138 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3139 -> 86[label="",style="dashed", color="red", weight=0]; 3139[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3139 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3140 -> 86[label="",style="dashed", color="red", weight=0]; 3140[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3140 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3141 -> 86[label="",style="dashed", color="red", weight=0]; 3141[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3141 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3142 -> 86[label="",style="dashed", color="red", weight=0]; 3142[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3142 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3142 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3143 -> 86[label="",style="dashed", color="red", weight=0]; 3143[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3143 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3144 -> 86[label="",style="dashed", color="red", weight=0]; 3144[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3144 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3145[label="xuu34000",fontsize=16,color="green",shape="box"];3146[label="xuu33000",fontsize=16,color="green",shape="box"];1258[label="xuu330 < xuu340",fontsize=16,color="black",shape="triangle"];1258 -> 1414[label="",style="solid", color="black", weight=3]; 3147 -> 86[label="",style="dashed", color="red", weight=0]; 3147[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3147 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3147 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3148 -> 86[label="",style="dashed", color="red", weight=0]; 3148[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3148 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3149 -> 86[label="",style="dashed", color="red", weight=0]; 3149[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3149 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3150 -> 86[label="",style="dashed", color="red", weight=0]; 3150[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3150 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3150 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3151 -> 86[label="",style="dashed", color="red", weight=0]; 3151[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3151 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3152 -> 86[label="",style="dashed", color="red", weight=0]; 3152[label="compare xuu33000 xuu34000 == LT",fontsize=16,color="magenta"];3152 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3153 -> 2026[label="",style="dashed", color="red", weight=0]; 3153[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3153 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3154 -> 2029[label="",style="dashed", color="red", weight=0]; 3154[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3154 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3155 -> 2022[label="",style="dashed", color="red", weight=0]; 3155[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3155 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3156 -> 2031[label="",style="dashed", color="red", weight=0]; 3156[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3156 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3157 -> 86[label="",style="dashed", color="red", weight=0]; 3157[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3157 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3158 -> 2030[label="",style="dashed", color="red", weight=0]; 3158[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3158 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3159 -> 2027[label="",style="dashed", color="red", weight=0]; 3159[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3159 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3160 -> 2023[label="",style="dashed", color="red", weight=0]; 3160[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3160 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3161 -> 2033[label="",style="dashed", color="red", weight=0]; 3161[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3161 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3162 -> 2024[label="",style="dashed", color="red", weight=0]; 3162[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3162 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3163 -> 2025[label="",style="dashed", color="red", weight=0]; 3163[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3163 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3163 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3164 -> 2032[label="",style="dashed", color="red", weight=0]; 3164[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3164 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3164 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3165 -> 2028[label="",style="dashed", color="red", weight=0]; 3165[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3165 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3165 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3166 -> 2034[label="",style="dashed", color="red", weight=0]; 3166[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3166 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3167 -> 2507[label="",style="dashed", color="red", weight=0]; 3167[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3167 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3167 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3168 -> 2508[label="",style="dashed", color="red", weight=0]; 3168[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3168 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3168 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3169 -> 2509[label="",style="dashed", color="red", weight=0]; 3169[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3169 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3169 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3170 -> 2510[label="",style="dashed", color="red", weight=0]; 3170[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3170 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3170 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3171 -> 2511[label="",style="dashed", color="red", weight=0]; 3171[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3171 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3171 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3172 -> 2512[label="",style="dashed", color="red", weight=0]; 3172[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3172 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3172 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3173 -> 2513[label="",style="dashed", color="red", weight=0]; 3173[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3173 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3173 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3174 -> 2514[label="",style="dashed", color="red", weight=0]; 3174[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3174 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3174 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3175 -> 2515[label="",style="dashed", color="red", weight=0]; 3175[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3175 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3175 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3176 -> 2516[label="",style="dashed", color="red", weight=0]; 3176[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3176 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3176 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3177 -> 2517[label="",style="dashed", color="red", weight=0]; 3177[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3177 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3177 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3178 -> 2518[label="",style="dashed", color="red", weight=0]; 3178[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3178 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3178 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3179 -> 2519[label="",style="dashed", color="red", weight=0]; 3179[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3179 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3179 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3180 -> 2520[label="",style="dashed", color="red", weight=0]; 3180[label="xuu33001 <= xuu34001",fontsize=16,color="magenta"];3180 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3181[label="xuu148",fontsize=16,color="green",shape="box"];3182[label="True",fontsize=16,color="green",shape="box"];3184 -> 2844[label="",style="dashed", color="red", weight=0]; 3184[label="compare xuu33001 xuu34001",fontsize=16,color="magenta"];3184 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3183[label="primCompAux xuu33000 xuu34000 xuu159",fontsize=16,color="black",shape="triangle"];3183 -> 3324[label="",style="solid", color="black", weight=3]; 3185[label="True",fontsize=16,color="green",shape="box"];3186[label="False",fontsize=16,color="green",shape="box"];3187[label="xuu33000",fontsize=16,color="green",shape="box"];3188[label="xuu34000",fontsize=16,color="green",shape="box"];3189[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4530[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3189 -> 4530[label="",style="solid", color="burlywood", weight=9]; 4530 -> 3343[label="",style="solid", color="burlywood", weight=3]; 4531[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3189 -> 4531[label="",style="solid", color="burlywood", weight=9]; 4531 -> 3344[label="",style="solid", color="burlywood", weight=3]; 3190[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4532[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4532[label="",style="solid", color="burlywood", weight=9]; 4532 -> 3345[label="",style="solid", color="burlywood", weight=3]; 4533[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3190 -> 4533[label="",style="solid", color="burlywood", weight=9]; 4533 -> 3346[label="",style="solid", color="burlywood", weight=3]; 1636[label="primCmpInt (Pos (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4534[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4534[label="",style="solid", color="burlywood", weight=9]; 4534 -> 1769[label="",style="solid", color="burlywood", weight=3]; 4535[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1636 -> 4535[label="",style="solid", color="burlywood", weight=9]; 4535 -> 1770[label="",style="solid", color="burlywood", weight=3]; 1637[label="primCmpInt (Pos Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4536[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1637 -> 4536[label="",style="solid", color="burlywood", weight=9]; 4536 -> 1771[label="",style="solid", color="burlywood", weight=3]; 4537[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1637 -> 4537[label="",style="solid", color="burlywood", weight=9]; 4537 -> 1772[label="",style="solid", color="burlywood", weight=3]; 1638[label="primCmpInt (Neg (Succ xuu3300)) xuu34",fontsize=16,color="burlywood",shape="box"];4538[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1638 -> 4538[label="",style="solid", color="burlywood", weight=9]; 4538 -> 1773[label="",style="solid", color="burlywood", weight=3]; 4539[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1638 -> 4539[label="",style="solid", color="burlywood", weight=9]; 4539 -> 1774[label="",style="solid", color="burlywood", weight=3]; 1639[label="primCmpInt (Neg Zero) xuu34",fontsize=16,color="burlywood",shape="box"];4540[label="xuu34/Pos xuu340",fontsize=10,color="white",style="solid",shape="box"];1639 -> 4540[label="",style="solid", color="burlywood", weight=9]; 4540 -> 1775[label="",style="solid", color="burlywood", weight=3]; 4541[label="xuu34/Neg xuu340",fontsize=10,color="white",style="solid",shape="box"];1639 -> 4541[label="",style="solid", color="burlywood", weight=9]; 4541 -> 1776[label="",style="solid", color="burlywood", weight=3]; 3191[label="xuu33000",fontsize=16,color="green",shape="box"];3192[label="xuu34000",fontsize=16,color="green",shape="box"];3193[label="xuu33000",fontsize=16,color="green",shape="box"];3194[label="xuu34000",fontsize=16,color="green",shape="box"];3195[label="xuu33000",fontsize=16,color="green",shape="box"];3196[label="xuu34000",fontsize=16,color="green",shape="box"];3197[label="xuu33000",fontsize=16,color="green",shape="box"];3198[label="xuu34000",fontsize=16,color="green",shape="box"];3199[label="xuu33000",fontsize=16,color="green",shape="box"];3200[label="xuu34000",fontsize=16,color="green",shape="box"];3201[label="xuu33000",fontsize=16,color="green",shape="box"];3202[label="xuu34000",fontsize=16,color="green",shape="box"];3203[label="xuu33000",fontsize=16,color="green",shape="box"];3204[label="xuu34000",fontsize=16,color="green",shape="box"];3205[label="xuu34000",fontsize=16,color="green",shape="box"];3206[label="xuu33000",fontsize=16,color="green",shape="box"];3207[label="xuu33000",fontsize=16,color="green",shape="box"];3208[label="xuu34000",fontsize=16,color="green",shape="box"];3209[label="xuu33000",fontsize=16,color="green",shape="box"];3210[label="xuu34000",fontsize=16,color="green",shape="box"];3211[label="xuu33000",fontsize=16,color="green",shape="box"];3212[label="xuu34000",fontsize=16,color="green",shape="box"];3213[label="xuu33000",fontsize=16,color="green",shape="box"];3214[label="xuu34000",fontsize=16,color="green",shape="box"];3215[label="xuu33000",fontsize=16,color="green",shape="box"];3216[label="xuu34000",fontsize=16,color="green",shape="box"];3217[label="xuu33000",fontsize=16,color="green",shape="box"];3218[label="xuu34000",fontsize=16,color="green",shape="box"];3219 -> 2026[label="",style="dashed", color="red", weight=0]; 3219[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3219 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3220 -> 2029[label="",style="dashed", color="red", weight=0]; 3220[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3220 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3221 -> 2022[label="",style="dashed", color="red", weight=0]; 3221[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3221 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3222 -> 2031[label="",style="dashed", color="red", weight=0]; 3222[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3222 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3223 -> 86[label="",style="dashed", color="red", weight=0]; 3223[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3223 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3224 -> 2030[label="",style="dashed", color="red", weight=0]; 3224[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3224 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3225 -> 2027[label="",style="dashed", color="red", weight=0]; 3225[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3225 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3226 -> 2023[label="",style="dashed", color="red", weight=0]; 3226[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3226 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3227 -> 2033[label="",style="dashed", color="red", weight=0]; 3227[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3227 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3228 -> 2024[label="",style="dashed", color="red", weight=0]; 3228[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3228 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3229 -> 2025[label="",style="dashed", color="red", weight=0]; 3229[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3229 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3230 -> 2032[label="",style="dashed", color="red", weight=0]; 3230[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3230 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3231 -> 2028[label="",style="dashed", color="red", weight=0]; 3231[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3231 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3231 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3232 -> 2034[label="",style="dashed", color="red", weight=0]; 3232[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3232 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3233[label="xuu33001 < xuu34001",fontsize=16,color="blue",shape="box"];4542[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4542[label="",style="solid", color="blue", weight=9]; 4542 -> 3375[label="",style="solid", color="blue", weight=3]; 4543[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4543[label="",style="solid", color="blue", weight=9]; 4543 -> 3376[label="",style="solid", color="blue", weight=3]; 4544[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4544[label="",style="solid", color="blue", weight=9]; 4544 -> 3377[label="",style="solid", color="blue", weight=3]; 4545[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4545[label="",style="solid", color="blue", weight=9]; 4545 -> 3378[label="",style="solid", color="blue", weight=3]; 4546[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4546[label="",style="solid", color="blue", weight=9]; 4546 -> 3379[label="",style="solid", color="blue", weight=3]; 4547[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4547[label="",style="solid", color="blue", weight=9]; 4547 -> 3380[label="",style="solid", color="blue", weight=3]; 4548[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4548[label="",style="solid", color="blue", weight=9]; 4548 -> 3381[label="",style="solid", color="blue", weight=3]; 4549[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4549[label="",style="solid", color="blue", weight=9]; 4549 -> 3382[label="",style="solid", color="blue", weight=3]; 4550[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4550[label="",style="solid", color="blue", weight=9]; 4550 -> 3383[label="",style="solid", color="blue", weight=3]; 4551[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4551[label="",style="solid", color="blue", weight=9]; 4551 -> 3384[label="",style="solid", color="blue", weight=3]; 4552[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4552[label="",style="solid", color="blue", weight=9]; 4552 -> 3385[label="",style="solid", color="blue", weight=3]; 4553[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4553[label="",style="solid", color="blue", weight=9]; 4553 -> 3386[label="",style="solid", color="blue", weight=3]; 4554[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4554[label="",style="solid", color="blue", weight=9]; 4554 -> 3387[label="",style="solid", color="blue", weight=3]; 4555[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3233 -> 4555[label="",style="solid", color="blue", weight=9]; 4555 -> 3388[label="",style="solid", color="blue", weight=3]; 3234 -> 2323[label="",style="dashed", color="red", weight=0]; 3234[label="xuu33001 == xuu34001 && xuu33002 <= xuu34002",fontsize=16,color="magenta"];3234 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3235[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4556[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3235 -> 4556[label="",style="solid", color="burlywood", weight=9]; 4556 -> 3391[label="",style="solid", color="burlywood", weight=3]; 4557[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3235 -> 4557[label="",style="solid", color="burlywood", weight=9]; 4557 -> 3392[label="",style="solid", color="burlywood", weight=3]; 3236[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 xuu34001)",fontsize=16,color="burlywood",shape="box"];4558[label="xuu34001/Pos xuu340010",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4558[label="",style="solid", color="burlywood", weight=9]; 4558 -> 3393[label="",style="solid", color="burlywood", weight=3]; 4559[label="xuu34001/Neg xuu340010",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4559[label="",style="solid", color="burlywood", weight=9]; 4559 -> 3394[label="",style="solid", color="burlywood", weight=3]; 3237 -> 2215[label="",style="dashed", color="red", weight=0]; 3237[label="primCmpNat xuu33000 xuu34000",fontsize=16,color="magenta"];3237 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3237 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3238 -> 2845[label="",style="dashed", color="red", weight=0]; 3238[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3238 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3238 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3239 -> 1171[label="",style="dashed", color="red", weight=0]; 3239[label="compare (xuu33000 * xuu34001) (xuu34000 * xuu33001)",fontsize=16,color="magenta"];3239 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3239 -> 3400[label="",style="dashed", color="magenta", weight=3]; 1708 -> 1492[label="",style="dashed", color="red", weight=0]; 1708[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64",fontsize=16,color="magenta"];1708 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1709[label="Pos Zero",fontsize=16,color="green",shape="box"];1703[label="primPlusInt xuu282 xuu89",fontsize=16,color="burlywood",shape="triangle"];4560[label="xuu282/Pos xuu2820",fontsize=10,color="white",style="solid",shape="box"];1703 -> 4560[label="",style="solid", color="burlywood", weight=9]; 4560 -> 1728[label="",style="solid", color="burlywood", weight=3]; 4561[label="xuu282/Neg xuu2820",fontsize=10,color="white",style="solid",shape="box"];1703 -> 4561[label="",style="solid", color="burlywood", weight=9]; 4561 -> 1729[label="",style="solid", color="burlywood", weight=3]; 1710 -> 1492[label="",style="dashed", color="red", weight=0]; 1710[label="FiniteMap.mkBalBranch6Size_r (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="magenta"];1710 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1721[label="FiniteMap.mkBalBranch6MkBalBranch2 (Just xuu600) xuu61 xuu28 xuu64 (Just xuu600) xuu61 xuu28 xuu64 True",fontsize=16,color="black",shape="box"];1721 -> 1840[label="",style="solid", color="black", weight=3]; 1722[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1722 -> 1841[label="",style="solid", color="black", weight=3]; 1723[label="FiniteMap.mkBalBranch6MkBalBranch1 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1723 -> 1842[label="",style="solid", color="black", weight=3]; 1725 -> 1258[label="",style="dashed", color="red", weight=0]; 1725[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1725 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1724[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu90",fontsize=16,color="burlywood",shape="triangle"];4562[label="xuu90/False",fontsize=10,color="white",style="solid",shape="box"];1724 -> 4562[label="",style="solid", color="burlywood", weight=9]; 4562 -> 1845[label="",style="solid", color="burlywood", weight=3]; 4563[label="xuu90/True",fontsize=10,color="white",style="solid",shape="box"];1724 -> 4563[label="",style="solid", color="burlywood", weight=9]; 4563 -> 1846[label="",style="solid", color="burlywood", weight=3]; 4009[label="FiniteMap.mkBranchRight_size xuu195 xuu192 xuu194",fontsize=16,color="black",shape="box"];4009 -> 4011[label="",style="solid", color="black", weight=3]; 4010[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu195 xuu192 xuu194",fontsize=16,color="black",shape="box"];4010 -> 4012[label="",style="solid", color="black", weight=3]; 1713 -> 1494[label="",style="dashed", color="red", weight=0]; 1713[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 FiniteMap.EmptyFM xuu64",fontsize=16,color="magenta"];1713 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1714[label="Pos Zero",fontsize=16,color="green",shape="box"];1715 -> 1494[label="",style="dashed", color="red", weight=0]; 1715[label="FiniteMap.mkBalBranch6Size_r Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="magenta"];1715 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1716[label="xuu362",fontsize=16,color="green",shape="box"];1730[label="FiniteMap.mkBalBranch6MkBalBranch2 Nothing xuu61 xuu36 xuu64 Nothing xuu61 xuu36 xuu64 True",fontsize=16,color="black",shape="box"];1730 -> 1855[label="",style="solid", color="black", weight=3]; 1731[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM xuu64 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1731 -> 1856[label="",style="solid", color="black", weight=3]; 1732[label="FiniteMap.mkBalBranch6MkBalBranch1 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1732 -> 1857[label="",style="solid", color="black", weight=3]; 1734 -> 1258[label="",style="dashed", color="red", weight=0]; 1734[label="FiniteMap.sizeFM xuu643 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1734 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1733[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 xuu94",fontsize=16,color="burlywood",shape="triangle"];4564[label="xuu94/False",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4564[label="",style="solid", color="burlywood", weight=9]; 4564 -> 1860[label="",style="solid", color="burlywood", weight=3]; 4565[label="xuu94/True",fontsize=10,color="white",style="solid",shape="box"];1733 -> 4565[label="",style="solid", color="burlywood", weight=9]; 4565 -> 1861[label="",style="solid", color="burlywood", weight=3]; 1539[label="primMulNat (Succ xuu311000000) xuu60010",fontsize=16,color="burlywood",shape="box"];4566[label="xuu60010/Succ xuu600100",fontsize=10,color="white",style="solid",shape="box"];1539 -> 4566[label="",style="solid", color="burlywood", weight=9]; 4566 -> 1737[label="",style="solid", color="burlywood", weight=3]; 4567[label="xuu60010/Zero",fontsize=10,color="white",style="solid",shape="box"];1539 -> 4567[label="",style="solid", color="burlywood", weight=9]; 4567 -> 1738[label="",style="solid", color="burlywood", weight=3]; 1540[label="primMulNat Zero xuu60010",fontsize=16,color="burlywood",shape="box"];4568[label="xuu60010/Succ xuu600100",fontsize=10,color="white",style="solid",shape="box"];1540 -> 4568[label="",style="solid", color="burlywood", weight=9]; 4568 -> 1739[label="",style="solid", color="burlywood", weight=3]; 4569[label="xuu60010/Zero",fontsize=10,color="white",style="solid",shape="box"];1540 -> 4569[label="",style="solid", color="burlywood", weight=9]; 4569 -> 1740[label="",style="solid", color="burlywood", weight=3]; 1541[label="xuu60010",fontsize=16,color="green",shape="box"];1542[label="xuu31100000",fontsize=16,color="green",shape="box"];1543[label="xuu31100000",fontsize=16,color="green",shape="box"];1544[label="xuu60010",fontsize=16,color="green",shape="box"];3240[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3240 -> 3401[label="",style="solid", color="black", weight=3]; 3241[label="LT",fontsize=16,color="green",shape="box"];3242[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3242 -> 3402[label="",style="solid", color="black", weight=3]; 3243[label="LT",fontsize=16,color="green",shape="box"];3244 -> 2844[label="",style="dashed", color="red", weight=0]; 3244[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3244 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3244 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3245[label="LT",fontsize=16,color="green",shape="box"];3246[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3246 -> 3405[label="",style="solid", color="black", weight=3]; 3247[label="LT",fontsize=16,color="green",shape="box"];3248[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3248 -> 3406[label="",style="solid", color="black", weight=3]; 3249[label="LT",fontsize=16,color="green",shape="box"];3250 -> 2845[label="",style="dashed", color="red", weight=0]; 3250[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3250 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3250 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3251[label="LT",fontsize=16,color="green",shape="box"];3252 -> 2846[label="",style="dashed", color="red", weight=0]; 3252[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3252 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3252 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3253[label="LT",fontsize=16,color="green",shape="box"];1414 -> 86[label="",style="dashed", color="red", weight=0]; 1414[label="compare xuu330 xuu340 == LT",fontsize=16,color="magenta"];1414 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1616[label="",style="dashed", color="magenta", weight=3]; 3254[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3254 -> 3411[label="",style="solid", color="black", weight=3]; 3255[label="LT",fontsize=16,color="green",shape="box"];3256 -> 2848[label="",style="dashed", color="red", weight=0]; 3256[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3256 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3256 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3257[label="LT",fontsize=16,color="green",shape="box"];3258 -> 2849[label="",style="dashed", color="red", weight=0]; 3258[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3258 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3258 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3259[label="LT",fontsize=16,color="green",shape="box"];3260 -> 2850[label="",style="dashed", color="red", weight=0]; 3260[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3260 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3260 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3261[label="LT",fontsize=16,color="green",shape="box"];3262[label="compare xuu33000 xuu34000",fontsize=16,color="black",shape="triangle"];3262 -> 3418[label="",style="solid", color="black", weight=3]; 3263[label="LT",fontsize=16,color="green",shape="box"];3264 -> 2851[label="",style="dashed", color="red", weight=0]; 3264[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3264 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3264 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3265[label="LT",fontsize=16,color="green",shape="box"];3266[label="xuu33000",fontsize=16,color="green",shape="box"];3267[label="xuu34000",fontsize=16,color="green",shape="box"];3268[label="xuu33000",fontsize=16,color="green",shape="box"];3269[label="xuu34000",fontsize=16,color="green",shape="box"];3270[label="xuu33000",fontsize=16,color="green",shape="box"];3271[label="xuu34000",fontsize=16,color="green",shape="box"];3272[label="xuu33000",fontsize=16,color="green",shape="box"];3273[label="xuu34000",fontsize=16,color="green",shape="box"];3274[label="xuu33000",fontsize=16,color="green",shape="box"];3275[label="xuu34000",fontsize=16,color="green",shape="box"];3276[label="xuu33000",fontsize=16,color="green",shape="box"];3277[label="xuu34000",fontsize=16,color="green",shape="box"];3278[label="xuu33000",fontsize=16,color="green",shape="box"];3279[label="xuu34000",fontsize=16,color="green",shape="box"];3280[label="xuu33000",fontsize=16,color="green",shape="box"];3281[label="xuu34000",fontsize=16,color="green",shape="box"];3282[label="xuu33000",fontsize=16,color="green",shape="box"];3283[label="xuu34000",fontsize=16,color="green",shape="box"];3284[label="xuu33000",fontsize=16,color="green",shape="box"];3285[label="xuu34000",fontsize=16,color="green",shape="box"];3286[label="xuu33000",fontsize=16,color="green",shape="box"];3287[label="xuu34000",fontsize=16,color="green",shape="box"];3288[label="xuu33000",fontsize=16,color="green",shape="box"];3289[label="xuu34000",fontsize=16,color="green",shape="box"];3290[label="xuu33000",fontsize=16,color="green",shape="box"];3291[label="xuu34000",fontsize=16,color="green",shape="box"];3292[label="xuu33000",fontsize=16,color="green",shape="box"];3293[label="xuu34000",fontsize=16,color="green",shape="box"];3294[label="xuu33001",fontsize=16,color="green",shape="box"];3295[label="xuu34001",fontsize=16,color="green",shape="box"];3296[label="xuu33001",fontsize=16,color="green",shape="box"];3297[label="xuu34001",fontsize=16,color="green",shape="box"];3298[label="xuu33001",fontsize=16,color="green",shape="box"];3299[label="xuu34001",fontsize=16,color="green",shape="box"];3300[label="xuu33001",fontsize=16,color="green",shape="box"];3301[label="xuu34001",fontsize=16,color="green",shape="box"];3302[label="xuu33001",fontsize=16,color="green",shape="box"];3303[label="xuu34001",fontsize=16,color="green",shape="box"];3304[label="xuu33001",fontsize=16,color="green",shape="box"];3305[label="xuu34001",fontsize=16,color="green",shape="box"];3306[label="xuu33001",fontsize=16,color="green",shape="box"];3307[label="xuu34001",fontsize=16,color="green",shape="box"];3308[label="xuu33001",fontsize=16,color="green",shape="box"];3309[label="xuu34001",fontsize=16,color="green",shape="box"];3310[label="xuu33001",fontsize=16,color="green",shape="box"];3311[label="xuu34001",fontsize=16,color="green",shape="box"];3312[label="xuu33001",fontsize=16,color="green",shape="box"];3313[label="xuu34001",fontsize=16,color="green",shape="box"];3314[label="xuu33001",fontsize=16,color="green",shape="box"];3315[label="xuu34001",fontsize=16,color="green",shape="box"];3316[label="xuu33001",fontsize=16,color="green",shape="box"];3317[label="xuu34001",fontsize=16,color="green",shape="box"];3318[label="xuu33001",fontsize=16,color="green",shape="box"];3319[label="xuu34001",fontsize=16,color="green",shape="box"];3320[label="xuu33001",fontsize=16,color="green",shape="box"];3321[label="xuu34001",fontsize=16,color="green",shape="box"];3322[label="xuu33001",fontsize=16,color="green",shape="box"];3323[label="xuu34001",fontsize=16,color="green",shape="box"];3324 -> 3421[label="",style="dashed", color="red", weight=0]; 3324[label="primCompAux0 xuu159 (compare xuu33000 xuu34000)",fontsize=16,color="magenta"];3324 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3343[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3343 -> 3426[label="",style="solid", color="black", weight=3]; 3344[label="primCmpDouble (Double xuu33000 (Pos xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3344 -> 3427[label="",style="solid", color="black", weight=3]; 3345[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3345 -> 3428[label="",style="solid", color="black", weight=3]; 3346[label="primCmpDouble (Double xuu33000 (Neg xuu330010)) (Double xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3346 -> 3429[label="",style="solid", color="black", weight=3]; 1769[label="primCmpInt (Pos (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1769 -> 1881[label="",style="solid", color="black", weight=3]; 1770[label="primCmpInt (Pos (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1770 -> 1882[label="",style="solid", color="black", weight=3]; 1771[label="primCmpInt (Pos Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4570[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4570[label="",style="solid", color="burlywood", weight=9]; 4570 -> 1883[label="",style="solid", color="burlywood", weight=3]; 4571[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4571[label="",style="solid", color="burlywood", weight=9]; 4571 -> 1884[label="",style="solid", color="burlywood", weight=3]; 1772[label="primCmpInt (Pos Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4572[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4572[label="",style="solid", color="burlywood", weight=9]; 4572 -> 1885[label="",style="solid", color="burlywood", weight=3]; 4573[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1772 -> 4573[label="",style="solid", color="burlywood", weight=9]; 4573 -> 1886[label="",style="solid", color="burlywood", weight=3]; 1773[label="primCmpInt (Neg (Succ xuu3300)) (Pos xuu340)",fontsize=16,color="black",shape="box"];1773 -> 1887[label="",style="solid", color="black", weight=3]; 1774[label="primCmpInt (Neg (Succ xuu3300)) (Neg xuu340)",fontsize=16,color="black",shape="box"];1774 -> 1888[label="",style="solid", color="black", weight=3]; 1775[label="primCmpInt (Neg Zero) (Pos xuu340)",fontsize=16,color="burlywood",shape="box"];4574[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1775 -> 4574[label="",style="solid", color="burlywood", weight=9]; 4574 -> 1889[label="",style="solid", color="burlywood", weight=3]; 4575[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1775 -> 4575[label="",style="solid", color="burlywood", weight=9]; 4575 -> 1890[label="",style="solid", color="burlywood", weight=3]; 1776[label="primCmpInt (Neg Zero) (Neg xuu340)",fontsize=16,color="burlywood",shape="box"];4576[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4576[label="",style="solid", color="burlywood", weight=9]; 4576 -> 1891[label="",style="solid", color="burlywood", weight=3]; 4577[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1776 -> 4577[label="",style="solid", color="burlywood", weight=9]; 4577 -> 1892[label="",style="solid", color="burlywood", weight=3]; 3347[label="xuu33000",fontsize=16,color="green",shape="box"];3348[label="xuu34000",fontsize=16,color="green",shape="box"];3349[label="xuu33000",fontsize=16,color="green",shape="box"];3350[label="xuu34000",fontsize=16,color="green",shape="box"];3351[label="xuu33000",fontsize=16,color="green",shape="box"];3352[label="xuu34000",fontsize=16,color="green",shape="box"];3353[label="xuu33000",fontsize=16,color="green",shape="box"];3354[label="xuu34000",fontsize=16,color="green",shape="box"];3355[label="xuu33000",fontsize=16,color="green",shape="box"];3356[label="xuu34000",fontsize=16,color="green",shape="box"];3357[label="xuu33000",fontsize=16,color="green",shape="box"];3358[label="xuu34000",fontsize=16,color="green",shape="box"];3359[label="xuu33000",fontsize=16,color="green",shape="box"];3360[label="xuu34000",fontsize=16,color="green",shape="box"];3361[label="xuu33000",fontsize=16,color="green",shape="box"];3362[label="xuu34000",fontsize=16,color="green",shape="box"];3363[label="xuu33000",fontsize=16,color="green",shape="box"];3364[label="xuu34000",fontsize=16,color="green",shape="box"];3365[label="xuu33000",fontsize=16,color="green",shape="box"];3366[label="xuu34000",fontsize=16,color="green",shape="box"];3367[label="xuu33000",fontsize=16,color="green",shape="box"];3368[label="xuu34000",fontsize=16,color="green",shape="box"];3369[label="xuu33000",fontsize=16,color="green",shape="box"];3370[label="xuu34000",fontsize=16,color="green",shape="box"];3371[label="xuu33000",fontsize=16,color="green",shape="box"];3372[label="xuu34000",fontsize=16,color="green",shape="box"];3373[label="xuu33000",fontsize=16,color="green",shape="box"];3374[label="xuu34000",fontsize=16,color="green",shape="box"];3375 -> 2976[label="",style="dashed", color="red", weight=0]; 3375[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3375 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3375 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3376 -> 2977[label="",style="dashed", color="red", weight=0]; 3376[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3376 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3376 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3377 -> 2978[label="",style="dashed", color="red", weight=0]; 3377[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3377 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3377 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3378 -> 2979[label="",style="dashed", color="red", weight=0]; 3378[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3378 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3378 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3379 -> 2980[label="",style="dashed", color="red", weight=0]; 3379[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3379 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3379 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3380 -> 2981[label="",style="dashed", color="red", weight=0]; 3380[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3380 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3380 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3381 -> 2982[label="",style="dashed", color="red", weight=0]; 3381[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3381 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3382 -> 1258[label="",style="dashed", color="red", weight=0]; 3382[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3382 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3382 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3383 -> 2984[label="",style="dashed", color="red", weight=0]; 3383[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3383 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3383 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3384 -> 2985[label="",style="dashed", color="red", weight=0]; 3384[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3384 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3384 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3385 -> 2986[label="",style="dashed", color="red", weight=0]; 3385[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3385 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3385 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3386 -> 2987[label="",style="dashed", color="red", weight=0]; 3386[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3386 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3386 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3387 -> 2988[label="",style="dashed", color="red", weight=0]; 3387[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3387 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3387 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3388 -> 2989[label="",style="dashed", color="red", weight=0]; 3388[label="xuu33001 < xuu34001",fontsize=16,color="magenta"];3388 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3388 -> 3457[label="",style="dashed", color="magenta", weight=3]; 3389[label="xuu33001 == xuu34001",fontsize=16,color="blue",shape="box"];4578[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4578[label="",style="solid", color="blue", weight=9]; 4578 -> 3458[label="",style="solid", color="blue", weight=3]; 4579[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4579[label="",style="solid", color="blue", weight=9]; 4579 -> 3459[label="",style="solid", color="blue", weight=3]; 4580[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4580[label="",style="solid", color="blue", weight=9]; 4580 -> 3460[label="",style="solid", color="blue", weight=3]; 4581[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4581[label="",style="solid", color="blue", weight=9]; 4581 -> 3461[label="",style="solid", color="blue", weight=3]; 4582[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4582[label="",style="solid", color="blue", weight=9]; 4582 -> 3462[label="",style="solid", color="blue", weight=3]; 4583[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4583[label="",style="solid", color="blue", weight=9]; 4583 -> 3463[label="",style="solid", color="blue", weight=3]; 4584[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4584[label="",style="solid", color="blue", weight=9]; 4584 -> 3464[label="",style="solid", color="blue", weight=3]; 4585[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4585[label="",style="solid", color="blue", weight=9]; 4585 -> 3465[label="",style="solid", color="blue", weight=3]; 4586[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4586[label="",style="solid", color="blue", weight=9]; 4586 -> 3466[label="",style="solid", color="blue", weight=3]; 4587[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4587[label="",style="solid", color="blue", weight=9]; 4587 -> 3467[label="",style="solid", color="blue", weight=3]; 4588[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4588[label="",style="solid", color="blue", weight=9]; 4588 -> 3468[label="",style="solid", color="blue", weight=3]; 4589[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4589[label="",style="solid", color="blue", weight=9]; 4589 -> 3469[label="",style="solid", color="blue", weight=3]; 4590[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4590[label="",style="solid", color="blue", weight=9]; 4590 -> 3470[label="",style="solid", color="blue", weight=3]; 4591[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3389 -> 4591[label="",style="solid", color="blue", weight=9]; 4591 -> 3471[label="",style="solid", color="blue", weight=3]; 3390[label="xuu33002 <= xuu34002",fontsize=16,color="blue",shape="box"];4592[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4592[label="",style="solid", color="blue", weight=9]; 4592 -> 3472[label="",style="solid", color="blue", weight=3]; 4593[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4593[label="",style="solid", color="blue", weight=9]; 4593 -> 3473[label="",style="solid", color="blue", weight=3]; 4594[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4594[label="",style="solid", color="blue", weight=9]; 4594 -> 3474[label="",style="solid", color="blue", weight=3]; 4595[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4595[label="",style="solid", color="blue", weight=9]; 4595 -> 3475[label="",style="solid", color="blue", weight=3]; 4596[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4596[label="",style="solid", color="blue", weight=9]; 4596 -> 3476[label="",style="solid", color="blue", weight=3]; 4597[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4597[label="",style="solid", color="blue", weight=9]; 4597 -> 3477[label="",style="solid", color="blue", weight=3]; 4598[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4598[label="",style="solid", color="blue", weight=9]; 4598 -> 3478[label="",style="solid", color="blue", weight=3]; 4599[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4599[label="",style="solid", color="blue", weight=9]; 4599 -> 3479[label="",style="solid", color="blue", weight=3]; 4600[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4600[label="",style="solid", color="blue", weight=9]; 4600 -> 3480[label="",style="solid", color="blue", weight=3]; 4601[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4601[label="",style="solid", color="blue", weight=9]; 4601 -> 3481[label="",style="solid", color="blue", weight=3]; 4602[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4602[label="",style="solid", color="blue", weight=9]; 4602 -> 3482[label="",style="solid", color="blue", weight=3]; 4603[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4603[label="",style="solid", color="blue", weight=9]; 4603 -> 3483[label="",style="solid", color="blue", weight=3]; 4604[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4604[label="",style="solid", color="blue", weight=9]; 4604 -> 3484[label="",style="solid", color="blue", weight=3]; 4605[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3390 -> 4605[label="",style="solid", color="blue", weight=9]; 4605 -> 3485[label="",style="solid", color="blue", weight=3]; 3391[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3391 -> 3486[label="",style="solid", color="black", weight=3]; 3392[label="primCmpFloat (Float xuu33000 (Pos xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3392 -> 3487[label="",style="solid", color="black", weight=3]; 3393[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Pos xuu340010))",fontsize=16,color="black",shape="box"];3393 -> 3488[label="",style="solid", color="black", weight=3]; 3394[label="primCmpFloat (Float xuu33000 (Neg xuu330010)) (Float xuu34000 (Neg xuu340010))",fontsize=16,color="black",shape="box"];3394 -> 3489[label="",style="solid", color="black", weight=3]; 3395[label="xuu33000",fontsize=16,color="green",shape="box"];3396[label="xuu34000",fontsize=16,color="green",shape="box"];2215[label="primCmpNat xuu3300 xuu3400",fontsize=16,color="burlywood",shape="triangle"];4606[label="xuu3300/Succ xuu33000",fontsize=10,color="white",style="solid",shape="box"];2215 -> 4606[label="",style="solid", color="burlywood", weight=9]; 4606 -> 2526[label="",style="solid", color="burlywood", weight=3]; 4607[label="xuu3300/Zero",fontsize=10,color="white",style="solid",shape="box"];2215 -> 4607[label="",style="solid", color="burlywood", weight=9]; 4607 -> 2527[label="",style="solid", color="burlywood", weight=3]; 3397[label="xuu33000 * xuu34001",fontsize=16,color="burlywood",shape="triangle"];4608[label="xuu33000/Integer xuu330000",fontsize=10,color="white",style="solid",shape="box"];3397 -> 4608[label="",style="solid", color="burlywood", weight=9]; 4608 -> 3490[label="",style="solid", color="burlywood", weight=3]; 3398 -> 3397[label="",style="dashed", color="red", weight=0]; 3398[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3398 -> 3491[label="",style="dashed", color="magenta", weight=3]; 3398 -> 3492[label="",style="dashed", color="magenta", weight=3]; 3399 -> 579[label="",style="dashed", color="red", weight=0]; 3399[label="xuu33000 * xuu34001",fontsize=16,color="magenta"];3399 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3399 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3400 -> 579[label="",style="dashed", color="red", weight=0]; 3400[label="xuu34000 * xuu33001",fontsize=16,color="magenta"];3400 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3400 -> 3496[label="",style="dashed", color="magenta", weight=3]; 1838[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1728[label="primPlusInt (Pos xuu2820) xuu89",fontsize=16,color="burlywood",shape="box"];4609[label="xuu89/Pos xuu890",fontsize=10,color="white",style="solid",shape="box"];1728 -> 4609[label="",style="solid", color="burlywood", weight=9]; 4609 -> 1849[label="",style="solid", color="burlywood", weight=3]; 4610[label="xuu89/Neg xuu890",fontsize=10,color="white",style="solid",shape="box"];1728 -> 4610[label="",style="solid", color="burlywood", weight=9]; 4610 -> 1850[label="",style="solid", color="burlywood", weight=3]; 1729[label="primPlusInt (Neg xuu2820) xuu89",fontsize=16,color="burlywood",shape="box"];4611[label="xuu89/Pos xuu890",fontsize=10,color="white",style="solid",shape="box"];1729 -> 4611[label="",style="solid", color="burlywood", weight=9]; 4611 -> 1851[label="",style="solid", color="burlywood", weight=3]; 4612[label="xuu89/Neg xuu890",fontsize=10,color="white",style="solid",shape="box"];1729 -> 4612[label="",style="solid", color="burlywood", weight=9]; 4612 -> 1852[label="",style="solid", color="burlywood", weight=3]; 1839[label="FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284",fontsize=16,color="green",shape="box"];1840 -> 3793[label="",style="dashed", color="red", weight=0]; 1840[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (Just xuu600) xuu61 xuu28 xuu64",fontsize=16,color="magenta"];1840 -> 3804[label="",style="dashed", color="magenta", weight=3]; 1840 -> 3805[label="",style="dashed", color="magenta", weight=3]; 1840 -> 3806[label="",style="dashed", color="magenta", weight=3]; 1840 -> 3807[label="",style="dashed", color="magenta", weight=3]; 1840 -> 3808[label="",style="dashed", color="magenta", weight=3]; 1841[label="error []",fontsize=16,color="red",shape="box"];1842[label="FiniteMap.mkBalBranch6MkBalBranch12 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284)",fontsize=16,color="black",shape="box"];1842 -> 1960[label="",style="solid", color="black", weight=3]; 1843 -> 579[label="",style="dashed", color="red", weight=0]; 1843[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1843 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1843 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1844 -> 1502[label="",style="dashed", color="red", weight=0]; 1844[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];1844 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1845[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];1845 -> 1964[label="",style="solid", color="black", weight=3]; 1846[label="FiniteMap.mkBalBranch6MkBalBranch01 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];1846 -> 1965[label="",style="solid", color="black", weight=3]; 4011[label="FiniteMap.sizeFM xuu195",fontsize=16,color="burlywood",shape="triangle"];4613[label="xuu195/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4011 -> 4613[label="",style="solid", color="burlywood", weight=9]; 4613 -> 4013[label="",style="solid", color="burlywood", weight=3]; 4614[label="xuu195/FiniteMap.Branch xuu1950 xuu1951 xuu1952 xuu1953 xuu1954",fontsize=10,color="white",style="solid",shape="box"];4011 -> 4614[label="",style="solid", color="burlywood", weight=9]; 4614 -> 4014[label="",style="solid", color="burlywood", weight=3]; 4012 -> 1703[label="",style="dashed", color="red", weight=0]; 4012[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu195 xuu192 xuu194)",fontsize=16,color="magenta"];4012 -> 4015[label="",style="dashed", color="magenta", weight=3]; 4012 -> 4016[label="",style="dashed", color="magenta", weight=3]; 1853[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];1854[label="FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364",fontsize=16,color="green",shape="box"];1855 -> 3793[label="",style="dashed", color="red", weight=0]; 1855[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) Nothing xuu61 xuu36 xuu64",fontsize=16,color="magenta"];1855 -> 3809[label="",style="dashed", color="magenta", weight=3]; 1855 -> 3810[label="",style="dashed", color="magenta", weight=3]; 1855 -> 3811[label="",style="dashed", color="magenta", weight=3]; 1855 -> 3812[label="",style="dashed", color="magenta", weight=3]; 1855 -> 3813[label="",style="dashed", color="magenta", weight=3]; 1856[label="error []",fontsize=16,color="red",shape="box"];1857[label="FiniteMap.mkBalBranch6MkBalBranch12 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364)",fontsize=16,color="black",shape="box"];1857 -> 1972[label="",style="solid", color="black", weight=3]; 1858 -> 579[label="",style="dashed", color="red", weight=0]; 1858[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1858 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1858 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1859 -> 1502[label="",style="dashed", color="red", weight=0]; 1859[label="FiniteMap.sizeFM xuu643",fontsize=16,color="magenta"];1859 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1860[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 False",fontsize=16,color="black",shape="box"];1860 -> 1976[label="",style="solid", color="black", weight=3]; 1861[label="FiniteMap.mkBalBranch6MkBalBranch01 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];1861 -> 1977[label="",style="solid", color="black", weight=3]; 1737[label="primMulNat (Succ xuu311000000) (Succ xuu600100)",fontsize=16,color="black",shape="box"];1737 -> 1864[label="",style="solid", color="black", weight=3]; 1738[label="primMulNat (Succ xuu311000000) Zero",fontsize=16,color="black",shape="box"];1738 -> 1865[label="",style="solid", color="black", weight=3]; 1739[label="primMulNat Zero (Succ xuu600100)",fontsize=16,color="black",shape="box"];1739 -> 1866[label="",style="solid", color="black", weight=3]; 1740[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1740 -> 1867[label="",style="solid", color="black", weight=3]; 3401[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3401 -> 3497[label="",style="solid", color="black", weight=3]; 3402[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3402 -> 3498[label="",style="solid", color="black", weight=3]; 3403[label="xuu33000",fontsize=16,color="green",shape="box"];3404[label="xuu34000",fontsize=16,color="green",shape="box"];3405[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3405 -> 3499[label="",style="solid", color="black", weight=3]; 3406[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3406 -> 3500[label="",style="solid", color="black", weight=3]; 3407[label="xuu33000",fontsize=16,color="green",shape="box"];3408[label="xuu34000",fontsize=16,color="green",shape="box"];3409[label="xuu33000",fontsize=16,color="green",shape="box"];3410[label="xuu34000",fontsize=16,color="green",shape="box"];1615 -> 1171[label="",style="dashed", color="red", weight=0]; 1615[label="compare xuu330 xuu340",fontsize=16,color="magenta"];1615 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1616[label="LT",fontsize=16,color="green",shape="box"];3411[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3411 -> 3501[label="",style="solid", color="black", weight=3]; 3412[label="xuu33000",fontsize=16,color="green",shape="box"];3413[label="xuu34000",fontsize=16,color="green",shape="box"];3414[label="xuu33000",fontsize=16,color="green",shape="box"];3415[label="xuu34000",fontsize=16,color="green",shape="box"];3416[label="xuu33000",fontsize=16,color="green",shape="box"];3417[label="xuu34000",fontsize=16,color="green",shape="box"];3418[label="compare3 xuu33000 xuu34000",fontsize=16,color="black",shape="box"];3418 -> 3502[label="",style="solid", color="black", weight=3]; 3419[label="xuu33000",fontsize=16,color="green",shape="box"];3420[label="xuu34000",fontsize=16,color="green",shape="box"];3422[label="compare xuu33000 xuu34000",fontsize=16,color="blue",shape="box"];4615[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4615[label="",style="solid", color="blue", weight=9]; 4615 -> 3503[label="",style="solid", color="blue", weight=3]; 4616[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4616[label="",style="solid", color="blue", weight=9]; 4616 -> 3504[label="",style="solid", color="blue", weight=3]; 4617[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4617[label="",style="solid", color="blue", weight=9]; 4617 -> 3505[label="",style="solid", color="blue", weight=3]; 4618[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4618[label="",style="solid", color="blue", weight=9]; 4618 -> 3506[label="",style="solid", color="blue", weight=3]; 4619[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 3507[label="",style="solid", color="blue", weight=3]; 4620[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 3508[label="",style="solid", color="blue", weight=3]; 4621[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 3509[label="",style="solid", color="blue", weight=3]; 4622[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 3510[label="",style="solid", color="blue", weight=3]; 4623[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 3511[label="",style="solid", color="blue", weight=3]; 4624[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 3512[label="",style="solid", color="blue", weight=3]; 4625[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 3513[label="",style="solid", color="blue", weight=3]; 4626[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 3514[label="",style="solid", color="blue", weight=3]; 4627[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 3515[label="",style="solid", color="blue", weight=3]; 4628[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3422 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 3516[label="",style="solid", color="blue", weight=3]; 3423[label="xuu159",fontsize=16,color="green",shape="box"];3421[label="primCompAux0 xuu165 xuu166",fontsize=16,color="burlywood",shape="triangle"];4629[label="xuu166/LT",fontsize=10,color="white",style="solid",shape="box"];3421 -> 4629[label="",style="solid", color="burlywood", weight=9]; 4629 -> 3517[label="",style="solid", color="burlywood", weight=3]; 4630[label="xuu166/EQ",fontsize=10,color="white",style="solid",shape="box"];3421 -> 4630[label="",style="solid", color="burlywood", weight=9]; 4630 -> 3518[label="",style="solid", color="burlywood", weight=3]; 4631[label="xuu166/GT",fontsize=10,color="white",style="solid",shape="box"];3421 -> 4631[label="",style="solid", color="burlywood", weight=9]; 4631 -> 3519[label="",style="solid", color="burlywood", weight=3]; 3426 -> 1171[label="",style="dashed", color="red", weight=0]; 3426[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3426 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3426 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3427 -> 1171[label="",style="dashed", color="red", weight=0]; 3427[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3427 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3427 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3428 -> 1171[label="",style="dashed", color="red", weight=0]; 3428[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3428 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3428 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3429 -> 1171[label="",style="dashed", color="red", weight=0]; 3429[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3429 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3549[label="",style="dashed", color="magenta", weight=3]; 1881[label="primCmpNat (Succ xuu3300) xuu340",fontsize=16,color="burlywood",shape="triangle"];4632[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4632[label="",style="solid", color="burlywood", weight=9]; 4632 -> 2147[label="",style="solid", color="burlywood", weight=3]; 4633[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4633[label="",style="solid", color="burlywood", weight=9]; 4633 -> 2148[label="",style="solid", color="burlywood", weight=3]; 1882[label="GT",fontsize=16,color="green",shape="box"];1883[label="primCmpInt (Pos Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1883 -> 2149[label="",style="solid", color="black", weight=3]; 1884[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1884 -> 2150[label="",style="solid", color="black", weight=3]; 1885[label="primCmpInt (Pos Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1885 -> 2151[label="",style="solid", color="black", weight=3]; 1886[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1886 -> 2152[label="",style="solid", color="black", weight=3]; 1887[label="LT",fontsize=16,color="green",shape="box"];1888[label="primCmpNat xuu340 (Succ xuu3300)",fontsize=16,color="burlywood",shape="triangle"];4634[label="xuu340/Succ xuu3400",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4634[label="",style="solid", color="burlywood", weight=9]; 4634 -> 2153[label="",style="solid", color="burlywood", weight=3]; 4635[label="xuu340/Zero",fontsize=10,color="white",style="solid",shape="box"];1888 -> 4635[label="",style="solid", color="burlywood", weight=9]; 4635 -> 2154[label="",style="solid", color="burlywood", weight=3]; 1889[label="primCmpInt (Neg Zero) (Pos (Succ xuu3400))",fontsize=16,color="black",shape="box"];1889 -> 2155[label="",style="solid", color="black", weight=3]; 1890[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1890 -> 2156[label="",style="solid", color="black", weight=3]; 1891[label="primCmpInt (Neg Zero) (Neg (Succ xuu3400))",fontsize=16,color="black",shape="box"];1891 -> 2157[label="",style="solid", color="black", weight=3]; 1892[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1892 -> 2158[label="",style="solid", color="black", weight=3]; 3430[label="xuu33001",fontsize=16,color="green",shape="box"];3431[label="xuu34001",fontsize=16,color="green",shape="box"];3432[label="xuu33001",fontsize=16,color="green",shape="box"];3433[label="xuu34001",fontsize=16,color="green",shape="box"];3434[label="xuu33001",fontsize=16,color="green",shape="box"];3435[label="xuu34001",fontsize=16,color="green",shape="box"];3436[label="xuu33001",fontsize=16,color="green",shape="box"];3437[label="xuu34001",fontsize=16,color="green",shape="box"];3438[label="xuu33001",fontsize=16,color="green",shape="box"];3439[label="xuu34001",fontsize=16,color="green",shape="box"];3440[label="xuu33001",fontsize=16,color="green",shape="box"];3441[label="xuu34001",fontsize=16,color="green",shape="box"];3442[label="xuu33001",fontsize=16,color="green",shape="box"];3443[label="xuu34001",fontsize=16,color="green",shape="box"];3444[label="xuu34001",fontsize=16,color="green",shape="box"];3445[label="xuu33001",fontsize=16,color="green",shape="box"];3446[label="xuu33001",fontsize=16,color="green",shape="box"];3447[label="xuu34001",fontsize=16,color="green",shape="box"];3448[label="xuu33001",fontsize=16,color="green",shape="box"];3449[label="xuu34001",fontsize=16,color="green",shape="box"];3450[label="xuu33001",fontsize=16,color="green",shape="box"];3451[label="xuu34001",fontsize=16,color="green",shape="box"];3452[label="xuu33001",fontsize=16,color="green",shape="box"];3453[label="xuu34001",fontsize=16,color="green",shape="box"];3454[label="xuu33001",fontsize=16,color="green",shape="box"];3455[label="xuu34001",fontsize=16,color="green",shape="box"];3456[label="xuu33001",fontsize=16,color="green",shape="box"];3457[label="xuu34001",fontsize=16,color="green",shape="box"];3458 -> 2026[label="",style="dashed", color="red", weight=0]; 3458[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3458 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3459 -> 2029[label="",style="dashed", color="red", weight=0]; 3459[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3459 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3460 -> 2022[label="",style="dashed", color="red", weight=0]; 3460[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3460 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3461 -> 2031[label="",style="dashed", color="red", weight=0]; 3461[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3461 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3462 -> 86[label="",style="dashed", color="red", weight=0]; 3462[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3462 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3463 -> 2030[label="",style="dashed", color="red", weight=0]; 3463[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3463 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3464 -> 2027[label="",style="dashed", color="red", weight=0]; 3464[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3464 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3465 -> 2023[label="",style="dashed", color="red", weight=0]; 3465[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3465 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3466 -> 2033[label="",style="dashed", color="red", weight=0]; 3466[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3466 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3467 -> 2024[label="",style="dashed", color="red", weight=0]; 3467[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3467 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3468 -> 2025[label="",style="dashed", color="red", weight=0]; 3468[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3468 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3469 -> 2032[label="",style="dashed", color="red", weight=0]; 3469[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3469 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3470 -> 2028[label="",style="dashed", color="red", weight=0]; 3470[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3470 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3471 -> 2034[label="",style="dashed", color="red", weight=0]; 3471[label="xuu33001 == xuu34001",fontsize=16,color="magenta"];3471 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3472 -> 2507[label="",style="dashed", color="red", weight=0]; 3472[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3472 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3473 -> 2508[label="",style="dashed", color="red", weight=0]; 3473[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3473 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3474 -> 2509[label="",style="dashed", color="red", weight=0]; 3474[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3474 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3475 -> 2510[label="",style="dashed", color="red", weight=0]; 3475[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3475 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3476 -> 2511[label="",style="dashed", color="red", weight=0]; 3476[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3476 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3477 -> 2512[label="",style="dashed", color="red", weight=0]; 3477[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3477 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3478 -> 2513[label="",style="dashed", color="red", weight=0]; 3478[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3478 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3479 -> 2514[label="",style="dashed", color="red", weight=0]; 3479[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3479 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3480 -> 2515[label="",style="dashed", color="red", weight=0]; 3480[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3480 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3481 -> 2516[label="",style="dashed", color="red", weight=0]; 3481[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3481 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3481 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3482 -> 2517[label="",style="dashed", color="red", weight=0]; 3482[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3482 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3482 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3483 -> 2518[label="",style="dashed", color="red", weight=0]; 3483[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3483 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3483 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3484 -> 2519[label="",style="dashed", color="red", weight=0]; 3484[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3484 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3485 -> 2520[label="",style="dashed", color="red", weight=0]; 3485[label="xuu33002 <= xuu34002",fontsize=16,color="magenta"];3485 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3485 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3486 -> 1171[label="",style="dashed", color="red", weight=0]; 3486[label="compare (xuu33000 * Pos xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3486 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3487 -> 1171[label="",style="dashed", color="red", weight=0]; 3487[label="compare (xuu33000 * Pos xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3487 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3488 -> 1171[label="",style="dashed", color="red", weight=0]; 3488[label="compare (xuu33000 * Neg xuu340010) (Pos xuu330010 * xuu34000)",fontsize=16,color="magenta"];3488 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3488 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3489 -> 1171[label="",style="dashed", color="red", weight=0]; 3489[label="compare (xuu33000 * Neg xuu340010) (Neg xuu330010 * xuu34000)",fontsize=16,color="magenta"];3489 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3489 -> 3613[label="",style="dashed", color="magenta", weight=3]; 2526[label="primCmpNat (Succ xuu33000) xuu3400",fontsize=16,color="burlywood",shape="box"];4636[label="xuu3400/Succ xuu34000",fontsize=10,color="white",style="solid",shape="box"];2526 -> 4636[label="",style="solid", color="burlywood", weight=9]; 4636 -> 2744[label="",style="solid", color="burlywood", weight=3]; 4637[label="xuu3400/Zero",fontsize=10,color="white",style="solid",shape="box"];2526 -> 4637[label="",style="solid", color="burlywood", weight=9]; 4637 -> 2745[label="",style="solid", color="burlywood", weight=3]; 2527[label="primCmpNat Zero xuu3400",fontsize=16,color="burlywood",shape="box"];4638[label="xuu3400/Succ xuu34000",fontsize=10,color="white",style="solid",shape="box"];2527 -> 4638[label="",style="solid", color="burlywood", weight=9]; 4638 -> 2746[label="",style="solid", color="burlywood", weight=3]; 4639[label="xuu3400/Zero",fontsize=10,color="white",style="solid",shape="box"];2527 -> 4639[label="",style="solid", color="burlywood", weight=9]; 4639 -> 2747[label="",style="solid", color="burlywood", weight=3]; 3490[label="Integer xuu330000 * xuu34001",fontsize=16,color="burlywood",shape="box"];4640[label="xuu34001/Integer xuu340010",fontsize=10,color="white",style="solid",shape="box"];3490 -> 4640[label="",style="solid", color="burlywood", weight=9]; 4640 -> 3614[label="",style="solid", color="burlywood", weight=3]; 3491[label="xuu33001",fontsize=16,color="green",shape="box"];3492[label="xuu34000",fontsize=16,color="green",shape="box"];3493[label="xuu33000",fontsize=16,color="green",shape="box"];3494[label="xuu34001",fontsize=16,color="green",shape="box"];3495[label="xuu34000",fontsize=16,color="green",shape="box"];3496[label="xuu33001",fontsize=16,color="green",shape="box"];1849[label="primPlusInt (Pos xuu2820) (Pos xuu890)",fontsize=16,color="black",shape="box"];1849 -> 1967[label="",style="solid", color="black", weight=3]; 1850[label="primPlusInt (Pos xuu2820) (Neg xuu890)",fontsize=16,color="black",shape="box"];1850 -> 1968[label="",style="solid", color="black", weight=3]; 1851[label="primPlusInt (Neg xuu2820) (Pos xuu890)",fontsize=16,color="black",shape="box"];1851 -> 1969[label="",style="solid", color="black", weight=3]; 1852[label="primPlusInt (Neg xuu2820) (Neg xuu890)",fontsize=16,color="black",shape="box"];1852 -> 1970[label="",style="solid", color="black", weight=3]; 3804[label="Succ Zero",fontsize=16,color="green",shape="box"];3805[label="Just xuu600",fontsize=16,color="green",shape="box"];3806[label="xuu28",fontsize=16,color="green",shape="box"];3807[label="xuu64",fontsize=16,color="green",shape="box"];3808[label="xuu61",fontsize=16,color="green",shape="box"];1960 -> 2040[label="",style="dashed", color="red", weight=0]; 1960[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 (FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283)",fontsize=16,color="magenta"];1960 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1961[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1962 -> 1502[label="",style="dashed", color="red", weight=0]; 1962[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1962 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1963[label="xuu643",fontsize=16,color="green",shape="box"];1964[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];1964 -> 2076[label="",style="solid", color="black", weight=3]; 1965[label="FiniteMap.mkBalBranch6Single_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1965 -> 2077[label="",style="solid", color="black", weight=3]; 4013[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];4013 -> 4017[label="",style="solid", color="black", weight=3]; 4014[label="FiniteMap.sizeFM (FiniteMap.Branch xuu1950 xuu1951 xuu1952 xuu1953 xuu1954)",fontsize=16,color="black",shape="box"];4014 -> 4018[label="",style="solid", color="black", weight=3]; 4015[label="FiniteMap.mkBranchLeft_size xuu195 xuu192 xuu194",fontsize=16,color="black",shape="box"];4015 -> 4019[label="",style="solid", color="black", weight=3]; 4016[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];3809[label="Succ Zero",fontsize=16,color="green",shape="box"];3810[label="Nothing",fontsize=16,color="green",shape="box"];3811[label="xuu36",fontsize=16,color="green",shape="box"];3812[label="xuu64",fontsize=16,color="green",shape="box"];3813[label="xuu61",fontsize=16,color="green",shape="box"];1972 -> 2085[label="",style="dashed", color="red", weight=0]; 1972[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 (FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363)",fontsize=16,color="magenta"];1972 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1973[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1974 -> 1502[label="",style="dashed", color="red", weight=0]; 1974[label="FiniteMap.sizeFM xuu644",fontsize=16,color="magenta"];1974 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1975[label="xuu643",fontsize=16,color="green",shape="box"];1976[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 otherwise",fontsize=16,color="black",shape="box"];1976 -> 2144[label="",style="solid", color="black", weight=3]; 1977[label="FiniteMap.mkBalBranch6Single_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="black",shape="box"];1977 -> 2145[label="",style="solid", color="black", weight=3]; 1864 -> 1979[label="",style="dashed", color="red", weight=0]; 1864[label="primPlusNat (primMulNat xuu311000000 (Succ xuu600100)) (Succ xuu600100)",fontsize=16,color="magenta"];1864 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1865[label="Zero",fontsize=16,color="green",shape="box"];1866[label="Zero",fontsize=16,color="green",shape="box"];1867[label="Zero",fontsize=16,color="green",shape="box"];3497 -> 3615[label="",style="dashed", color="red", weight=0]; 3497[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3497 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3498 -> 3620[label="",style="dashed", color="red", weight=0]; 3498[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3498 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3499 -> 1985[label="",style="dashed", color="red", weight=0]; 3499[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3499 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3499 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3499 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3500 -> 3626[label="",style="dashed", color="red", weight=0]; 3500[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3500 -> 3627[label="",style="dashed", color="magenta", weight=3]; 1751[label="xuu330",fontsize=16,color="green",shape="box"];1752[label="xuu340",fontsize=16,color="green",shape="box"];3501 -> 3628[label="",style="dashed", color="red", weight=0]; 3501[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3501 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3502 -> 3630[label="",style="dashed", color="red", weight=0]; 3502[label="compare2 xuu33000 xuu34000 (xuu33000 == xuu34000)",fontsize=16,color="magenta"];3502 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3240[label="",style="dashed", color="red", weight=0]; 3503[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3503 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3503 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3242[label="",style="dashed", color="red", weight=0]; 3504[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3504 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3504 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3505 -> 2844[label="",style="dashed", color="red", weight=0]; 3505[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3505 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3505 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3246[label="",style="dashed", color="red", weight=0]; 3506[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3506 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3507 -> 3248[label="",style="dashed", color="red", weight=0]; 3507[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3507 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3507 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3508 -> 2845[label="",style="dashed", color="red", weight=0]; 3508[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3508 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3508 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3509 -> 2846[label="",style="dashed", color="red", weight=0]; 3509[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3509 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3509 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3510 -> 1171[label="",style="dashed", color="red", weight=0]; 3510[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3510 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3510 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3254[label="",style="dashed", color="red", weight=0]; 3511[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3511 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3512 -> 2848[label="",style="dashed", color="red", weight=0]; 3512[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3512 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3513 -> 2849[label="",style="dashed", color="red", weight=0]; 3513[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3513 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3514 -> 2850[label="",style="dashed", color="red", weight=0]; 3514[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3514 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3262[label="",style="dashed", color="red", weight=0]; 3515[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3515 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3516 -> 2851[label="",style="dashed", color="red", weight=0]; 3516[label="compare xuu33000 xuu34000",fontsize=16,color="magenta"];3516 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3517[label="primCompAux0 xuu165 LT",fontsize=16,color="black",shape="box"];3517 -> 3660[label="",style="solid", color="black", weight=3]; 3518[label="primCompAux0 xuu165 EQ",fontsize=16,color="black",shape="box"];3518 -> 3661[label="",style="solid", color="black", weight=3]; 3519[label="primCompAux0 xuu165 GT",fontsize=16,color="black",shape="box"];3519 -> 3662[label="",style="solid", color="black", weight=3]; 3542 -> 579[label="",style="dashed", color="red", weight=0]; 3542[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3542 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3543 -> 579[label="",style="dashed", color="red", weight=0]; 3543[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3543 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3544 -> 579[label="",style="dashed", color="red", weight=0]; 3544[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3544 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3545 -> 579[label="",style="dashed", color="red", weight=0]; 3545[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3545 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3546 -> 579[label="",style="dashed", color="red", weight=0]; 3546[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3546 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3547 -> 579[label="",style="dashed", color="red", weight=0]; 3547[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3547 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3548 -> 579[label="",style="dashed", color="red", weight=0]; 3548[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3548 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3549 -> 579[label="",style="dashed", color="red", weight=0]; 3549[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3549 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3678[label="",style="dashed", color="magenta", weight=3]; 2147[label="primCmpNat (Succ xuu3300) (Succ xuu3400)",fontsize=16,color="black",shape="box"];2147 -> 2215[label="",style="solid", color="black", weight=3]; 2148[label="primCmpNat (Succ xuu3300) Zero",fontsize=16,color="black",shape="box"];2148 -> 2216[label="",style="solid", color="black", weight=3]; 2149 -> 1888[label="",style="dashed", color="red", weight=0]; 2149[label="primCmpNat Zero (Succ xuu3400)",fontsize=16,color="magenta"];2149 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2150[label="EQ",fontsize=16,color="green",shape="box"];2151[label="GT",fontsize=16,color="green",shape="box"];2152[label="EQ",fontsize=16,color="green",shape="box"];2153[label="primCmpNat (Succ xuu3400) (Succ xuu3300)",fontsize=16,color="black",shape="box"];2153 -> 2219[label="",style="solid", color="black", weight=3]; 2154[label="primCmpNat Zero (Succ xuu3300)",fontsize=16,color="black",shape="box"];2154 -> 2220[label="",style="solid", color="black", weight=3]; 2155[label="LT",fontsize=16,color="green",shape="box"];2156[label="EQ",fontsize=16,color="green",shape="box"];2157 -> 1881[label="",style="dashed", color="red", weight=0]; 2157[label="primCmpNat (Succ xuu3400) Zero",fontsize=16,color="magenta"];2157 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2158[label="EQ",fontsize=16,color="green",shape="box"];3550[label="xuu33001",fontsize=16,color="green",shape="box"];3551[label="xuu34001",fontsize=16,color="green",shape="box"];3552[label="xuu33001",fontsize=16,color="green",shape="box"];3553[label="xuu34001",fontsize=16,color="green",shape="box"];3554[label="xuu33001",fontsize=16,color="green",shape="box"];3555[label="xuu34001",fontsize=16,color="green",shape="box"];3556[label="xuu33001",fontsize=16,color="green",shape="box"];3557[label="xuu34001",fontsize=16,color="green",shape="box"];3558[label="xuu33001",fontsize=16,color="green",shape="box"];3559[label="xuu34001",fontsize=16,color="green",shape="box"];3560[label="xuu33001",fontsize=16,color="green",shape="box"];3561[label="xuu34001",fontsize=16,color="green",shape="box"];3562[label="xuu33001",fontsize=16,color="green",shape="box"];3563[label="xuu34001",fontsize=16,color="green",shape="box"];3564[label="xuu33001",fontsize=16,color="green",shape="box"];3565[label="xuu34001",fontsize=16,color="green",shape="box"];3566[label="xuu33001",fontsize=16,color="green",shape="box"];3567[label="xuu34001",fontsize=16,color="green",shape="box"];3568[label="xuu33001",fontsize=16,color="green",shape="box"];3569[label="xuu34001",fontsize=16,color="green",shape="box"];3570[label="xuu33001",fontsize=16,color="green",shape="box"];3571[label="xuu34001",fontsize=16,color="green",shape="box"];3572[label="xuu33001",fontsize=16,color="green",shape="box"];3573[label="xuu34001",fontsize=16,color="green",shape="box"];3574[label="xuu33001",fontsize=16,color="green",shape="box"];3575[label="xuu34001",fontsize=16,color="green",shape="box"];3576[label="xuu33001",fontsize=16,color="green",shape="box"];3577[label="xuu34001",fontsize=16,color="green",shape="box"];3578[label="xuu33002",fontsize=16,color="green",shape="box"];3579[label="xuu34002",fontsize=16,color="green",shape="box"];3580[label="xuu33002",fontsize=16,color="green",shape="box"];3581[label="xuu34002",fontsize=16,color="green",shape="box"];3582[label="xuu33002",fontsize=16,color="green",shape="box"];3583[label="xuu34002",fontsize=16,color="green",shape="box"];3584[label="xuu33002",fontsize=16,color="green",shape="box"];3585[label="xuu34002",fontsize=16,color="green",shape="box"];3586[label="xuu33002",fontsize=16,color="green",shape="box"];3587[label="xuu34002",fontsize=16,color="green",shape="box"];3588[label="xuu33002",fontsize=16,color="green",shape="box"];3589[label="xuu34002",fontsize=16,color="green",shape="box"];3590[label="xuu33002",fontsize=16,color="green",shape="box"];3591[label="xuu34002",fontsize=16,color="green",shape="box"];3592[label="xuu33002",fontsize=16,color="green",shape="box"];3593[label="xuu34002",fontsize=16,color="green",shape="box"];3594[label="xuu33002",fontsize=16,color="green",shape="box"];3595[label="xuu34002",fontsize=16,color="green",shape="box"];3596[label="xuu33002",fontsize=16,color="green",shape="box"];3597[label="xuu34002",fontsize=16,color="green",shape="box"];3598[label="xuu33002",fontsize=16,color="green",shape="box"];3599[label="xuu34002",fontsize=16,color="green",shape="box"];3600[label="xuu33002",fontsize=16,color="green",shape="box"];3601[label="xuu34002",fontsize=16,color="green",shape="box"];3602[label="xuu33002",fontsize=16,color="green",shape="box"];3603[label="xuu34002",fontsize=16,color="green",shape="box"];3604[label="xuu33002",fontsize=16,color="green",shape="box"];3605[label="xuu34002",fontsize=16,color="green",shape="box"];3606 -> 579[label="",style="dashed", color="red", weight=0]; 3606[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3606 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3607 -> 579[label="",style="dashed", color="red", weight=0]; 3607[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3607 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3607 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3608 -> 579[label="",style="dashed", color="red", weight=0]; 3608[label="xuu33000 * Pos xuu340010",fontsize=16,color="magenta"];3608 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3608 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3609 -> 579[label="",style="dashed", color="red", weight=0]; 3609[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3609 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3609 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3610 -> 579[label="",style="dashed", color="red", weight=0]; 3610[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3610 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3610 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3611 -> 579[label="",style="dashed", color="red", weight=0]; 3611[label="Pos xuu330010 * xuu34000",fontsize=16,color="magenta"];3611 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3611 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3612 -> 579[label="",style="dashed", color="red", weight=0]; 3612[label="xuu33000 * Neg xuu340010",fontsize=16,color="magenta"];3612 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3612 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3613 -> 579[label="",style="dashed", color="red", weight=0]; 3613[label="Neg xuu330010 * xuu34000",fontsize=16,color="magenta"];3613 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3613 -> 3694[label="",style="dashed", color="magenta", weight=3]; 2744[label="primCmpNat (Succ xuu33000) (Succ xuu34000)",fontsize=16,color="black",shape="box"];2744 -> 3110[label="",style="solid", color="black", weight=3]; 2745[label="primCmpNat (Succ xuu33000) Zero",fontsize=16,color="black",shape="box"];2745 -> 3111[label="",style="solid", color="black", weight=3]; 2746[label="primCmpNat Zero (Succ xuu34000)",fontsize=16,color="black",shape="box"];2746 -> 3112[label="",style="solid", color="black", weight=3]; 2747[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2747 -> 3113[label="",style="solid", color="black", weight=3]; 3614[label="Integer xuu330000 * Integer xuu340010",fontsize=16,color="black",shape="box"];3614 -> 3695[label="",style="solid", color="black", weight=3]; 1967[label="Pos (primPlusNat xuu2820 xuu890)",fontsize=16,color="green",shape="box"];1967 -> 2079[label="",style="dashed", color="green", weight=3]; 1968[label="primMinusNat xuu2820 xuu890",fontsize=16,color="burlywood",shape="triangle"];4641[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4641[label="",style="solid", color="burlywood", weight=9]; 4641 -> 2080[label="",style="solid", color="burlywood", weight=3]; 4642[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4642[label="",style="solid", color="burlywood", weight=9]; 4642 -> 2081[label="",style="solid", color="burlywood", weight=3]; 1969 -> 1968[label="",style="dashed", color="red", weight=0]; 1969[label="primMinusNat xuu890 xuu2820",fontsize=16,color="magenta"];1969 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1970[label="Neg (primPlusNat xuu2820 xuu890)",fontsize=16,color="green",shape="box"];1970 -> 2084[label="",style="dashed", color="green", weight=3]; 2041 -> 1258[label="",style="dashed", color="red", weight=0]; 2041[label="FiniteMap.sizeFM xuu284 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2041 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2040[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 xuu103",fontsize=16,color="burlywood",shape="triangle"];4643[label="xuu103/False",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4643[label="",style="solid", color="burlywood", weight=9]; 4643 -> 2161[label="",style="solid", color="burlywood", weight=3]; 4644[label="xuu103/True",fontsize=10,color="white",style="solid",shape="box"];2040 -> 4644[label="",style="solid", color="burlywood", weight=9]; 4644 -> 2162[label="",style="solid", color="burlywood", weight=3]; 2075[label="xuu644",fontsize=16,color="green",shape="box"];2076[label="FiniteMap.mkBalBranch6MkBalBranch00 (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2076 -> 2163[label="",style="solid", color="black", weight=3]; 2077 -> 3793[label="",style="dashed", color="red", weight=0]; 2077[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu600) xuu61 xuu28 xuu643) xuu644",fontsize=16,color="magenta"];2077 -> 3814[label="",style="dashed", color="magenta", weight=3]; 2077 -> 3815[label="",style="dashed", color="magenta", weight=3]; 2077 -> 3816[label="",style="dashed", color="magenta", weight=3]; 2077 -> 3817[label="",style="dashed", color="magenta", weight=3]; 2077 -> 3818[label="",style="dashed", color="magenta", weight=3]; 4017[label="Pos Zero",fontsize=16,color="green",shape="box"];4018[label="xuu1952",fontsize=16,color="green",shape="box"];4019 -> 4011[label="",style="dashed", color="red", weight=0]; 4019[label="FiniteMap.sizeFM xuu194",fontsize=16,color="magenta"];4019 -> 4020[label="",style="dashed", color="magenta", weight=3]; 2086 -> 1258[label="",style="dashed", color="red", weight=0]; 2086[label="FiniteMap.sizeFM xuu364 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2086 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2085[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 xuu107",fontsize=16,color="burlywood",shape="triangle"];4645[label="xuu107/False",fontsize=10,color="white",style="solid",shape="box"];2085 -> 4645[label="",style="solid", color="burlywood", weight=9]; 4645 -> 2175[label="",style="solid", color="burlywood", weight=3]; 4646[label="xuu107/True",fontsize=10,color="white",style="solid",shape="box"];2085 -> 4646[label="",style="solid", color="burlywood", weight=9]; 4646 -> 2176[label="",style="solid", color="burlywood", weight=3]; 2143[label="xuu644",fontsize=16,color="green",shape="box"];2144[label="FiniteMap.mkBalBranch6MkBalBranch00 Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu640 xuu641 xuu642 xuu643 xuu644 True",fontsize=16,color="black",shape="box"];2144 -> 2213[label="",style="solid", color="black", weight=3]; 2145 -> 3793[label="",style="dashed", color="red", weight=0]; 2145[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu640 xuu641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu61 xuu36 xuu643) xuu644",fontsize=16,color="magenta"];2145 -> 3819[label="",style="dashed", color="magenta", weight=3]; 2145 -> 3820[label="",style="dashed", color="magenta", weight=3]; 2145 -> 3821[label="",style="dashed", color="magenta", weight=3]; 2145 -> 3822[label="",style="dashed", color="magenta", weight=3]; 2145 -> 3823[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1375[label="",style="dashed", color="red", weight=0]; 1980[label="primMulNat xuu311000000 (Succ xuu600100)",fontsize=16,color="magenta"];1980 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2079[label="",style="dashed", color="red", weight=0]; 1979[label="primPlusNat xuu99 (Succ xuu600100)",fontsize=16,color="magenta"];1979 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2180[label="",style="dashed", color="magenta", weight=3]; 3616 -> 2026[label="",style="dashed", color="red", weight=0]; 3616[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3616 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3616 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3615[label="compare2 xuu33000 xuu34000 xuu176",fontsize=16,color="burlywood",shape="triangle"];4647[label="xuu176/False",fontsize=10,color="white",style="solid",shape="box"];3615 -> 4647[label="",style="solid", color="burlywood", weight=9]; 4647 -> 3699[label="",style="solid", color="burlywood", weight=3]; 4648[label="xuu176/True",fontsize=10,color="white",style="solid",shape="box"];3615 -> 4648[label="",style="solid", color="burlywood", weight=9]; 4648 -> 3700[label="",style="solid", color="burlywood", weight=3]; 3621 -> 2029[label="",style="dashed", color="red", weight=0]; 3621[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3621 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3621 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3620[label="compare2 xuu33000 xuu34000 xuu177",fontsize=16,color="burlywood",shape="triangle"];4649[label="xuu177/False",fontsize=10,color="white",style="solid",shape="box"];3620 -> 4649[label="",style="solid", color="burlywood", weight=9]; 4649 -> 3703[label="",style="solid", color="burlywood", weight=3]; 4650[label="xuu177/True",fontsize=10,color="white",style="solid",shape="box"];3620 -> 4650[label="",style="solid", color="burlywood", weight=9]; 4650 -> 3704[label="",style="solid", color="burlywood", weight=3]; 3623[label="xuu34000",fontsize=16,color="green",shape="box"];3624[label="xuu33000",fontsize=16,color="green",shape="box"];3625 -> 2031[label="",style="dashed", color="red", weight=0]; 3625[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3625 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3625 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3627 -> 86[label="",style="dashed", color="red", weight=0]; 3627[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3627 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3627 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3626[label="compare2 xuu33000 xuu34000 xuu178",fontsize=16,color="burlywood",shape="triangle"];4651[label="xuu178/False",fontsize=10,color="white",style="solid",shape="box"];3626 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 3709[label="",style="solid", color="burlywood", weight=3]; 4652[label="xuu178/True",fontsize=10,color="white",style="solid",shape="box"];3626 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 3710[label="",style="solid", color="burlywood", weight=3]; 3629 -> 2033[label="",style="dashed", color="red", weight=0]; 3629[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3629 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3629 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3628[label="compare2 xuu33000 xuu34000 xuu179",fontsize=16,color="burlywood",shape="triangle"];4653[label="xuu179/False",fontsize=10,color="white",style="solid",shape="box"];3628 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 3713[label="",style="solid", color="burlywood", weight=3]; 4654[label="xuu179/True",fontsize=10,color="white",style="solid",shape="box"];3628 -> 4654[label="",style="solid", color="burlywood", weight=9]; 4654 -> 3714[label="",style="solid", color="burlywood", weight=3]; 3631 -> 2028[label="",style="dashed", color="red", weight=0]; 3631[label="xuu33000 == xuu34000",fontsize=16,color="magenta"];3631 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3631 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3630[label="compare2 xuu33000 xuu34000 xuu180",fontsize=16,color="burlywood",shape="triangle"];4655[label="xuu180/False",fontsize=10,color="white",style="solid",shape="box"];3630 -> 4655[label="",style="solid", color="burlywood", weight=9]; 4655 -> 3717[label="",style="solid", color="burlywood", weight=3]; 4656[label="xuu180/True",fontsize=10,color="white",style="solid",shape="box"];3630 -> 4656[label="",style="solid", color="burlywood", weight=9]; 4656 -> 3718[label="",style="solid", color="burlywood", weight=3]; 3632[label="xuu33000",fontsize=16,color="green",shape="box"];3633[label="xuu34000",fontsize=16,color="green",shape="box"];3634[label="xuu33000",fontsize=16,color="green",shape="box"];3635[label="xuu34000",fontsize=16,color="green",shape="box"];3636[label="xuu33000",fontsize=16,color="green",shape="box"];3637[label="xuu34000",fontsize=16,color="green",shape="box"];3638[label="xuu33000",fontsize=16,color="green",shape="box"];3639[label="xuu34000",fontsize=16,color="green",shape="box"];3640[label="xuu33000",fontsize=16,color="green",shape="box"];3641[label="xuu34000",fontsize=16,color="green",shape="box"];3642[label="xuu33000",fontsize=16,color="green",shape="box"];3643[label="xuu34000",fontsize=16,color="green",shape="box"];3644[label="xuu33000",fontsize=16,color="green",shape="box"];3645[label="xuu34000",fontsize=16,color="green",shape="box"];3646[label="xuu33000",fontsize=16,color="green",shape="box"];3647[label="xuu34000",fontsize=16,color="green",shape="box"];3648[label="xuu33000",fontsize=16,color="green",shape="box"];3649[label="xuu34000",fontsize=16,color="green",shape="box"];3650[label="xuu33000",fontsize=16,color="green",shape="box"];3651[label="xuu34000",fontsize=16,color="green",shape="box"];3652[label="xuu33000",fontsize=16,color="green",shape="box"];3653[label="xuu34000",fontsize=16,color="green",shape="box"];3654[label="xuu33000",fontsize=16,color="green",shape="box"];3655[label="xuu34000",fontsize=16,color="green",shape="box"];3656[label="xuu33000",fontsize=16,color="green",shape="box"];3657[label="xuu34000",fontsize=16,color="green",shape="box"];3658[label="xuu33000",fontsize=16,color="green",shape="box"];3659[label="xuu34000",fontsize=16,color="green",shape="box"];3660[label="LT",fontsize=16,color="green",shape="box"];3661[label="xuu165",fontsize=16,color="green",shape="box"];3662[label="GT",fontsize=16,color="green",shape="box"];3663[label="xuu33000",fontsize=16,color="green",shape="box"];3664[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3665[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3666[label="xuu34000",fontsize=16,color="green",shape="box"];3667[label="xuu33000",fontsize=16,color="green",shape="box"];3668[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3669[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3670[label="xuu34000",fontsize=16,color="green",shape="box"];3671[label="xuu33000",fontsize=16,color="green",shape="box"];3672[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3673[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3674[label="xuu34000",fontsize=16,color="green",shape="box"];3675[label="xuu33000",fontsize=16,color="green",shape="box"];3676[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3677[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3678[label="xuu34000",fontsize=16,color="green",shape="box"];2216[label="GT",fontsize=16,color="green",shape="box"];2217[label="Zero",fontsize=16,color="green",shape="box"];2218[label="xuu3400",fontsize=16,color="green",shape="box"];2219 -> 2215[label="",style="dashed", color="red", weight=0]; 2219[label="primCmpNat xuu3400 xuu3300",fontsize=16,color="magenta"];2219 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2220[label="LT",fontsize=16,color="green",shape="box"];2221[label="xuu3400",fontsize=16,color="green",shape="box"];2222[label="Zero",fontsize=16,color="green",shape="box"];3679[label="xuu33000",fontsize=16,color="green",shape="box"];3680[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3681[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3682[label="xuu34000",fontsize=16,color="green",shape="box"];3683[label="xuu33000",fontsize=16,color="green",shape="box"];3684[label="Pos xuu340010",fontsize=16,color="green",shape="box"];3685[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3686[label="xuu34000",fontsize=16,color="green",shape="box"];3687[label="xuu33000",fontsize=16,color="green",shape="box"];3688[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3689[label="Pos xuu330010",fontsize=16,color="green",shape="box"];3690[label="xuu34000",fontsize=16,color="green",shape="box"];3691[label="xuu33000",fontsize=16,color="green",shape="box"];3692[label="Neg xuu340010",fontsize=16,color="green",shape="box"];3693[label="Neg xuu330010",fontsize=16,color="green",shape="box"];3694[label="xuu34000",fontsize=16,color="green",shape="box"];3110 -> 2215[label="",style="dashed", color="red", weight=0]; 3110[label="primCmpNat xuu33000 xuu34000",fontsize=16,color="magenta"];3110 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3110 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3111[label="GT",fontsize=16,color="green",shape="box"];3112[label="LT",fontsize=16,color="green",shape="box"];3113[label="EQ",fontsize=16,color="green",shape="box"];3695[label="Integer (primMulInt xuu330000 xuu340010)",fontsize=16,color="green",shape="box"];3695 -> 3732[label="",style="dashed", color="green", weight=3]; 2079[label="primPlusNat xuu2820 xuu890",fontsize=16,color="burlywood",shape="triangle"];4657[label="xuu2820/Succ xuu28200",fontsize=10,color="white",style="solid",shape="box"];2079 -> 4657[label="",style="solid", color="burlywood", weight=9]; 4657 -> 2165[label="",style="solid", color="burlywood", weight=3]; 4658[label="xuu2820/Zero",fontsize=10,color="white",style="solid",shape="box"];2079 -> 4658[label="",style="solid", color="burlywood", weight=9]; 4658 -> 2166[label="",style="solid", color="burlywood", weight=3]; 2080[label="primMinusNat (Succ xuu28200) xuu890",fontsize=16,color="burlywood",shape="box"];4659[label="xuu890/Succ xuu8900",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4659[label="",style="solid", color="burlywood", weight=9]; 4659 -> 2167[label="",style="solid", color="burlywood", weight=3]; 4660[label="xuu890/Zero",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4660[label="",style="solid", color="burlywood", weight=9]; 4660 -> 2168[label="",style="solid", color="burlywood", weight=3]; 2081[label="primMinusNat Zero xuu890",fontsize=16,color="burlywood",shape="box"];4661[label="xuu890/Succ xuu8900",fontsize=10,color="white",style="solid",shape="box"];2081 -> 4661[label="",style="solid", color="burlywood", weight=9]; 4661 -> 2169[label="",style="solid", color="burlywood", weight=3]; 4662[label="xuu890/Zero",fontsize=10,color="white",style="solid",shape="box"];2081 -> 4662[label="",style="solid", color="burlywood", weight=9]; 4662 -> 2170[label="",style="solid", color="burlywood", weight=3]; 2082[label="xuu2820",fontsize=16,color="green",shape="box"];2083[label="xuu890",fontsize=16,color="green",shape="box"];2084 -> 2079[label="",style="dashed", color="red", weight=0]; 2084[label="primPlusNat xuu2820 xuu890",fontsize=16,color="magenta"];2084 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2159 -> 579[label="",style="dashed", color="red", weight=0]; 2159[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2159 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2160 -> 1502[label="",style="dashed", color="red", weight=0]; 2160[label="FiniteMap.sizeFM xuu284",fontsize=16,color="magenta"];2160 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2161[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 False",fontsize=16,color="black",shape="box"];2161 -> 2226[label="",style="solid", color="black", weight=3]; 2162[label="FiniteMap.mkBalBranch6MkBalBranch11 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2162 -> 2227[label="",style="solid", color="black", weight=3]; 2163[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4663[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2163 -> 4663[label="",style="solid", color="burlywood", weight=9]; 4663 -> 2228[label="",style="solid", color="burlywood", weight=3]; 4664[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2163 -> 4664[label="",style="solid", color="burlywood", weight=9]; 4664 -> 2229[label="",style="solid", color="burlywood", weight=3]; 3814[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3815[label="xuu640",fontsize=16,color="green",shape="box"];3816 -> 3793[label="",style="dashed", color="red", weight=0]; 3816[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (Just xuu600) xuu61 xuu28 xuu643",fontsize=16,color="magenta"];3816 -> 3925[label="",style="dashed", color="magenta", weight=3]; 3816 -> 3926[label="",style="dashed", color="magenta", weight=3]; 3816 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3816 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3816 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3817[label="xuu644",fontsize=16,color="green",shape="box"];3818[label="xuu641",fontsize=16,color="green",shape="box"];4020[label="xuu194",fontsize=16,color="green",shape="box"];2173 -> 579[label="",style="dashed", color="red", weight=0]; 2173[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2173 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1502[label="",style="dashed", color="red", weight=0]; 2174[label="FiniteMap.sizeFM xuu364",fontsize=16,color="magenta"];2174 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2175[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 False",fontsize=16,color="black",shape="box"];2175 -> 2242[label="",style="solid", color="black", weight=3]; 2176[label="FiniteMap.mkBalBranch6MkBalBranch11 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2176 -> 2243[label="",style="solid", color="black", weight=3]; 2213[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 xuu643 xuu644)",fontsize=16,color="burlywood",shape="box"];4665[label="xuu643/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2213 -> 4665[label="",style="solid", color="burlywood", weight=9]; 4665 -> 2523[label="",style="solid", color="burlywood", weight=3]; 4666[label="xuu643/FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434",fontsize=10,color="white",style="solid",shape="box"];2213 -> 4666[label="",style="solid", color="burlywood", weight=9]; 4666 -> 2524[label="",style="solid", color="burlywood", weight=3]; 3819[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3820[label="xuu640",fontsize=16,color="green",shape="box"];3821 -> 3793[label="",style="dashed", color="red", weight=0]; 3821[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) Nothing xuu61 xuu36 xuu643",fontsize=16,color="magenta"];3821 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3821 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3822[label="xuu644",fontsize=16,color="green",shape="box"];3823[label="xuu641",fontsize=16,color="green",shape="box"];2177[label="xuu311000000",fontsize=16,color="green",shape="box"];2178[label="Succ xuu600100",fontsize=16,color="green",shape="box"];2179[label="Succ xuu600100",fontsize=16,color="green",shape="box"];2180[label="xuu99",fontsize=16,color="green",shape="box"];3697[label="xuu33000",fontsize=16,color="green",shape="box"];3698[label="xuu34000",fontsize=16,color="green",shape="box"];3699[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3699 -> 3733[label="",style="solid", color="black", weight=3]; 3700[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3700 -> 3734[label="",style="solid", color="black", weight=3]; 3701[label="xuu33000",fontsize=16,color="green",shape="box"];3702[label="xuu34000",fontsize=16,color="green",shape="box"];3703[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3703 -> 3735[label="",style="solid", color="black", weight=3]; 3704[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3704 -> 3736[label="",style="solid", color="black", weight=3]; 3705[label="xuu33000",fontsize=16,color="green",shape="box"];3706[label="xuu34000",fontsize=16,color="green",shape="box"];3707[label="xuu33000",fontsize=16,color="green",shape="box"];3708[label="xuu34000",fontsize=16,color="green",shape="box"];3709[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3709 -> 3737[label="",style="solid", color="black", weight=3]; 3710[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3710 -> 3738[label="",style="solid", color="black", weight=3]; 3711[label="xuu33000",fontsize=16,color="green",shape="box"];3712[label="xuu34000",fontsize=16,color="green",shape="box"];3713[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3713 -> 3739[label="",style="solid", color="black", weight=3]; 3714[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3714 -> 3740[label="",style="solid", color="black", weight=3]; 3715[label="xuu33000",fontsize=16,color="green",shape="box"];3716[label="xuu34000",fontsize=16,color="green",shape="box"];3717[label="compare2 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3717 -> 3741[label="",style="solid", color="black", weight=3]; 3718[label="compare2 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3718 -> 3742[label="",style="solid", color="black", weight=3]; 2528[label="xuu3400",fontsize=16,color="green",shape="box"];2529[label="xuu3300",fontsize=16,color="green",shape="box"];3325[label="xuu33000",fontsize=16,color="green",shape="box"];3326[label="xuu34000",fontsize=16,color="green",shape="box"];3732 -> 805[label="",style="dashed", color="red", weight=0]; 3732[label="primMulInt xuu330000 xuu340010",fontsize=16,color="magenta"];3732 -> 3760[label="",style="dashed", color="magenta", weight=3]; 3732 -> 3761[label="",style="dashed", color="magenta", weight=3]; 2165[label="primPlusNat (Succ xuu28200) xuu890",fontsize=16,color="burlywood",shape="box"];4667[label="xuu890/Succ xuu8900",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4667[label="",style="solid", color="burlywood", weight=9]; 4667 -> 2231[label="",style="solid", color="burlywood", weight=3]; 4668[label="xuu890/Zero",fontsize=10,color="white",style="solid",shape="box"];2165 -> 4668[label="",style="solid", color="burlywood", weight=9]; 4668 -> 2232[label="",style="solid", color="burlywood", weight=3]; 2166[label="primPlusNat Zero xuu890",fontsize=16,color="burlywood",shape="box"];4669[label="xuu890/Succ xuu8900",fontsize=10,color="white",style="solid",shape="box"];2166 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 2233[label="",style="solid", color="burlywood", weight=3]; 4670[label="xuu890/Zero",fontsize=10,color="white",style="solid",shape="box"];2166 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 2234[label="",style="solid", color="burlywood", weight=3]; 2167[label="primMinusNat (Succ xuu28200) (Succ xuu8900)",fontsize=16,color="black",shape="box"];2167 -> 2235[label="",style="solid", color="black", weight=3]; 2168[label="primMinusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2168 -> 2236[label="",style="solid", color="black", weight=3]; 2169[label="primMinusNat Zero (Succ xuu8900)",fontsize=16,color="black",shape="box"];2169 -> 2237[label="",style="solid", color="black", weight=3]; 2170[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2170 -> 2238[label="",style="solid", color="black", weight=3]; 2171[label="xuu890",fontsize=16,color="green",shape="box"];2172[label="xuu2820",fontsize=16,color="green",shape="box"];2223[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2224 -> 1502[label="",style="dashed", color="red", weight=0]; 2224[label="FiniteMap.sizeFM xuu283",fontsize=16,color="magenta"];2224 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2225[label="xuu284",fontsize=16,color="green",shape="box"];2226[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 otherwise",fontsize=16,color="black",shape="box"];2226 -> 2531[label="",style="solid", color="black", weight=3]; 2227[label="FiniteMap.mkBalBranch6Single_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="black",shape="box"];2227 -> 2532[label="",style="solid", color="black", weight=3]; 2228[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];2228 -> 2533[label="",style="solid", color="black", weight=3]; 2229[label="FiniteMap.mkBalBranch6Double_L (Just xuu600) xuu61 xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu28 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];2229 -> 2534[label="",style="solid", color="black", weight=3]; 3925[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3926[label="Just xuu600",fontsize=16,color="green",shape="box"];3927[label="xuu28",fontsize=16,color="green",shape="box"];3928[label="xuu643",fontsize=16,color="green",shape="box"];3929[label="xuu61",fontsize=16,color="green",shape="box"];2239[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2240 -> 1502[label="",style="dashed", color="red", weight=0]; 2240[label="FiniteMap.sizeFM xuu363",fontsize=16,color="magenta"];2240 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2241[label="xuu364",fontsize=16,color="green",shape="box"];2242[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 otherwise",fontsize=16,color="black",shape="box"];2242 -> 2544[label="",style="solid", color="black", weight=3]; 2243[label="FiniteMap.mkBalBranch6Single_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="black",shape="box"];2243 -> 2545[label="",style="solid", color="black", weight=3]; 2523[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 FiniteMap.EmptyFM xuu644)",fontsize=16,color="black",shape="box"];2523 -> 2740[label="",style="solid", color="black", weight=3]; 2524[label="FiniteMap.mkBalBranch6Double_L Nothing xuu61 xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644) xuu36 (FiniteMap.Branch xuu640 xuu641 xuu642 (FiniteMap.Branch xuu6430 xuu6431 xuu6432 xuu6433 xuu6434) xuu644)",fontsize=16,color="black",shape="box"];2524 -> 2741[label="",style="solid", color="black", weight=3]; 3930[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3931[label="Nothing",fontsize=16,color="green",shape="box"];3932[label="xuu36",fontsize=16,color="green",shape="box"];3933[label="xuu643",fontsize=16,color="green",shape="box"];3934[label="xuu61",fontsize=16,color="green",shape="box"];3733 -> 3762[label="",style="dashed", color="red", weight=0]; 3733[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3733 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3734[label="EQ",fontsize=16,color="green",shape="box"];3735 -> 3764[label="",style="dashed", color="red", weight=0]; 3735[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3735 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3736[label="EQ",fontsize=16,color="green",shape="box"];3737 -> 3766[label="",style="dashed", color="red", weight=0]; 3737[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3737 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3738[label="EQ",fontsize=16,color="green",shape="box"];3739 -> 3768[label="",style="dashed", color="red", weight=0]; 3739[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3739 -> 3769[label="",style="dashed", color="magenta", weight=3]; 3740[label="EQ",fontsize=16,color="green",shape="box"];3741 -> 3770[label="",style="dashed", color="red", weight=0]; 3741[label="compare1 xuu33000 xuu34000 (xuu33000 <= xuu34000)",fontsize=16,color="magenta"];3741 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3742[label="EQ",fontsize=16,color="green",shape="box"];3760[label="xuu330000",fontsize=16,color="green",shape="box"];3761[label="xuu340010",fontsize=16,color="green",shape="box"];2231[label="primPlusNat (Succ xuu28200) (Succ xuu8900)",fontsize=16,color="black",shape="box"];2231 -> 2537[label="",style="solid", color="black", weight=3]; 2232[label="primPlusNat (Succ xuu28200) Zero",fontsize=16,color="black",shape="box"];2232 -> 2538[label="",style="solid", color="black", weight=3]; 2233[label="primPlusNat Zero (Succ xuu8900)",fontsize=16,color="black",shape="box"];2233 -> 2539[label="",style="solid", color="black", weight=3]; 2234[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2234 -> 2540[label="",style="solid", color="black", weight=3]; 2235 -> 1968[label="",style="dashed", color="red", weight=0]; 2235[label="primMinusNat xuu28200 xuu8900",fontsize=16,color="magenta"];2235 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2236[label="Pos (Succ xuu28200)",fontsize=16,color="green",shape="box"];2237[label="Neg (Succ xuu8900)",fontsize=16,color="green",shape="box"];2238[label="Pos Zero",fontsize=16,color="green",shape="box"];2530[label="xuu283",fontsize=16,color="green",shape="box"];2531[label="FiniteMap.mkBalBranch6MkBalBranch10 (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 xuu280 xuu281 xuu282 xuu283 xuu284 True",fontsize=16,color="black",shape="box"];2531 -> 2748[label="",style="solid", color="black", weight=3]; 2532 -> 3793[label="",style="dashed", color="red", weight=0]; 2532[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu280 xuu281 xuu283 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu600) xuu61 xuu284 xuu64)",fontsize=16,color="magenta"];2532 -> 3824[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3825[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3826[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3827[label="",style="dashed", color="magenta", weight=3]; 2532 -> 3828[label="",style="dashed", color="magenta", weight=3]; 2533[label="error []",fontsize=16,color="red",shape="box"];2534 -> 3793[label="",style="dashed", color="red", weight=0]; 2534[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu600) xuu61 xuu28 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];2534 -> 3829[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3830[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3831[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3832[label="",style="dashed", color="magenta", weight=3]; 2534 -> 3833[label="",style="dashed", color="magenta", weight=3]; 2543[label="xuu363",fontsize=16,color="green",shape="box"];2544[label="FiniteMap.mkBalBranch6MkBalBranch10 Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 xuu360 xuu361 xuu362 xuu363 xuu364 True",fontsize=16,color="black",shape="box"];2544 -> 2893[label="",style="solid", color="black", weight=3]; 2545 -> 3793[label="",style="dashed", color="red", weight=0]; 2545[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu360 xuu361 xuu363 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu61 xuu364 xuu64)",fontsize=16,color="magenta"];2545 -> 3839[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3840[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3841[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3842[label="",style="dashed", color="magenta", weight=3]; 2545 -> 3843[label="",style="dashed", color="magenta", weight=3]; 2740[label="error []",fontsize=16,color="red",shape="box"];2741 -> 3793[label="",style="dashed", color="red", weight=0]; 2741[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu6430 xuu6431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu61 xuu36 xuu6433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644)",fontsize=16,color="magenta"];2741 -> 3844[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3845[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3846[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3847[label="",style="dashed", color="magenta", weight=3]; 2741 -> 3848[label="",style="dashed", color="magenta", weight=3]; 3763 -> 2507[label="",style="dashed", color="red", weight=0]; 3763[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3763 -> 3772[label="",style="dashed", color="magenta", weight=3]; 3763 -> 3773[label="",style="dashed", color="magenta", weight=3]; 3762[label="compare1 xuu33000 xuu34000 xuu185",fontsize=16,color="burlywood",shape="triangle"];4671[label="xuu185/False",fontsize=10,color="white",style="solid",shape="box"];3762 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 3774[label="",style="solid", color="burlywood", weight=3]; 4672[label="xuu185/True",fontsize=10,color="white",style="solid",shape="box"];3762 -> 4672[label="",style="solid", color="burlywood", weight=9]; 4672 -> 3775[label="",style="solid", color="burlywood", weight=3]; 3765 -> 2508[label="",style="dashed", color="red", weight=0]; 3765[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3765 -> 3776[label="",style="dashed", color="magenta", weight=3]; 3765 -> 3777[label="",style="dashed", color="magenta", weight=3]; 3764[label="compare1 xuu33000 xuu34000 xuu186",fontsize=16,color="burlywood",shape="triangle"];4673[label="xuu186/False",fontsize=10,color="white",style="solid",shape="box"];3764 -> 4673[label="",style="solid", color="burlywood", weight=9]; 4673 -> 3778[label="",style="solid", color="burlywood", weight=3]; 4674[label="xuu186/True",fontsize=10,color="white",style="solid",shape="box"];3764 -> 4674[label="",style="solid", color="burlywood", weight=9]; 4674 -> 3779[label="",style="solid", color="burlywood", weight=3]; 3767 -> 2511[label="",style="dashed", color="red", weight=0]; 3767[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3767 -> 3780[label="",style="dashed", color="magenta", weight=3]; 3767 -> 3781[label="",style="dashed", color="magenta", weight=3]; 3766[label="compare1 xuu33000 xuu34000 xuu187",fontsize=16,color="burlywood",shape="triangle"];4675[label="xuu187/False",fontsize=10,color="white",style="solid",shape="box"];3766 -> 4675[label="",style="solid", color="burlywood", weight=9]; 4675 -> 3782[label="",style="solid", color="burlywood", weight=3]; 4676[label="xuu187/True",fontsize=10,color="white",style="solid",shape="box"];3766 -> 4676[label="",style="solid", color="burlywood", weight=9]; 4676 -> 3783[label="",style="solid", color="burlywood", weight=3]; 3769 -> 2515[label="",style="dashed", color="red", weight=0]; 3769[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3769 -> 3784[label="",style="dashed", color="magenta", weight=3]; 3769 -> 3785[label="",style="dashed", color="magenta", weight=3]; 3768[label="compare1 xuu33000 xuu34000 xuu188",fontsize=16,color="burlywood",shape="triangle"];4677[label="xuu188/False",fontsize=10,color="white",style="solid",shape="box"];3768 -> 4677[label="",style="solid", color="burlywood", weight=9]; 4677 -> 3786[label="",style="solid", color="burlywood", weight=3]; 4678[label="xuu188/True",fontsize=10,color="white",style="solid",shape="box"];3768 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 3787[label="",style="solid", color="burlywood", weight=3]; 3771 -> 2519[label="",style="dashed", color="red", weight=0]; 3771[label="xuu33000 <= xuu34000",fontsize=16,color="magenta"];3771 -> 3788[label="",style="dashed", color="magenta", weight=3]; 3771 -> 3789[label="",style="dashed", color="magenta", weight=3]; 3770[label="compare1 xuu33000 xuu34000 xuu189",fontsize=16,color="burlywood",shape="triangle"];4679[label="xuu189/False",fontsize=10,color="white",style="solid",shape="box"];3770 -> 4679[label="",style="solid", color="burlywood", weight=9]; 4679 -> 3790[label="",style="solid", color="burlywood", weight=3]; 4680[label="xuu189/True",fontsize=10,color="white",style="solid",shape="box"];3770 -> 4680[label="",style="solid", color="burlywood", weight=9]; 4680 -> 3791[label="",style="solid", color="burlywood", weight=3]; 2537[label="Succ (Succ (primPlusNat xuu28200 xuu8900))",fontsize=16,color="green",shape="box"];2537 -> 2892[label="",style="dashed", color="green", weight=3]; 2538[label="Succ xuu28200",fontsize=16,color="green",shape="box"];2539[label="Succ xuu8900",fontsize=16,color="green",shape="box"];2540[label="Zero",fontsize=16,color="green",shape="box"];2541[label="xuu8900",fontsize=16,color="green",shape="box"];2542[label="xuu28200",fontsize=16,color="green",shape="box"];2748[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 xuu284) xuu64",fontsize=16,color="burlywood",shape="box"];4681[label="xuu284/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4681[label="",style="solid", color="burlywood", weight=9]; 4681 -> 3117[label="",style="solid", color="burlywood", weight=3]; 4682[label="xuu284/FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844",fontsize=10,color="white",style="solid",shape="box"];2748 -> 4682[label="",style="solid", color="burlywood", weight=9]; 4682 -> 3118[label="",style="solid", color="burlywood", weight=3]; 3824[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3825[label="xuu280",fontsize=16,color="green",shape="box"];3826[label="xuu283",fontsize=16,color="green",shape="box"];3827 -> 3793[label="",style="dashed", color="red", weight=0]; 3827[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (Just xuu600) xuu61 xuu284 xuu64",fontsize=16,color="magenta"];3827 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3827 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3827 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3827 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3827 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3828[label="xuu281",fontsize=16,color="green",shape="box"];3829[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3830[label="xuu6430",fontsize=16,color="green",shape="box"];3831 -> 3793[label="",style="dashed", color="red", weight=0]; 3831[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (Just xuu600) xuu61 xuu28 xuu6433",fontsize=16,color="magenta"];3831 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3831 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3831 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3831 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3831 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3832 -> 3793[label="",style="dashed", color="red", weight=0]; 3832[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3832 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3832 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3832 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3832 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3832 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3833[label="xuu6431",fontsize=16,color="green",shape="box"];2893[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 xuu364) xuu64",fontsize=16,color="burlywood",shape="box"];4683[label="xuu364/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2893 -> 4683[label="",style="solid", color="burlywood", weight=9]; 4683 -> 3521[label="",style="solid", color="burlywood", weight=3]; 4684[label="xuu364/FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644",fontsize=10,color="white",style="solid",shape="box"];2893 -> 4684[label="",style="solid", color="burlywood", weight=9]; 4684 -> 3522[label="",style="solid", color="burlywood", weight=3]; 3839[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3840[label="xuu360",fontsize=16,color="green",shape="box"];3841[label="xuu363",fontsize=16,color="green",shape="box"];3842 -> 3793[label="",style="dashed", color="red", weight=0]; 3842[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) Nothing xuu61 xuu364 xuu64",fontsize=16,color="magenta"];3842 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3842 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3842 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3842 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3842 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3843[label="xuu361",fontsize=16,color="green",shape="box"];3844[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3845[label="xuu6430",fontsize=16,color="green",shape="box"];3846 -> 3793[label="",style="dashed", color="red", weight=0]; 3846[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) Nothing xuu61 xuu36 xuu6433",fontsize=16,color="magenta"];3846 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3846 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3846 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3846 -> 3958[label="",style="dashed", color="magenta", weight=3]; 3846 -> 3959[label="",style="dashed", color="magenta", weight=3]; 3847 -> 3793[label="",style="dashed", color="red", weight=0]; 3847[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu640 xuu641 xuu6434 xuu644",fontsize=16,color="magenta"];3847 -> 3960[label="",style="dashed", color="magenta", weight=3]; 3847 -> 3961[label="",style="dashed", color="magenta", weight=3]; 3847 -> 3962[label="",style="dashed", color="magenta", weight=3]; 3847 -> 3963[label="",style="dashed", color="magenta", weight=3]; 3847 -> 3964[label="",style="dashed", color="magenta", weight=3]; 3848[label="xuu6431",fontsize=16,color="green",shape="box"];3772[label="xuu33000",fontsize=16,color="green",shape="box"];3773[label="xuu34000",fontsize=16,color="green",shape="box"];3774[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3774 -> 3965[label="",style="solid", color="black", weight=3]; 3775[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3775 -> 3966[label="",style="solid", color="black", weight=3]; 3776[label="xuu33000",fontsize=16,color="green",shape="box"];3777[label="xuu34000",fontsize=16,color="green",shape="box"];3778[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3778 -> 3967[label="",style="solid", color="black", weight=3]; 3779[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3779 -> 3968[label="",style="solid", color="black", weight=3]; 3780[label="xuu33000",fontsize=16,color="green",shape="box"];3781[label="xuu34000",fontsize=16,color="green",shape="box"];3782[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3782 -> 3969[label="",style="solid", color="black", weight=3]; 3783[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3783 -> 3970[label="",style="solid", color="black", weight=3]; 3784[label="xuu33000",fontsize=16,color="green",shape="box"];3785[label="xuu34000",fontsize=16,color="green",shape="box"];3786[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3786 -> 3971[label="",style="solid", color="black", weight=3]; 3787[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3787 -> 3972[label="",style="solid", color="black", weight=3]; 3788[label="xuu33000",fontsize=16,color="green",shape="box"];3789[label="xuu34000",fontsize=16,color="green",shape="box"];3790[label="compare1 xuu33000 xuu34000 False",fontsize=16,color="black",shape="box"];3790 -> 3973[label="",style="solid", color="black", weight=3]; 3791[label="compare1 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3791 -> 3974[label="",style="solid", color="black", weight=3]; 2892 -> 2079[label="",style="dashed", color="red", weight=0]; 2892[label="primPlusNat xuu28200 xuu8900",fontsize=16,color="magenta"];2892 -> 3722[label="",style="dashed", color="magenta", weight=3]; 2892 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3117[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3117 -> 3724[label="",style="solid", color="black", weight=3]; 3118[label="FiniteMap.mkBalBranch6Double_R (Just xuu600) xuu61 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) xuu64 (FiniteMap.Branch xuu280 xuu281 xuu282 xuu283 (FiniteMap.Branch xuu2840 xuu2841 xuu2842 xuu2843 xuu2844)) xuu64",fontsize=16,color="black",shape="box"];3118 -> 3725[label="",style="solid", color="black", weight=3]; 3935[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3936[label="Just xuu600",fontsize=16,color="green",shape="box"];3937[label="xuu284",fontsize=16,color="green",shape="box"];3938[label="xuu64",fontsize=16,color="green",shape="box"];3939[label="xuu61",fontsize=16,color="green",shape="box"];3940[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3941[label="Just xuu600",fontsize=16,color="green",shape="box"];3942[label="xuu28",fontsize=16,color="green",shape="box"];3943[label="xuu6433",fontsize=16,color="green",shape="box"];3944[label="xuu61",fontsize=16,color="green",shape="box"];3945[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3946[label="xuu640",fontsize=16,color="green",shape="box"];3947[label="xuu6434",fontsize=16,color="green",shape="box"];3948[label="xuu644",fontsize=16,color="green",shape="box"];3949[label="xuu641",fontsize=16,color="green",shape="box"];3521[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 FiniteMap.EmptyFM) xuu64",fontsize=16,color="black",shape="box"];3521 -> 3730[label="",style="solid", color="black", weight=3]; 3522[label="FiniteMap.mkBalBranch6Double_R Nothing xuu61 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) xuu64 (FiniteMap.Branch xuu360 xuu361 xuu362 xuu363 (FiniteMap.Branch xuu3640 xuu3641 xuu3642 xuu3643 xuu3644)) xuu64",fontsize=16,color="black",shape="box"];3522 -> 3731[label="",style="solid", color="black", weight=3]; 3950[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3951[label="Nothing",fontsize=16,color="green",shape="box"];3952[label="xuu364",fontsize=16,color="green",shape="box"];3953[label="xuu64",fontsize=16,color="green",shape="box"];3954[label="xuu61",fontsize=16,color="green",shape="box"];3955[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3956[label="Nothing",fontsize=16,color="green",shape="box"];3957[label="xuu36",fontsize=16,color="green",shape="box"];3958[label="xuu6433",fontsize=16,color="green",shape="box"];3959[label="xuu61",fontsize=16,color="green",shape="box"];3960[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3961[label="xuu640",fontsize=16,color="green",shape="box"];3962[label="xuu6434",fontsize=16,color="green",shape="box"];3963[label="xuu644",fontsize=16,color="green",shape="box"];3964[label="xuu641",fontsize=16,color="green",shape="box"];3965[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];3965 -> 3996[label="",style="solid", color="black", weight=3]; 3966[label="LT",fontsize=16,color="green",shape="box"];3967[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];3967 -> 3997[label="",style="solid", color="black", weight=3]; 3968[label="LT",fontsize=16,color="green",shape="box"];3969[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];3969 -> 3998[label="",style="solid", color="black", weight=3]; 3970[label="LT",fontsize=16,color="green",shape="box"];3971[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];3971 -> 3999[label="",style="solid", color="black", weight=3]; 3972[label="LT",fontsize=16,color="green",shape="box"];3973[label="compare0 xuu33000 xuu34000 otherwise",fontsize=16,color="black",shape="box"];3973 -> 4000[label="",style="solid", color="black", weight=3]; 3974[label="LT",fontsize=16,color="green",shape="box"];3722[label="xuu8900",fontsize=16,color="green",shape="box"];3723[label="xuu28200",fontsize=16,color="green",shape="box"];3724[label="error []",fontsize=16,color="red",shape="box"];3725 -> 3793[label="",style="dashed", color="red", weight=0]; 3725[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2840 xuu2841 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu280 xuu281 xuu283 xuu2843) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu600) xuu61 xuu2844 xuu64)",fontsize=16,color="magenta"];3725 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3725 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3725 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3725 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3725 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3730[label="error []",fontsize=16,color="red",shape="box"];3731 -> 3793[label="",style="dashed", color="red", weight=0]; 3731[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3640 xuu3641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu360 xuu361 xuu363 xuu3643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu61 xuu3644 xuu64)",fontsize=16,color="magenta"];3731 -> 3899[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3901[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3902[label="",style="dashed", color="magenta", weight=3]; 3731 -> 3903[label="",style="dashed", color="magenta", weight=3]; 3996[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3996 -> 4002[label="",style="solid", color="black", weight=3]; 3997[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3997 -> 4003[label="",style="solid", color="black", weight=3]; 3998[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3998 -> 4004[label="",style="solid", color="black", weight=3]; 3999[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];3999 -> 4005[label="",style="solid", color="black", weight=3]; 4000[label="compare0 xuu33000 xuu34000 True",fontsize=16,color="black",shape="box"];4000 -> 4006[label="",style="solid", color="black", weight=3]; 3884[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3885[label="xuu2840",fontsize=16,color="green",shape="box"];3886 -> 3793[label="",style="dashed", color="red", weight=0]; 3886[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu280 xuu281 xuu283 xuu2843",fontsize=16,color="magenta"];3886 -> 3975[label="",style="dashed", color="magenta", weight=3]; 3886 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3886 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3886 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3886 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3887 -> 3793[label="",style="dashed", color="red", weight=0]; 3887[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (Just xuu600) xuu61 xuu2844 xuu64",fontsize=16,color="magenta"];3887 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3887 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3887 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3887 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3887 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3888[label="xuu2841",fontsize=16,color="green",shape="box"];3899[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3900[label="xuu3640",fontsize=16,color="green",shape="box"];3901 -> 3793[label="",style="dashed", color="red", weight=0]; 3901[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu360 xuu361 xuu363 xuu3643",fontsize=16,color="magenta"];3901 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3901 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3901 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3901 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3901 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3902 -> 3793[label="",style="dashed", color="red", weight=0]; 3902[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) Nothing xuu61 xuu3644 xuu64",fontsize=16,color="magenta"];3902 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3902 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3902 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3902 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3902 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3903[label="xuu3641",fontsize=16,color="green",shape="box"];4002[label="GT",fontsize=16,color="green",shape="box"];4003[label="GT",fontsize=16,color="green",shape="box"];4004[label="GT",fontsize=16,color="green",shape="box"];4005[label="GT",fontsize=16,color="green",shape="box"];4006[label="GT",fontsize=16,color="green",shape="box"];3975[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3976[label="xuu280",fontsize=16,color="green",shape="box"];3977[label="xuu283",fontsize=16,color="green",shape="box"];3978[label="xuu2843",fontsize=16,color="green",shape="box"];3979[label="xuu281",fontsize=16,color="green",shape="box"];3980[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3981[label="Just xuu600",fontsize=16,color="green",shape="box"];3982[label="xuu2844",fontsize=16,color="green",shape="box"];3983[label="xuu64",fontsize=16,color="green",shape="box"];3984[label="xuu61",fontsize=16,color="green",shape="box"];3985[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3986[label="xuu360",fontsize=16,color="green",shape="box"];3987[label="xuu363",fontsize=16,color="green",shape="box"];3988[label="xuu3643",fontsize=16,color="green",shape="box"];3989[label="xuu361",fontsize=16,color="green",shape="box"];3990[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3991[label="Nothing",fontsize=16,color="green",shape="box"];3992[label="xuu3644",fontsize=16,color="green",shape="box"];3993[label="xuu64",fontsize=16,color="green",shape="box"];3994[label="xuu61",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(xuu33000), Succ(xuu34000)) -> new_primCmpNat(xuu33000, xuu34000) 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(xuu33000), Succ(xuu34000)) -> new_primCmpNat(xuu33000, xuu34000) 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(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cce) -> new_esEs11(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_addToFM_C22(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bhf, bhg) -> new_mkBalBranch(xuu17, xuu18, new_addToFM_C0(xuu20, Just(xuu22), xuu23, bhf, bhg), xuu21, bhf, bhg) new_pePe(True, xuu148) -> True new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Just(xuu600), xuu61, xuu28, xuu643, app(ty_Maybe, h), ba), xuu644, app(ty_Maybe, h), ba) new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, bag)) -> new_esEs18(xuu3110000, xuu6000, bag) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cdd) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cde) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch110(xuu61, xuu360, xuu361, xuu362, xuu363, EmptyFM, xuu64, False, h, ba) -> error([]) new_esEs30(xuu22, xuu17, app(app(ty_@2, cac), cad)) -> new_esEs4(xuu22, xuu17, cac, cad) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cce) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, ce, cf) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(ty_Ratio, ga)) -> new_lt18(xuu33001, xuu34001, ga) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), Just(xuu600), xuu61, xuu28, xuu64, app(ty_Maybe, h), ba) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, fg), fh)) -> new_lt17(xuu33001, xuu34001, fg, fh) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, hd) -> new_esEs11(new_compare18(xuu33000, xuu34000, hd), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, beh) -> new_ltEs11(xuu33000, xuu34000) new_emptyFM(h, ba) -> EmptyFM new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_addToFM_C0(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Nothing, True, h), GT), h, ba) new_compare111(xuu33000, xuu34000, True, bbb, bbc) -> LT new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cce) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, ed), ee)) -> new_lt17(xuu33000, xuu34000, ed, ee) new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, True, h, ba) -> new_mkBranch(Zero, Just(xuu600), xuu61, xuu28, xuu64, app(ty_Maybe, h), ba) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], bcc)) -> new_ltEs7(xuu33000, xuu34000, bcc) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, ddc), ddd)) -> new_esEs7(xuu3110002, xuu6002, ddc, ddd) new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(xuu33000, xuu34000, bbd, bbe, bbf) new_primCompAux0(xuu165, GT) -> GT new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, bdb)) -> new_ltEs18(xuu33000, xuu34000, bdb) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Just(xuu600), xuu61, xuu28, xuu6433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs6(xuu3110000, xuu6000, cff, cfg, cfh) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, bch), bda)) -> new_ltEs17(xuu33000, xuu34000, bch, bda) new_lt19(xuu33000, xuu34000, app(ty_Ratio, ef)) -> new_lt18(xuu33000, xuu34000, ef) new_mkBalBranch6MkBalBranch3(xuu61, Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu61, xuu360, xuu361, xuu362, xuu363, xuu364, xuu64, new_lt12(new_sizeFM(xuu364, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu363, h, ba))), h, ba) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) new_compare210(xuu33000, xuu34000, True, bbb, bbc) -> EQ new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> Branch(Nothing, new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, beh) -> new_ltEs14(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(xuu311000, xuu600, cch, cda, cdb) new_compare1(:(xuu33000, xuu33001), [], bbg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), GT), h, ba) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs6(xuu3110000, xuu6000, bad, bae, baf) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cce) -> new_esEs14(xuu3110000, xuu6000) new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, new_addToFM_C0(xuu63, Just(xuu311000), xuu31101, h, ba), xuu64, h, ba) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs6(xuu33001, xuu34001, fc, fd, ff) new_compare7(xuu33000, xuu34000, bbd, bbe, bbf) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, bbd, bbe, bbf), bbd, bbe, bbf) new_compare28(Just(xuu3300), Just(xuu3400), False, cdd) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cdd), cdd) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, fg), fh)) -> new_esEs7(xuu33001, xuu34001, fg, fh) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cdd) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), bgc, beh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, gf), gg), gh)) -> new_ltEs13(xuu33002, xuu34002, gf, gg, gh) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, de), df)) -> new_esEs4(xuu33000, xuu34000, de, df) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), ccf, ccg) -> new_asAs(new_esEs22(xuu3110000, xuu6000, ccf), new_esEs23(xuu3110001, xuu6001, ccg)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, bbh)) -> new_ltEs8(xuu3300, xuu3400, bbh) new_lt17(xuu33000, xuu34000, bbb, bbc) -> new_esEs11(new_compare26(xuu33000, xuu34000, bbb, bbc), LT) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, ce), cf)) -> new_esEs4(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, fc), fd), ff)) -> new_lt13(xuu33001, xuu34001, fc, fd, ff) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_primMinusNat0(Succ(xuu28200), Zero) -> Pos(Succ(xuu28200)) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cdd) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, cd)) -> new_esEs18(xuu3110000, xuu6000, cd) new_primCmpInt0(EmptyFM, xuu600, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r0(xuu600, xuu61, EmptyFM, xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs13(xuu33000, xuu34000, bce, bcf, bcg) new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, bbb), bbc)) -> new_esEs7(xuu33000, xuu34000, bbb, bbc) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, db), dc), dd)) -> new_ltEs13(xuu3300, xuu3400, db, dc, dd) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bdd), bde)) -> new_ltEs4(xuu3300, xuu3400, bdd, bde) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, app(app(ty_Either, bhc), bhd)) -> new_ltEs17(xuu33000, xuu34000, bhc, bhd) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, eg), eh)) -> new_esEs4(xuu33001, xuu34001, eg, eh) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, ce, cf) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, ce, cf), ce, cf) new_lt4(xuu33000, xuu34000, app(ty_Maybe, hd)) -> new_lt8(xuu33000, xuu34000, hd) new_lt20(xuu33001, xuu34001, app(ty_Maybe, fb)) -> new_lt8(xuu33001, xuu34001, fb) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, ea), eb), ec)) -> new_lt13(xuu33000, xuu34000, ea, eb, ec) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, beh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), bbg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, bbg), bbg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_mkBalBranch6MkBalBranch110(xuu61, xuu360, xuu361, xuu362, xuu363, xuu364, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu360, xuu361, xuu363, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Nothing, xuu61, xuu364, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ced), cee), cef), cce) -> new_esEs6(xuu3110000, xuu6000, ced, cee, cef) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, chc)) -> new_esEs18(xuu3110000, xuu6000, chc) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(xuu33000, xuu34000, ea, eb, ec) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, beg)) -> new_ltEs18(xuu33001, xuu34001, beg) new_lt19(xuu33000, xuu34000, app(ty_Maybe, dh)) -> new_lt8(xuu33000, xuu34000, dh) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, gb), gc)) -> new_ltEs4(xuu33002, xuu34002, gb, gc) new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu61, xuu36, xuu64, new_gt(new_mkBalBranch6Size_r(xuu61, xuu36, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu61, xuu36, xuu64, h, ba))), h, ba) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cea), ceb), cce) -> new_esEs4(xuu3110000, xuu6000, cea, ceb) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, bee), bef)) -> new_ltEs17(xuu33001, xuu34001, bee, bef) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, app(ty_[], ceh)) -> new_esEs10(xuu3110000, xuu6000, ceh) new_primCmpNat1(xuu3300, Zero) -> GT new_mkBalBranch6MkBalBranch01(xuu61, xuu36, xuu640, xuu641, xuu642, Branch(xuu6430, xuu6431, xuu6432, xuu6433, xuu6434), xuu644, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu6430, xuu6431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), Nothing, xuu61, xuu36, xuu6433, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu640, xuu641, xuu6434, xuu644, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_primMinusNat0(Succ(xuu28200), Succ(xuu8900)) -> new_primMinusNat0(xuu28200, xuu8900) new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, app(ty_Ratio, cga)) -> new_esEs18(xuu3110000, xuu6000, cga) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, baa), bab)) -> new_esEs4(xuu3110000, xuu6000, baa, bab) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, ha), hb)) -> new_ltEs17(xuu33002, xuu34002, ha, hb) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_mkBalBranch6Size_r0(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_sizeFM(xuu64, h, ba) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ca), cb), cc)) -> new_esEs6(xuu3110000, xuu6000, ca, cb, cc) new_primCompAux1(xuu33000, xuu34000, xuu159, bbg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, bbg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cdc) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cdc), new_esEs25(xuu3110001, xuu6001, cdc)) new_esEs8(xuu33000, xuu34000, app(ty_[], bba)) -> new_esEs10(xuu33000, xuu34000, bba) new_addToFM_C0(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C22(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, EmptyFM, True, h, ba) -> error([]) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, bac)) -> new_esEs5(xuu3110000, xuu6000, bac) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch01(xuu61, xuu36, xuu640, xuu641, xuu642, xuu643, xuu644, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu640, xuu641, new_mkBranch(Succ(Succ(Succ(Zero))), Nothing, xuu61, xuu36, xuu643, app(ty_Maybe, h), ba), xuu644, app(ty_Maybe, h), ba) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, che), chf)) -> new_esEs7(xuu3110001, xuu6001, che, chf) new_esEs5(Nothing, Nothing, bb) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, bgc), beh)) -> new_ltEs17(xuu3300, xuu3400, bgc, beh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cgb)) -> new_esEs10(xuu3110000, xuu6000, cgb) new_lt4(xuu33000, xuu34000, app(app(ty_@2, ce), cf)) -> new_lt6(xuu33000, xuu34000, ce, cf) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), bb) -> False new_esEs5(Just(xuu3110000), Nothing, bb) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), he) -> new_asAs(new_esEs21(xuu3110000, xuu6000, he), new_esEs10(xuu3110001, xuu6001, he)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cdg), cdh), cce) -> new_esEs7(xuu3110000, xuu6000, cdg, cdh) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, bca), bcb)) -> new_ltEs4(xuu33000, xuu34000, bca, bcb) new_mkBalBranch(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, new_esEs11(new_primCmpInt0(xuu28, xuu600, xuu61, xuu64, h, ba), LT), h, ba) new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, True, h, ba) -> new_mkBranch(Zero, Nothing, xuu61, xuu36, xuu64, app(ty_Maybe, h), ba) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bfh), bga), beh) -> new_ltEs17(xuu33000, xuu34000, bfh, bga) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, ge)) -> new_ltEs8(xuu33002, xuu34002, ge) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cdd) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_primPlusInt(Pos(xuu2820), Pos(xuu890)) -> Pos(new_primPlusNat1(xuu2820, xuu890)) new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> Branch(Just(xuu311000), new_addListToFM0(xuu61, xuu31101, ba), xuu62, xuu63, xuu64) new_lt4(xuu33000, xuu34000, app(ty_Ratio, bah)) -> new_lt18(xuu33000, xuu34000, bah) new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, daa)) -> new_esEs5(xuu3110001, xuu6001, daa) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), db, dc, dd) -> new_pePe(new_lt19(xuu33000, xuu34000, db), new_asAs(new_esEs19(xuu33000, xuu34000, db), new_pePe(new_lt20(xuu33001, xuu34001, dc), new_asAs(new_esEs20(xuu33001, xuu34001, dc), new_ltEs19(xuu33002, xuu34002, dd))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbg)) -> new_esEs18(xuu3110000, xuu6000, dbg) new_ltEs6(True, False) -> False new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch(xuu600, xuu61, new_addToFM_C0(xuu63, Nothing, xuu31101, h, ba), xuu64, h, ba) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], bc)) -> new_esEs10(xuu3110000, xuu6000, bc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], bbg) -> EQ new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bhf, bhg) -> new_mkBalBranch(xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, Just(xuu22), xuu23, bhf, bhg), bhf, bhg) new_primCmpInt0(Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu600, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(xuu282, new_mkBalBranch6Size_r0(xuu600, xuu61, Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, bea)) -> new_ltEs8(xuu33001, xuu34001, bea) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], cbd)) -> new_compare1(xuu33000, xuu34000, cbd) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs6(xuu3110000, xuu6000, cgh, cha, chb) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, bbd, bbe, bbf) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, bbd, bbe, bbf), bbd, bbe, bbf) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_addToFM_C16(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, xuu63, new_addToFM_C0(xuu64, Just(xuu311000), xuu31101, h, ba), h, ba) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_mkBalBranch6MkBalBranch110(xuu61, xuu360, xuu361, xuu362, xuu363, Branch(xuu3640, xuu3641, xuu3642, xuu3643, xuu3644), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3640, xuu3641, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu360, xuu361, xuu363, xuu3643, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Nothing, xuu61, xuu3644, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs6(xuu3110001, xuu6001, dab, dac, dad) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, beh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_mkBalBranch6MkBalBranch4(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu61, xuu36, xuu64, new_gt(new_mkBalBranch6Size_l(xuu61, xuu36, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu61, xuu36, xuu64, h, ba))), h, ba) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bfe), bff), bfg), beh) -> new_ltEs13(xuu33000, xuu34000, bfe, bff, bfg) new_addListToFM0(xuu61, xuu31101, ba) -> xuu31101 new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cgg)) -> new_esEs5(xuu3110000, xuu6000, cgg) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_mkBalBranch6MkBalBranch3(xuu61, xuu36, xuu64, False, h, ba) -> new_mkBranch(Succ(Zero), Nothing, xuu61, xuu36, xuu64, app(ty_Maybe, h), ba) new_primCmpInt1(EmptyFM, xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(Pos(Zero), new_mkBalBranch6Size_r(xuu61, EmptyFM, xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu600, xuu61, xuu28, xuu64, new_gt(new_mkBalBranch6Size_l0(xuu600, xuu61, xuu28, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu600, xuu61, xuu28, xuu64, h, ba))), h, ba) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bh)) -> new_esEs5(xuu3110000, xuu6000, bh) new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, EmptyFM, xuu64, False, h, ba) -> error([]) new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, Branch(xuu2840, xuu2841, xuu2842, xuu2843, xuu2844), xuu64, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2840, xuu2841, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu280, xuu281, xuu283, xuu2843, app(ty_Maybe, h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), Just(xuu600), xuu61, xuu2844, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_esEs23(xuu3110001, xuu6001, app(ty_[], chd)) -> new_esEs10(xuu3110001, xuu6001, chd) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cce) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bfd), beh) -> new_ltEs8(xuu33000, xuu34000, bfd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, chg), chh)) -> new_esEs4(xuu3110001, xuu6001, chg, chh) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, hd)) -> new_esEs5(xuu33000, xuu34000, hd) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, app(ty_[], bgf)) -> new_ltEs7(xuu33000, xuu34000, bgf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dag), dah)) -> new_esEs7(xuu3110000, xuu6000, dag, dah) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, bbd, bbe, bbf) -> new_esEs11(new_compare7(xuu33000, xuu34000, bbd, bbe, bbf), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cge), cgf)) -> new_esEs4(xuu3110000, xuu6000, cge, cgf) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], bfc), beh) -> new_ltEs7(xuu33000, xuu34000, bfc) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bgb), beh) -> new_ltEs18(xuu33000, xuu34000, bgb) new_gt(xuu83, xuu82) -> new_esEs11(new_compare12(xuu83, xuu82), GT) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], hf)) -> new_esEs10(xuu3110000, xuu6000, hf) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, app(app(ty_@2, cfc), cfd)) -> new_esEs4(xuu3110000, xuu6000, cfc, cfd) new_primPlusInt(Neg(xuu2820), Neg(xuu890)) -> Neg(new_primPlusNat1(xuu2820, xuu890)) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, ce, cf) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, ce, cf), ce, cf) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, bb)) -> new_esEs5(xuu311000, xuu600, bb) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, app(ty_Maybe, cfe)) -> new_esEs5(xuu3110000, xuu6000, cfe) new_ltEs18(xuu3300, xuu3400, bdc) -> new_fsEs(new_compare27(xuu3300, xuu3400, bdc)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs6(xuu3110001, xuu6001, dcf, dcg, dch) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, beh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], fa)) -> new_lt7(xuu33001, xuu34001, fa) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, bd), be)) -> new_esEs7(xuu3110000, xuu6000, bd, be) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, dh)) -> new_esEs5(xuu33000, xuu34000, dh) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bfa), bfb), beh) -> new_ltEs4(xuu33000, xuu34000, bfa, bfb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, bbd, bbe, bbf) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dae)) -> new_esEs18(xuu3110001, xuu6001, dae) new_lt19(xuu33000, xuu34000, app(ty_[], dg)) -> new_lt7(xuu33000, xuu34000, dg) new_mkBalBranch6Size_l0(xuu600, xuu61, xuu28, xuu64, h, ba) -> new_sizeFM(xuu28, h, ba) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, fb)) -> new_esEs5(xuu33001, xuu34001, fb) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bf), bg)) -> new_esEs4(xuu3110000, xuu6000, bf, bg) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_compare111(xuu33000, xuu34000, False, bbb, bbc) -> GT new_addToFM_C0(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), LT), h, ba) new_mkBalBranch6MkBalBranch5(xuu600, xuu61, xuu28, xuu64, False, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, xuu64, new_gt(new_mkBalBranch6Size_r0(xuu600, xuu61, xuu28, xuu64, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu600, xuu61, xuu28, xuu64, h, ba))), h, ba) new_primPlusInt(Pos(xuu2820), Neg(xuu890)) -> new_primMinusNat0(xuu2820, xuu890) new_primPlusInt(Neg(xuu2820), Pos(xuu890)) -> new_primMinusNat0(xuu890, xuu2820) new_mkBalBranch6MkBalBranch3(xuu61, EmptyFM, xuu64, True, h, ba) -> error([]) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, app(ty_Ratio, bhe)) -> new_ltEs18(xuu33000, xuu34000, bhe) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], he) -> False new_esEs10([], :(xuu6000, xuu6001), he) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cec), cce) -> new_esEs5(xuu3110000, xuu6000, cec) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs13(xuu33001, xuu34001, beb, bec, bed) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs9(True, True) -> True new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, hg), hh)) -> new_esEs7(xuu3110000, xuu6000, hg, hh) new_mkBalBranch6MkBalBranch4(xuu61, xuu36, EmptyFM, True, h, ba) -> error([]) new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch(xuu600, xuu61, xuu63, new_addToFM_C0(xuu64, Nothing, xuu31101, h, ba), h, ba) new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, bdf), bdg)) -> new_ltEs4(xuu33001, xuu34001, bdf, bdg) new_esEs30(xuu22, xuu17, app(ty_Maybe, cae)) -> new_esEs5(xuu22, xuu17, cae) new_compare17(xuu33000, xuu34000, app(app(ty_Either, cca), ccb)) -> new_compare26(xuu33000, xuu34000, cca, ccb) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, app(app(ty_@2, bgd), bge)) -> new_ltEs4(xuu33000, xuu34000, bgd, bge) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cgc), cgd)) -> new_esEs7(xuu3110000, xuu6000, cgc, cgd) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], daf)) -> new_esEs10(xuu3110000, xuu6000, daf) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, bbb, bbc) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bbb, bbc), bbb, bbc) new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, xuu284, xuu64, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu280, xuu281, xuu283, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), Just(xuu600), xuu61, xuu284, xuu64, app(ty_Maybe, h), ba), app(ty_Maybe, h), ba) new_lt19(xuu33000, xuu34000, app(app(ty_@2, de), df)) -> new_lt6(xuu33000, xuu34000, de, df) new_esEs19(xuu33000, xuu34000, app(ty_[], dg)) -> new_esEs10(xuu33000, xuu34000, dg) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dda)) -> new_esEs18(xuu3110001, xuu6001, dda) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dec)) -> new_esEs18(xuu3110002, xuu6002, dec) new_compare17(xuu33000, xuu34000, app(ty_Ratio, ccc)) -> new_compare27(xuu33000, xuu34000, ccc) new_lt7(xuu33000, xuu34000, bba) -> new_esEs11(new_compare1(xuu33000, xuu34000, bba), LT) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cce) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_mkBalBranch6Size_l(xuu61, xuu36, xuu64, h, ba) -> new_sizeFM(xuu36, h, ba) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_addToFM_C22(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bhf, bhg) -> new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bhf), bhf), GT), bhf, bhg) new_addToFM_C23(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C13(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), GT), h, ba) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, bcd)) -> new_ltEs8(xuu33000, xuu34000, bcd) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare210(xuu33000, xuu34000, False, bbb, bbc) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, bbb, bbc), bbb, bbc) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_ltEs8(Nothing, Just(xuu34000), bbh) -> True new_esEs11(GT, GT) -> True new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_esEs11(EQ, EQ) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dba), dbb)) -> new_esEs4(xuu3110000, xuu6000, dba, dbb) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt13(xuu33000, xuu34000, bbd, bbe, bbf) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, app(app(ty_Either, cfa), cfb)) -> new_esEs7(xuu3110000, xuu6000, cfa, cfb) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, eg), eh)) -> new_lt6(xuu33001, xuu34001, eg, eh) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdf), cce) -> new_esEs10(xuu3110000, xuu6000, cdf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, beh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, ddg)) -> new_esEs5(xuu3110002, xuu6002, ddg) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], bdh)) -> new_ltEs7(xuu33001, xuu34001, bdh) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cch, cda, cdb) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cch), new_asAs(new_esEs27(xuu3110001, xuu6001, cda), new_esEs28(xuu3110002, xuu6002, cdb))) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, hc)) -> new_ltEs18(xuu33002, xuu34002, hc) new_sizeFM0(Branch(xuu1950, xuu1951, xuu1952, xuu1953, xuu1954), cg, da) -> xuu1952 new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_esEs20(xuu33001, xuu34001, app(ty_[], fa)) -> new_esEs10(xuu33001, xuu34001, fa) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_mkBalBranch0(xuu61, xuu36, xuu64, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu61, xuu36, xuu64, new_esEs11(new_primCmpInt1(xuu36, xuu61, xuu64, h, ba), LT), h, ba) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs6(xuu3110000, xuu6000, dbd, dbe, dbf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, beh) -> new_ltEs10(xuu33000, xuu34000) new_sizeFM(Branch(xuu640, xuu641, xuu642, xuu643, xuu644), h, ba) -> xuu642 new_compare23(xuu33000, xuu34000, True, bbd, bbe, bbf) -> EQ new_ltEs7(xuu3300, xuu3400, bbg) -> new_fsEs(new_compare1(xuu3300, xuu3400, bbg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], gd)) -> new_ltEs7(xuu33002, xuu34002, gd) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, cba)) -> new_esEs18(xuu22, xuu17, cba) new_compare1([], :(xuu34000, xuu34001), bbg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dca), dcb)) -> new_esEs7(xuu3110001, xuu6001, dca, dcb) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, cbe)) -> new_compare18(xuu33000, xuu34000, cbe) new_esEs29(xuu311000, xuu600, app(ty_[], he)) -> new_esEs10(xuu311000, xuu600, he) new_esEs7(Right(xuu3110000), Right(xuu6000), ccd, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, ga)) -> new_esEs18(xuu33001, xuu34001, ga) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_mkBalBranch6MkBalBranch01(xuu61, xuu36, xuu640, xuu641, xuu642, EmptyFM, xuu644, False, h, ba) -> error([]) new_mkBranch(xuu191, xuu192, xuu193, xuu194, xuu195, cg, da) -> Branch(xuu192, xuu193, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu194, cg, da)), new_sizeFM0(xuu195, cg, da)), xuu194, xuu195) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbh)) -> new_esEs10(xuu3110001, xuu6001, dbh) new_mkBalBranch6MkBalBranch40(xuu600, xuu61, xuu28, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu600, xuu61, xuu28, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt12(new_sizeFM(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba))), h, ba) new_compare25(xuu33000, xuu34000, True) -> EQ new_ltEs20(xuu3300, xuu3400, app(ty_[], bbg)) -> new_ltEs7(xuu3300, xuu3400, bbg) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, ceg), cce) -> new_esEs18(xuu3110000, xuu6000, ceg) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cdc)) -> new_esEs18(xuu311000, xuu600, cdc) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(xuu22, xuu17, caf, cag, cah) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, bdc)) -> new_ltEs18(xuu3300, xuu3400, bdc) new_esEs30(xuu22, xuu17, app(ty_[], bhh)) -> new_esEs10(xuu22, xuu17, bhh) new_lt4(xuu33000, xuu34000, app(app(ty_Either, bbb), bbc)) -> new_lt17(xuu33000, xuu34000, bbb, bbc) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dbc)) -> new_esEs5(xuu3110000, xuu6000, dbc) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, bah)) -> new_esEs18(xuu33000, xuu34000, bah) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cce) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], he) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, ed), ee)) -> new_esEs7(xuu33000, xuu34000, ed, ee) new_mkBalBranch6Size_r(xuu61, xuu36, xuu64, h, ba) -> new_sizeFM(xuu64, h, ba) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bdd, bde) -> new_pePe(new_lt4(xuu33000, xuu34000, bdd), new_asAs(new_esEs8(xuu33000, xuu34000, bdd), new_ltEs5(xuu33001, xuu34001, bde))) new_primCmpInt1(Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu61, xuu64, h, ba) -> new_primCmpInt(new_primPlusInt(xuu362, new_mkBalBranch6Size_r(xuu61, Branch(xuu360, xuu361, xuu362, xuu363, xuu364), xuu64, h, ba)), Pos(Succ(Succ(Zero)))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs13(xuu33000, xuu34000, bgh, bha, bhb) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dcc), dcd)) -> new_esEs4(xuu3110001, xuu6001, dcc, dcd) new_lt4(xuu33000, xuu34000, app(ty_[], bba)) -> new_lt7(xuu33000, xuu34000, bba) new_compare17(xuu33000, xuu34000, app(app(ty_@2, cbb), cbc)) -> new_compare13(xuu33000, xuu34000, cbb, cbc) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_mkBalBranch6MkBalBranch30(xuu600, xuu61, Branch(xuu280, xuu281, xuu282, xuu283, xuu284), xuu64, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu600, xuu61, xuu280, xuu281, xuu282, xuu283, xuu284, xuu64, new_lt12(new_sizeFM(xuu284, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu283, h, ba))), h, ba) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, ef)) -> new_esEs18(xuu33000, xuu34000, ef) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_addToFM_C15(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bhf, bhg) -> Branch(Just(xuu22), new_addListToFM0(xuu18, xuu23, bhg), xuu19, xuu20, xuu21) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, dde), ddf)) -> new_esEs4(xuu3110002, xuu6002, dde, ddf) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, ce, cf) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, beh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, bbh) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, bbh) -> False new_lt6(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare13(xuu33000, xuu34000, ce, cf), LT) new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, hd) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, hd), hd) new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_primMinusNat0(Zero, Succ(xuu8900)) -> Neg(Succ(xuu8900)) new_ltEs17(Right(xuu33000), Right(xuu34000), bgc, app(ty_Maybe, bgg)) -> new_ltEs8(xuu33000, xuu34000, bgg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, ccf), ccg)) -> new_esEs4(xuu311000, xuu600, ccf, ccg) new_ltEs17(Right(xuu33000), Left(xuu34000), bgc, beh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_compare7(xuu33000, xuu34000, cbf, cbg, cbh) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_addToFM_C14(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_mkBalBranch0(xuu61, xuu63, new_addToFM_C0(xuu64, Nothing, xuu31101, h, ba), h, ba) new_addToFM_C0(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C24(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), LT), h, ba) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cce) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs6(xuu3110002, xuu6002, ddh, dea, deb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(app(ty_Either, caa), cab)) -> new_esEs7(xuu22, xuu17, caa, cab) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, ce, cf) -> GT new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_lt18(xuu33000, xuu34000, bah) -> new_esEs11(new_compare27(xuu33000, xuu34000, bah), LT) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_compare113(xuu33000, xuu34000, False, bbd, bbe, bbf) -> GT new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_asAs(False, xuu123) -> False new_esEs29(xuu311000, xuu600, app(app(ty_Either, ccd), cce)) -> new_esEs7(xuu311000, xuu600, ccd, cce) new_esEs28(xuu3110002, xuu6002, app(ty_[], ddb)) -> new_esEs10(xuu3110002, xuu6002, ddb) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dce)) -> new_esEs5(xuu3110001, xuu6001, dce) new_mkBalBranch6MkBalBranch4(xuu61, xuu36, Branch(xuu640, xuu641, xuu642, xuu643, xuu644), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu61, xuu36, xuu640, xuu641, xuu642, xuu643, xuu644, new_lt12(new_sizeFM(xuu643, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu644, h, ba))), h, ba) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cde) -> GT new_sizeFM0(EmptyFM, cg, da) -> Pos(Zero) new_esEs7(Left(xuu3110000), Right(xuu6000), ccd, cce) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), ccd, cce) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_addToFM_C16(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs30(x0, x1, ty_Bool) new_lt4(x0, x1, ty_@0) new_esEs5(Nothing, Nothing, x0) new_compare210(x0, x1, True, x2, x3) new_primCmpNat1(x0, Succ(x1)) new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBranch(x0, x1, x2, x3, x4, x5, x6) new_compare6(Char(x0), Char(x1)) new_compare13(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch40(x0, x1, x2, x3, False, x4, x5) new_esEs29(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_ltEs15(x0, x1) new_compare28(x0, x1, True, x2) new_compare113(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Double) new_esEs10(:(x0, x1), :(x2, x3), x4) new_compare17(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_primMinusNat0(Zero, Zero) new_esEs12(Integer(x0), Integer(x1)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat2(Zero, x0) new_addToFM_C23(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_addToFM_C13(x0, x1, x2, x3, x4, x5, True, x6, x7) new_emptyFM(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, x2, x3, x4) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare11(Integer(x0), Integer(x1)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_sIZE_RATIO new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, x2, x3) new_esEs9(False, False) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch40(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_esEs30(x0, x1, ty_Integer) new_primCmpInt0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, x9) new_addToFM_C13(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_addToFM_C23(x0, x1, x2, x3, x4, x5, True, x6, x7) new_addToFM_C24(x0, x1, x2, x3, x4, x5, False, x6, x7) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_lt18(x0, x1, x2) new_compare8(@0, @0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, False, x2, x3) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_primCmpInt1(EmptyFM, x0, x1, x2, x3) new_primMinusNat0(Succ(x0), Zero) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs30(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_lt8(x0, x1, x2) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare26(x0, x1, x2, x3) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_lt17(x0, x1, x2, x3) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_compare210(x0, x1, False, x2, x3) new_ltEs7(x0, x1, x2) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_esEs10([], [], x0) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_compare7(x0, x1, x2, x3, x4) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, ty_Char) new_lt4(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs27(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_mkBalBranch6MkBalBranch30(x0, x1, Branch(x2, x3, x4, x5, x6), x7, True, x8, x9) new_esEs11(LT, GT) new_esEs11(GT, LT) new_esEs10(:(x0, x1), [], x2) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_compare14(x0, x1, True, x2, x3) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux1(x0, x1, x2, x3) new_mkBalBranch6MkBalBranch4(x0, x1, x2, False, x3, x4) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Int) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_ltEs8(Nothing, Nothing, x0) new_primCmpInt1(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_ltEs19(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_addToFM_C14(x0, x1, x2, x3, x4, True, x5, x6) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs8(Nothing, Just(x0), x1) new_esEs21(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Float) new_lt15(x0, x1) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs5(Just(x0), Just(x1), ty_Integer) new_mkBalBranch6MkBalBranch4(x0, x1, EmptyFM, True, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Char) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt20(x0, x1, ty_Char) new_compare28(Just(x0), Nothing, False, x1) new_esEs22(x0, x1, ty_Ordering) new_compare112(x0, x1, True, x2) new_lt9(x0, x1) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare111(x0, x1, True, x2, x3) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs28(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_mkBalBranch6MkBalBranch3(x0, Branch(x1, x2, x3, x4, x5), x6, True, x7, x8) new_gt(x0, x1) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_esEs5(Just(x0), Nothing, x1) new_compare28(Nothing, Nothing, False, x0) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch4(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs16(@0, @0) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMinusNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primPlusInt(Pos(x0), Pos(x1)) new_esEs30(x0, x1, ty_@0) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_primMulNat0(Succ(x0), Zero) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Char) new_esEs27(x0, x1, ty_@0) new_sizeFM(EmptyFM, x0, x1) new_addListToFM0(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs5(Just(x0), Just(x1), ty_Double) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_esEs17(Char(x0), Char(x1)) new_esEs20(x0, x1, ty_Int) new_lt10(x0, x1) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Just(x4), x5, x6, x7) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_ltEs8(Just(x0), Nothing, x1) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, x2) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Nothing, x5, x6, x7) new_esEs27(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_addToFM_C24(x0, x1, x2, x3, x4, x5, True, x6, x7) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Integer) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(x0, x1) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare18(x0, x1, x2) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Bool) new_compare23(x0, x1, False, x2, x3, x4) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_not(True) new_compare1([], :(x0, x1), x2) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Double) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Int) new_ltEs18(x0, x1, x2) new_esEs22(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpNat1(x0, Zero) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs25(x0, x1, ty_Integer) new_primPlusInt(Neg(x0), Neg(x1)) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare12(x0, x1) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Int) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_primCmpInt0(EmptyFM, x0, x1, x2, x3, x4) new_addToFM_C0(Branch(Just(x0), x1, x2, x3, x4), Just(x5), x6, x7, x8) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_lt14(x0, x1) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4, x5) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_compare17(x0, x1, app(ty_[], x2)) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_ltEs6(True, True) new_compare25(x0, x1, False) new_addToFM_C0(Branch(Nothing, x0, x1, x2, x3), Nothing, x4, x5, x6) new_esEs8(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_addToFM_C14(x0, x1, x2, x3, x4, False, x5, x6) new_esEs28(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare17(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch40(x0, x1, x2, EmptyFM, True, x3, x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_primCompAux0(x0, LT) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_compare9(x0, x1) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_sizeFM0(EmptyFM, x0, x1) new_compare15(x0, x1) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_addToFM_C16(x0, x1, x2, x3, x4, x5, True, x6, x7) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4) new_esEs8(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch3(x0, EmptyFM, x1, True, x2, x3) new_mkBalBranch0(x0, x1, x2, x3, x4) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare112(x0, x1, False, x2) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, EmptyFM, x6, False, x7, x8) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_mkBalBranch6MkBalBranch30(x0, x1, EmptyFM, x2, True, x3, x4) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) new_esEs9(False, True) new_esEs9(True, False) new_ltEs5(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Bool) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqNat0(Zero, Zero) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Just(x1), False, x2) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4) new_not(False) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, False, x4, x5) new_compare29(x0, x1, True, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs30(x0, x1, ty_Char) new_esEs10([], :(x0, x1), x2) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_ltEs6(True, False) new_ltEs6(False, True) new_compare28(Nothing, Just(x0), False, x1) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare1(:(x0, x1), [], x2) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs24(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primPlusNat1(Succ(x0), Zero) new_compare14(x0, x1, False, x2, x3) new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4, x5) new_esEs30(x0, x1, ty_Int) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, Branch(x6, x7, x8, x9, x10), x11, False, x12, x13) new_esEs23(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_compare113(x0, x1, True, x2, x3, x4) new_esEs19(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_compare23(x0, x1, True, x2, x3, x4) new_esEs27(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Integer) new_esEs8(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs26(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_[], x2)) 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(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, eg), eh))) -> new_ltEs(xuu33000, xuu34000, eg, eh) new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdb), bdc))) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(ty_[], bah)) -> new_ltEs0(xuu33002, xuu34002, bah) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(app(ty_Either, dc), dd))) -> new_ltEs3(xuu33001, xuu34001, dc, dd) new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bcd), bce), bcf)), bca)) -> new_ltEs2(xuu33000, xuu34000, bcd, bce, bcf) new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, fc), fd), ff))) -> new_ltEs2(xuu33000, xuu34000, fc, fd, ff) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, baa), bab), bac)), gd)) -> new_lt2(xuu33001, xuu34001, baa, bab, bac) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(ty_[], ce)) -> new_ltEs0(xuu33001, xuu34001, ce) new_lt3(xuu33000, xuu34000, bh, ca) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bbg), bbh)), bca)) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, bd), bb) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, bh), ca), bb) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xuu33001, xuu34001, cc, cd) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(ty_[], hg), gd) -> new_lt0(xuu33001, xuu34001, hg) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(ty_[], hg)), gd)) -> new_lt0(xuu33001, xuu34001, hg) new_primCompAux(xuu33000, xuu34000, xuu159, app(app(ty_@2, df), dg)) -> new_compare0(xuu33000, xuu34000, df, dg) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, gf), gc, gd) -> new_lt1(xuu33000, xuu34000, gf) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(app(ty_Either, dc), dd)) -> new_ltEs3(xuu33001, xuu34001, dc, dd) new_lt(xuu33000, xuu34000, h, ba) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, ga), gb), gc, gd) -> new_lt(xuu33000, xuu34000, ga, gb) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_Maybe, bde)) -> new_ltEs1(xuu33000, xuu34000, bde) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(xuu33001, xuu34001, ce) new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_[], bdd))) -> new_ltEs0(xuu33000, xuu34000, bdd) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(xuu33001, xuu34001, cg, da, db) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(app(ty_Either, bbe), bbf))) -> new_ltEs3(xuu33002, xuu34002, bbe, bbf) new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bcc)), bca)) -> new_ltEs1(xuu33000, xuu34000, bcc) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, gg), gh), ha)), gc), gd)) -> new_lt2(xuu33000, xuu34000, gg, gh, ha) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs2(xuu33001, xuu34001, cg, da, db) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(ty_Maybe, hh)), gd)) -> new_lt1(xuu33001, xuu34001, hh) new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) new_compare0(xuu33000, xuu34000, h, ba) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) new_compare21(xuu33000, xuu34000, False, be, bf, bg) -> new_ltEs2(xuu33000, xuu34000, be, bf, bg) new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, fb))) -> new_ltEs1(xuu33000, xuu34000, fb) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(app(ty_@2, baf), bag))) -> new_ltEs(xuu33002, xuu34002, baf, bag) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, h), ba), bb) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu33001, xuu34001, cc, cd) new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_[], bcb), bca) -> new_ltEs0(xuu33000, xuu34000, bcb) new_lt0(xuu33000, xuu34000, bc) -> new_compare(xuu33000, xuu34000, bc) new_primCompAux(xuu33000, xuu34000, xuu159, app(app(ty_Either, ee), ef)) -> new_compare5(xuu33000, xuu34000, ee, ef) new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_ltEs2(xuu33000, xuu34000, bcd, bce, bcf) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xuu33002, xuu34002, bbe, bbf) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], ge)), gc), gd)) -> new_lt0(xuu33000, xuu34000, ge) new_ltEs1(Just(xuu33000), Just(xuu34000), app(ty_Maybe, fb)) -> new_ltEs1(xuu33000, xuu34000, fb) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_lt2(xuu33000, xuu34000, gg, gh, ha) new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, fg), fh))) -> new_ltEs3(xuu33000, xuu34000, fg, fh) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], bc), bb) -> new_compare(xuu33000, xuu34000, bc) new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) new_primCompAux(xuu33000, xuu34000, xuu159, app(ty_Maybe, ea)) -> new_compare3(xuu33000, xuu34000, ea) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(app(ty_@2, he), hf)), gd)) -> new_lt(xuu33001, xuu34001, he, hf) new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs2(xuu33000, xuu34000, bdf, bdg, bdh) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, gf)), gc), gd)) -> new_lt1(xuu33000, xuu34000, gf) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(ty_Maybe, bba)) -> new_ltEs1(xuu33002, xuu34002, bba) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(ty_Maybe, bba))) -> new_ltEs1(xuu33002, xuu34002, bba) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, hb), hc), gc, gd) -> new_lt3(xuu33000, xuu34000, hb, hc) new_primCompAux(xuu33000, xuu34000, xuu159, app(app(app(ty_@3, eb), ec), ed)) -> new_compare4(xuu33000, xuu34000, eb, ec, ed) new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_[], bdd)) -> new_ltEs0(xuu33000, xuu34000, bdd) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, hb), hc)), gc), gd)) -> new_lt3(xuu33000, xuu34000, hb, hc) new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], de)) -> new_compare(xuu33001, xuu34001, de) new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], de)) -> new_primCompAux(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, de), de) new_compare22(xuu33000, xuu34000, False, bh, ca) -> new_ltEs3(xuu33000, xuu34000, bh, ca) new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bcb)), bca)) -> new_ltEs0(xuu33000, xuu34000, bcb) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(xuu33001, xuu34001, cf) new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(xuu33000, xuu34000, bea, beb) new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bca)) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) new_ltEs1(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs2(xuu33000, xuu34000, fc, fd, ff) new_ltEs1(Just(xuu33000), Just(xuu34000), app(app(ty_Either, fg), fh)) -> new_ltEs3(xuu33000, xuu34000, fg, fh) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_Maybe, bde))) -> new_ltEs1(xuu33000, xuu34000, bde) new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_primCompAux(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, de), de) new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], fa))) -> new_ltEs0(xuu33000, xuu34000, fa) new_compare5(xuu33000, xuu34000, bh, ca) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) new_primCompAux(xuu33000, xuu34000, xuu159, app(ty_[], dh)) -> new_compare(xuu33000, xuu34000, dh) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xuu33002, xuu34002, bbb, bbc, bbd) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, ga), gb)), gc), gd)) -> new_lt(xuu33000, xuu34000, ga, gb) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(ty_[], bah))) -> new_ltEs0(xuu33002, xuu34002, bah) new_ltEs0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_compare(xuu33001, xuu34001, de) new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bcc), bca) -> new_ltEs1(xuu33000, xuu34000, bcc) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(app(ty_@2, baf), bag)) -> new_ltEs(xuu33002, xuu34002, baf, bag) new_compare4(xuu33000, xuu34000, be, bf, bg) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(app(ty_Either, bad), bae)), gd)) -> new_lt3(xuu33001, xuu34001, bad, bae) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(app(ty_@2, he), hf), gd) -> new_lt(xuu33001, xuu34001, he, hf) new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_compare(xuu33001, xuu34001, de) new_lt1(xuu33000, xuu34000, bd) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, bh), ca)), bb)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) new_compare2(xuu33000, xuu34000, False, h, ba) -> new_ltEs(xuu33000, xuu34000, h, ba) new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(xuu33000, xuu34000, bea, beb) new_ltEs1(Just(xuu33000), Just(xuu34000), app(ty_[], fa)) -> new_ltEs0(xuu33000, xuu34000, fa) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, be), bf), bg), bb) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], ge), gc, gd) -> new_lt0(xuu33000, xuu34000, ge) new_lt2(xuu33000, xuu34000, be, bf, bg) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_lt2(xuu33001, xuu34001, baa, bab, bac) new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(app(app(ty_@3, bbb), bbc), bbd))) -> new_ltEs2(xuu33002, xuu34002, bbb, bbc, bbd) new_ltEs0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_primCompAux(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, de), de) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(app(ty_Either, bad), bae), gd) -> new_lt3(xuu33001, xuu34001, bad, bae) new_ltEs1(Just(xuu33000), Just(xuu34000), app(app(ty_@2, eg), eh)) -> new_ltEs(xuu33000, xuu34000, eg, eh) new_compare3(xuu33000, xuu34000, bd) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(ty_Maybe, hh), gd) -> new_lt1(xuu33001, xuu34001, hh) new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], bc)), bb)) -> new_compare(xuu33000, xuu34000, bc) new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(ty_Maybe, cf)) -> new_ltEs1(xuu33001, xuu34001, cf) new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs2(xuu33000, xuu34000, bdf, bdg, bdh) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, bhh)) -> new_esEs18(xuu3110000, xuu6000, bhh) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, caa) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cad) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, h, ba) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bgd)) -> new_lt18(xuu33001, xuu34001, bgd) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bad), bae)) -> new_lt17(xuu33001, xuu34001, bad, bae) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, bd) -> new_esEs11(new_compare18(xuu33000, xuu34000, bd), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, bca) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, bh, ca) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, hb), hc)) -> new_lt17(xuu33000, xuu34000, hb, hc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], fa)) -> new_ltEs7(xuu33000, xuu34000, fa) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dbc), dbd)) -> new_esEs7(xuu3110002, xuu6002, dbc, dbd) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, be), bf), bg)) -> new_esEs6(xuu33000, xuu34000, be, bf, bg) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cae)) -> new_ltEs18(xuu33000, xuu34000, cae) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), cca, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(xuu3110000, xuu6000, cch, cda, cdb) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, fg), fh)) -> new_ltEs17(xuu33000, xuu34000, fg, fh) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bgc)) -> new_lt18(xuu33000, xuu34000, bgc) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, bh, ca) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, bca) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_compare1(:(xuu33000, xuu33001), [], de) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_esEs6(xuu3110000, xuu6000, bhe, bhf, bhg) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, be, bf, bg) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs6(xuu33001, xuu34001, baa, bab, bac) new_compare28(Just(xuu3300), Just(xuu3400), False, caa) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, caa), caa) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bad), bae)) -> new_esEs7(xuu33001, xuu34001, bad, bae) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, caa) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), bda, bca) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs13(xuu33002, xuu34002, bbb, bbc, bbd) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, ga), gb)) -> new_esEs4(xuu33000, xuu34000, ga, gb) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cdd, cde) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cdd), new_esEs23(xuu3110001, xuu6001, cde)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cab)) -> new_ltEs8(xuu3300, xuu3400, cab) new_lt17(xuu33000, xuu34000, bh, ca) -> new_esEs11(new_compare26(xuu33000, xuu34000, bh, ca), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, h), ba)) -> new_esEs4(xuu33000, xuu34000, h, ba) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, baa), bab), bac)) -> new_lt13(xuu33001, xuu34001, baa, bab, bac) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, caa) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, bfg)) -> new_esEs18(xuu3110000, xuu6000, bfg) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, bh), ca)) -> new_esEs7(xuu33000, xuu34000, bh, ca) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs13(xuu33000, xuu34000, fc, fd, ff) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, hd), gc), gd)) -> new_ltEs13(xuu3300, xuu3400, hd, gc, gd) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, cb), bb)) -> new_ltEs4(xuu3300, xuu3400, cb, bb) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs17(xuu33000, xuu34000, bea, beb) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, he), hf)) -> new_esEs4(xuu33001, xuu34001, he, hf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, h, ba) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) new_lt4(xuu33000, xuu34000, app(ty_Maybe, bd)) -> new_lt8(xuu33000, xuu34000, bd) new_lt20(xuu33001, xuu34001, app(ty_Maybe, hh)) -> new_lt8(xuu33001, xuu34001, hh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, gg), gh), ha)) -> new_lt13(xuu33000, xuu34000, gg, gh, ha) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, bca) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, de), de) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, cbe), cbf), cbg), cag) -> new_esEs6(xuu3110000, xuu6000, cbe, cbf, cbg) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, ceg)) -> new_esEs18(xuu3110000, xuu6000, ceg) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs6(xuu33000, xuu34000, gg, gh, ha) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, bed)) -> new_ltEs18(xuu33001, xuu34001, bed) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, gf)) -> new_lt8(xuu33000, xuu34000, gf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, baf), bag)) -> new_ltEs4(xuu33002, xuu34002, baf, bag) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cbb), cbc), cag) -> new_esEs4(xuu3110000, xuu6000, cbb, cbc) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dc), dd)) -> new_ltEs17(xuu33001, xuu34001, dc, dd) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, app(ty_[], ccb)) -> new_esEs10(xuu3110000, xuu6000, ccb) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, app(ty_Ratio, cdc)) -> new_esEs18(xuu3110000, xuu6000, cdc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhb), bhc)) -> new_esEs4(xuu3110000, xuu6000, bhb, bhc) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bbe), bbf)) -> new_ltEs17(xuu33002, xuu34002, bbe, bbf) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs6(xuu3110000, xuu6000, bfd, bfe, bff) new_primCompAux1(xuu33000, xuu34000, xuu159, de) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, de)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cgb) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cgb), new_esEs25(xuu3110001, xuu6001, cgb)) new_esEs8(xuu33000, xuu34000, app(ty_[], bc)) -> new_esEs10(xuu33000, xuu34000, bc) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, bhd)) -> new_esEs5(xuu3110000, xuu6000, bhd) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, cfa), cfb)) -> new_esEs7(xuu3110001, xuu6001, cfa, cfb) new_esEs5(Nothing, Nothing, bee) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, bda), bca)) -> new_ltEs17(xuu3300, xuu3400, bda, bca) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cdf)) -> new_esEs10(xuu3110000, xuu6000, cdf) new_lt4(xuu33000, xuu34000, app(app(ty_@2, h), ba)) -> new_lt6(xuu33000, xuu34000, h, ba) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), bee) -> False new_esEs5(Just(xuu3110000), Nothing, bee) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bgf) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bgf), new_esEs10(xuu3110001, xuu6001, bgf)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cah), cba), cag) -> new_esEs7(xuu3110000, xuu6000, cah, cba) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, eg), eh)) -> new_ltEs4(xuu33000, xuu34000, eg, eh) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs17(xuu33000, xuu34000, bcg, bch) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bba)) -> new_ltEs8(xuu33002, xuu34002, bba) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, caa) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, bec)) -> new_lt18(xuu33000, xuu34000, bec) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, cfe)) -> new_esEs5(xuu3110001, xuu6001, cfe) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, gd) -> new_pePe(new_lt19(xuu33000, xuu34000, hd), new_asAs(new_esEs19(xuu33000, xuu34000, hd), new_pePe(new_lt20(xuu33001, xuu34001, gc), new_asAs(new_esEs20(xuu33001, xuu34001, gc), new_ltEs19(xuu33002, xuu34002, gd))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, chg)) -> new_esEs18(xuu3110000, xuu6000, chg) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], bef)) -> new_esEs10(xuu3110000, xuu6000, bef) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], de) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, cf)) -> new_ltEs8(xuu33001, xuu34001, cf) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], dh)) -> new_compare1(xuu33000, xuu34000, dh) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs6(xuu3110000, xuu6000, ced, cee, cef) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, be, bf, bg) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, be, bf, bg), be, bf, bg) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs6(xuu3110001, xuu6001, cff, cfg, cfh) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, bca) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_ltEs13(xuu33000, xuu34000, bcd, bce, bcf) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cec)) -> new_esEs5(xuu3110000, xuu6000, cec) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, bfc)) -> new_esEs5(xuu3110000, xuu6000, bfc) new_esEs23(xuu3110001, xuu6001, app(ty_[], ceh)) -> new_esEs10(xuu3110001, xuu6001, ceh) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bcc), bca) -> new_ltEs8(xuu33000, xuu34000, bcc) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, cfc), cfd)) -> new_esEs4(xuu3110001, xuu6001, cfc, cfd) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, bd)) -> new_esEs5(xuu33000, xuu34000, bd) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, app(ty_[], bdd)) -> new_ltEs7(xuu33000, xuu34000, bdd) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, cgg), cgh)) -> new_esEs7(xuu3110000, xuu6000, cgg, cgh) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, be, bf, bg) -> new_esEs11(new_compare7(xuu33000, xuu34000, be, bf, bg), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cea), ceb)) -> new_esEs4(xuu3110000, xuu6000, cea, ceb) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], bcb), bca) -> new_ltEs7(xuu33000, xuu34000, bcb) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, bfh), bca) -> new_ltEs18(xuu33000, xuu34000, bfh) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bgg)) -> new_esEs10(xuu3110000, xuu6000, bgg) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, app(app(ty_@2, cce), ccf)) -> new_esEs4(xuu3110000, xuu6000, cce, ccf) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, h, ba) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, h, ba), h, ba) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, app(ty_Maybe, ccg)) -> new_esEs5(xuu3110000, xuu6000, ccg) new_ltEs18(xuu3300, xuu3400, cac) -> new_fsEs(new_compare27(xuu3300, xuu3400, cac)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs6(xuu3110001, xuu6001, daf, dag, dah) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, bca) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], hg)) -> new_lt7(xuu33001, xuu34001, hg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, beg), beh)) -> new_esEs7(xuu3110000, xuu6000, beg, beh) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, gf)) -> new_esEs5(xuu33000, xuu34000, gf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs4(xuu33000, xuu34000, bbg, bbh) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, be, bf, bg) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, cga)) -> new_esEs18(xuu3110001, xuu6001, cga) new_lt19(xuu33000, xuu34000, app(ty_[], ge)) -> new_lt7(xuu33000, xuu34000, ge) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, hh)) -> new_esEs5(xuu33001, xuu34001, hh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, bfa), bfb)) -> new_esEs4(xuu3110000, xuu6000, bfa, bfb) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, bh, ca) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), bda, app(ty_Ratio, bga)) -> new_ltEs18(xuu33000, xuu34000, bga) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bgf) -> False new_esEs10([], :(xuu6000, xuu6001), bgf) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cbd), cag) -> new_esEs5(xuu3110000, xuu6000, cbd) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, cg), da), db)) -> new_ltEs13(xuu33001, xuu34001, cg, da, db) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bgh), bha)) -> new_esEs7(xuu3110000, xuu6000, bgh, bha) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, cc), cd)) -> new_ltEs4(xuu33001, xuu34001, cc, cd) new_compare17(xuu33000, xuu34000, app(app(ty_Either, ee), ef)) -> new_compare26(xuu33000, xuu34000, ee, ef) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs4(xuu33000, xuu34000, bdb, bdc) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cdg), cdh)) -> new_esEs7(xuu3110000, xuu6000, cdg, cdh) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], cgf)) -> new_esEs10(xuu3110000, xuu6000, cgf) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, bh, ca) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) new_lt19(xuu33000, xuu34000, app(app(ty_@2, ga), gb)) -> new_lt6(xuu33000, xuu34000, ga, gb) new_esEs19(xuu33000, xuu34000, app(ty_[], ge)) -> new_esEs10(xuu33000, xuu34000, ge) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dba)) -> new_esEs18(xuu3110001, xuu6001, dba) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dcc)) -> new_esEs18(xuu3110002, xuu6002, dcc) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bgb)) -> new_compare27(xuu33000, xuu34000, bgb) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bc) -> new_esEs11(new_compare1(xuu33000, xuu34000, bc), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, fb)) -> new_ltEs8(xuu33000, xuu34000, fb) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, bh, ca) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, bh, ca), bh, ca) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cab) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), bda, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, cha), chb)) -> new_esEs4(xuu3110000, xuu6000, cha, chb) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, be), bf), bg)) -> new_lt13(xuu33000, xuu34000, be, bf, bg) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, app(app(ty_Either, ccc), ccd)) -> new_esEs7(xuu3110000, xuu6000, ccc, ccd) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, he), hf)) -> new_lt6(xuu33001, xuu34001, he, hf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], caf), cag) -> new_esEs10(xuu3110000, xuu6000, caf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, bca) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dbg)) -> new_esEs5(xuu3110002, xuu6002, dbg) new_ltEs5(xuu33001, xuu34001, app(ty_[], ce)) -> new_ltEs7(xuu33001, xuu34001, ce) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cgc, cgd, cge) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cgc), new_asAs(new_esEs27(xuu3110001, xuu6001, cgd), new_esEs28(xuu3110002, xuu6002, cge))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bge)) -> new_ltEs18(xuu33002, xuu34002, bge) new_esEs20(xuu33001, xuu34001, app(ty_[], hg)) -> new_esEs10(xuu33001, xuu34001, hg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(xuu3110000, xuu6000, chd, che, chf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, bca) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, be, bf, bg) -> EQ new_ltEs7(xuu3300, xuu3400, de) -> new_fsEs(new_compare1(xuu3300, xuu3400, de)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bah)) -> new_ltEs7(xuu33002, xuu34002, bah) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_compare1([], :(xuu34000, xuu34001), de) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, daa), dab)) -> new_esEs7(xuu3110001, xuu6001, daa, dab) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, ea)) -> new_compare18(xuu33000, xuu34000, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), cca, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bgd)) -> new_esEs18(xuu33001, xuu34001, bgd) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], chh)) -> new_esEs10(xuu3110001, xuu6001, chh) new_ltEs20(xuu3300, xuu3400, app(ty_[], de)) -> new_ltEs7(xuu3300, xuu3400, de) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cbh), cag) -> new_esEs18(xuu3110000, xuu6000, cbh) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cac)) -> new_ltEs18(xuu3300, xuu3400, cac) new_lt4(xuu33000, xuu34000, app(app(ty_Either, bh), ca)) -> new_lt17(xuu33000, xuu34000, bh, ca) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, chc)) -> new_esEs5(xuu3110000, xuu6000, chc) new_ltEs9(LT, EQ) -> True new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, bec)) -> new_esEs18(xuu33000, xuu34000, bec) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bgf) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, hb), hc)) -> new_esEs7(xuu33000, xuu34000, hb, hc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, bb) -> new_pePe(new_lt4(xuu33000, xuu34000, cb), new_asAs(new_esEs8(xuu33000, xuu34000, cb), new_ltEs5(xuu33001, xuu34001, bb))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs13(xuu33000, xuu34000, bdf, bdg, bdh) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dac), dad)) -> new_esEs4(xuu3110001, xuu6001, dac, dad) new_lt4(xuu33000, xuu34000, app(ty_[], bc)) -> new_lt7(xuu33000, xuu34000, bc) new_compare17(xuu33000, xuu34000, app(app(ty_@2, df), dg)) -> new_compare13(xuu33000, xuu34000, df, dg) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bgc)) -> new_esEs18(xuu33000, xuu34000, bgc) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, dbe), dbf)) -> new_esEs4(xuu3110002, xuu6002, dbe, dbf) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, h, ba) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, bca) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cab) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, h, ba) -> new_esEs11(new_compare13(xuu33000, xuu34000, h, ba), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cab) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, bd) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) new_ltEs17(Right(xuu33000), Right(xuu34000), bda, app(ty_Maybe, bde)) -> new_ltEs8(xuu33000, xuu34000, bde) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_ltEs17(Right(xuu33000), Left(xuu34000), bda, bca) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, eb), ec), ed)) -> new_compare7(xuu33000, xuu34000, eb, ec, ed) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs6(xuu3110002, xuu6002, dbh, dca, dcb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, h, ba) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt18(xuu33000, xuu34000, bec) -> new_esEs11(new_compare27(xuu33000, xuu34000, bec), LT) new_compare113(xuu33000, xuu34000, False, be, bf, bg) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs28(xuu3110002, xuu6002, app(ty_[], dbb)) -> new_esEs10(xuu3110002, xuu6002, dbb) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dae)) -> new_esEs5(xuu3110001, xuu6001, dae) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cad) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), cca, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), cca, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs5(Just(x0), Just(x1), ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs11(x0, x1) new_lt4(x0, x1, ty_@0) new_primCmpNat1(x0, Succ(x1)) new_compare113(x0, x1, True, x2, x3, x4) new_primCompAux0(x0, EQ) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare6(Char(x0), Char(x1)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_compare14(x0, x1, False, x2, x3) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_ltEs8(Nothing, Just(x0), x1) new_compare28(x0, x1, True, x2) new_ltEs15(x0, x1) new_compare18(x0, x1, x2) new_ltEs19(x0, x1, ty_Double) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, ty_Int) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs12(Integer(x0), Integer(x1)) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCmpNat2(Zero, x0) new_lt4(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Bool) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, x2) new_ltEs8(Just(x0), Nothing, x1) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, True, x2) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(False, False) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Nothing, Nothing, x0) new_lt17(x0, x1, x2, x3) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs10(:(x0, x1), [], x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs27(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, True, x2, x3) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_compare28(Nothing, Just(x0), False, x1) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare28(Just(x0), Just(x1), False, x2) new_esEs5(Just(x0), Nothing, x1) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs19(x0, x1, ty_Double) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Char) new_esEs20(x0, x1, ty_Bool) new_lt18(x0, x1, x2) new_esEs11(LT, GT) new_esEs11(GT, LT) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs21(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_compare1(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_compare111(x0, x1, False, x2, x3) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare1(:(x0, x1), [], x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt15(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Integer) new_ltEs9(LT, LT) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(False, False) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_compare29(x0, x1, False, x2, x3) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt20(x0, x1, ty_Char) new_esEs22(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs10(:(x0, x1), :(x2, x3), x4) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_lt4(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_esEs10([], [], x0) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(@0, @0) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_primMulNat0(Succ(x0), Zero) new_lt19(x0, x1, ty_Char) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs17(Char(x0), Char(x1)) new_esEs20(x0, x1, ty_Int) new_lt10(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_compare7(x0, x1, x2, x3, x4) new_esEs23(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt6(x0, x1, x2, x3) new_esEs5(Nothing, Just(x0), x1) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_ltEs8(Nothing, Nothing, x0) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_compare17(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_lt16(x0, x1) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Bool) new_compare23(x0, x1, True, x2, x3, x4) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_not(True) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Double) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare13(x0, x1, x2, x3) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Int) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat1(x0, Zero) new_compare112(x0, x1, False, x2) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_ltEs20(x0, x1, ty_Int) new_compare28(Nothing, Nothing, False, x0) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], [], x0) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_compare28(Just(x0), Nothing, False, x1) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt14(x0, x1) new_lt19(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Float) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare17(x0, x1, ty_Bool) new_esEs10([], :(x0, x1), x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_ltEs7(x0, x1, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primCompAux1(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_@0) new_lt8(x0, x1, x2) new_asAs(True, x0) new_compare14(x0, x1, True, x2, x3) new_sr(x0, x1) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_primCompAux0(x0, LT) new_compare23(x0, x1, False, x2, x3, x4) new_pePe(True, x0) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_compare113(x0, x1, False, x2, x3, x4) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_compare210(x0, x1, True, x2, x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs5(x0, x1, ty_Char) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_[], x2)) new_compare111(x0, x1, True, x2, x3) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_primMulNat0(Zero, Succ(x0)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_not(False) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_lt13(x0, x1, x2, x3, x4) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(True, False) new_ltEs6(False, True) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Ordering) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs27(x0, x1, ty_Integer) new_compare26(x0, x1, x2, x3) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs26(x0, x1, ty_@0) 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_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_Maybe, bd), bb) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(xuu33001, xuu34001, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(xuu33002, xuu34002, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt2(xuu33000, xuu34000, be, bf, bg) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu33001, xuu34001, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(app(ty_@2, baf), bag)) -> new_ltEs(xuu33002, xuu34002, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(xuu33000, xuu34000, False, bh, ca) -> new_ltEs3(xuu33000, xuu34000, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare2(xuu33000, xuu34000, False, h, ba) -> new_ltEs(xuu33000, xuu34000, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs1(Just(xuu33000), Just(xuu34000), app(app(ty_@2, eg), eh)) -> new_ltEs(xuu33000, xuu34000, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt0(xuu33000, xuu34000, bc) -> new_compare(xuu33000, xuu34000, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_primCompAux(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_compare(xuu33001, xuu34001, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], de)) -> new_primCompAux(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, de), de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare0(xuu33000, xuu34000, h, ba) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_primCompAux(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, de), de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt1(xuu33000, xuu34000, bd) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare3(xuu33000, xuu34000, bd) -> new_compare20(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, bd), bd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt(xuu33000, xuu34000, h, ba) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(xuu33000, xuu34000, False, be, bf, bg) -> new_ltEs2(xuu33000, xuu34000, be, bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs1(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs2(xuu33000, xuu34000, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(app(ty_Either, dc), dd)) -> new_ltEs3(xuu33001, xuu34001, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(app(ty_Either, bbe), bbf)) -> new_ltEs3(xuu33002, xuu34002, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(xuu33000), Just(xuu34000), app(app(ty_Either, fg), fh)) -> new_ltEs3(xuu33000, xuu34000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(xuu33000, xuu34000, xuu159, app(app(ty_@2, df), dg)) -> new_compare0(xuu33000, xuu34000, df, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(app(ty_@3, be), bf), bg), bb) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_compare4(xuu33000, xuu34000, be, bf, bg) -> new_compare21(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, be, bf, bg), be, bf, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare(:(xuu33000, xuu33001), :(xuu34000, xuu34001), de) -> new_compare(xuu33001, xuu34001, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare5(xuu33000, xuu34000, bh, ca) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(ty_Maybe, cf)) -> new_ltEs1(xuu33001, xuu34001, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(ty_Maybe, bba)) -> new_ltEs1(xuu33002, xuu34002, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(Just(xuu33000), Just(xuu34000), app(ty_Maybe, fb)) -> new_ltEs1(xuu33000, xuu34000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(xuu33000), Just(xuu34000), app(ty_[], fa)) -> new_ltEs0(xuu33000, xuu34000, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt3(xuu33000, xuu34000, bh, ca) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_Either, bh), ca), bb) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_Either, bh), ca)), bb)) -> new_compare22(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, bh, ca), bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(ty_[], bc), bb) -> new_compare(xuu33000, xuu34000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(xuu33000, xuu34000, xuu159, app(ty_[], dh)) -> new_compare(xuu33000, xuu34000, dh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu33000, xuu34000, xuu159, app(app(ty_Either, ee), ef)) -> new_compare5(xuu33000, xuu34000, ee, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), cb, app(ty_[], ce)) -> new_ltEs0(xuu33001, xuu34001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), app(app(ty_@2, h), ba), bb) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, gc, app(ty_[], bah)) -> new_ltEs0(xuu33002, xuu34002, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_primCompAux(xuu33000, xuu34000, xuu159, app(app(app(ty_@3, eb), ec), ed)) -> new_compare4(xuu33000, xuu34000, eb, ec, ed) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(xuu33000, xuu34000, xuu159, app(ty_Maybe, ea)) -> new_compare3(xuu33000, xuu34000, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_compare2(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, h, ba), h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_ltEs2(xuu33000, xuu34000, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_ltEs2(xuu33000, xuu34000, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(app(ty_@3, bcd), bce), bcf)), bca)) -> new_ltEs2(xuu33000, xuu34000, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(app(ty_@3, fc), fd), ff))) -> new_ltEs2(xuu33000, xuu34000, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs2(xuu33001, xuu34001, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(app(ty_@3, bdf), bdg), bdh))) -> new_ltEs2(xuu33000, xuu34000, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(app(app(ty_@3, bbb), bbc), bbd))) -> new_ltEs2(xuu33002, xuu34002, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_@2, bdb), bdc)) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_@2, bbg), bbh), bca) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(app(ty_Either, bcg), bch), bca) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(app(ty_Either, bea), beb)) -> new_ltEs3(xuu33000, xuu34000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_Maybe, bde)) -> new_ltEs1(xuu33000, xuu34000, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_Maybe, bcc), bca) -> new_ltEs1(xuu33000, xuu34000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Left(xuu33000), Left(xuu34000), app(ty_[], bcb), bca) -> new_ltEs0(xuu33000, xuu34000, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(xuu33000), Right(xuu34000), bda, app(ty_[], bdd)) -> new_ltEs0(xuu33000, xuu34000, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_Either, hb), hc), gc, gd) -> new_lt3(xuu33000, xuu34000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(app(ty_Either, bad), bae), gd) -> new_lt3(xuu33001, xuu34001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(ty_@2, ga), gb), gc, gd) -> new_lt(xuu33000, xuu34000, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(app(ty_@2, he), hf), gd) -> new_lt(xuu33001, xuu34001, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(ty_[], hg), gd) -> new_lt0(xuu33001, xuu34001, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_[], ge), gc, gd) -> new_lt0(xuu33000, xuu34000, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(ty_Maybe, gf), gc, gd) -> new_lt1(xuu33000, xuu34000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(ty_Maybe, hh), gd) -> new_lt1(xuu33001, xuu34001, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), app(app(app(ty_@3, gg), gh), ha), gc, gd) -> new_lt2(xuu33000, xuu34000, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), hd, app(app(app(ty_@3, baa), bab), bac), gd) -> new_lt2(xuu33001, xuu34001, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_@2, eg), eh))) -> new_ltEs(xuu33000, xuu34000, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_@2, bdb), bdc))) -> new_ltEs(xuu33000, xuu34000, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_@2, bbg), bbh)), bca)) -> new_ltEs(xuu33000, xuu34000, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xuu33001, xuu34001, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(app(ty_@2, baf), bag))) -> new_ltEs(xuu33002, xuu34002, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_Either, hb), hc)), gc), gd)) -> new_lt3(xuu33000, xuu34000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(app(ty_Either, bad), bae)), gd)) -> new_lt3(xuu33001, xuu34001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(app(ty_@2, he), hf)), gd)) -> new_lt(xuu33001, xuu34001, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(ty_@2, ga), gb)), gc), gd)) -> new_lt(xuu33000, xuu34000, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(app(ty_Either, dc), dd))) -> new_ltEs3(xuu33001, xuu34001, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(app(ty_Either, bbe), bbf))) -> new_ltEs3(xuu33002, xuu34002, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(app(ty_Either, fg), fh))) -> new_ltEs3(xuu33000, xuu34000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(app(ty_Either, bcg), bch)), bca)) -> new_ltEs3(xuu33000, xuu34000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(app(ty_Either, bea), beb))) -> new_ltEs3(xuu33000, xuu34000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(ty_[], hg)), gd)) -> new_lt0(xuu33001, xuu34001, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_[], ge)), gc), gd)) -> new_lt0(xuu33000, xuu34000, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_Maybe, bcc)), bca)) -> new_ltEs1(xuu33000, xuu34000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_Maybe, fb))) -> new_ltEs1(xuu33000, xuu34000, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(ty_Maybe, bba))) -> new_ltEs1(xuu33002, xuu34002, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(xuu33001, xuu34001, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_Maybe, bde))) -> new_ltEs1(xuu33000, xuu34000, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(:(xuu33000, xuu33001)), Just(:(xuu34000, xuu34001)), False, app(ty_[], de)) -> new_compare(xuu33001, xuu34001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, app(ty_[], bc)), bb)) -> new_compare(xuu33000, xuu34000, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@2(xuu33000, xuu33001)), Just(@2(xuu34000, xuu34001)), False, app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(xuu33001, xuu34001, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Right(xuu33000)), Just(Right(xuu34000)), False, app(app(ty_Either, bda), app(ty_[], bdd))) -> new_ltEs0(xuu33000, xuu34000, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Left(xuu33000)), Just(Left(xuu34000)), False, app(app(ty_Either, app(ty_[], bcb)), bca)) -> new_ltEs0(xuu33000, xuu34000, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(Just(xuu33000)), Just(Just(xuu34000)), False, app(ty_Maybe, app(ty_[], fa))) -> new_ltEs0(xuu33000, xuu34000, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), gc), app(ty_[], bah))) -> new_ltEs0(xuu33002, xuu34002, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(ty_Maybe, hh)), gd)) -> new_lt1(xuu33001, xuu34001, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(ty_Maybe, gf)), gc), gd)) -> new_lt1(xuu33000, xuu34000, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, baa), bab), bac)), gd)) -> new_lt2(xuu33001, xuu34001, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(@3(xuu33000, xuu33001, xuu33002)), Just(@3(xuu34000, xuu34001, xuu34002)), False, app(app(app(ty_@3, app(app(app(ty_@3, gg), gh), ha)), gc), gd)) -> new_lt2(xuu33000, xuu34000, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Nothing, True, h), GT), h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), LT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), LT), h, ba) new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), GT), h, ba) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (28) Complex Obligation (AND) ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), LT), h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), LT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, LT), h, ba),new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, LT), h, ba)) ---------------------------------------- (31) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Just(xuu311000), xuu31101, h, ba) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, LT), h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (32) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 1 less node. ---------------------------------------- (33) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, LT), h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (34) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, LT), h, ba) at position [6] we obtained the following new rules [LPAR04]: (new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba),new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba)) ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), GT), h, ba) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Nothing, False, h), GT), h, ba) at position [6,0] we obtained the following new rules [LPAR04]: (new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, GT), h, ba),new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, GT), h, ba)) ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, GT), h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (38) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(GT, GT), h, ba) at position [6] we obtained the following new rules [LPAR04]: (new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba),new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba)) ---------------------------------------- (39) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (40) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu20, Just(xuu22), xuu23, bb, bc) The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C21(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_esEs11(new_compare28(Just(xuu22), Just(xuu17), new_esEs30(xuu22, xuu17, bb), bb), GT), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 *new_addToFM_C12(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_addToFM_C(xuu21, Just(xuu22), xuu23, bb, bc) The graph contains the following edges 5 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Just(xuu311000), xuu31101, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C21(xuu600, xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, new_esEs11(new_compare28(Just(xuu311000), Just(xuu600), new_esEs29(xuu311000, xuu600, h), h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Just(xuu311000), xuu31101, h, ba) -> new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 6, 4 >= 8, 5 >= 9 *new_addToFM_C20(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, False, h, ba) -> new_addToFM_C11(xuu61, xuu62, xuu63, xuu64, xuu311000, xuu31101, True, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 ---------------------------------------- (41) YES ---------------------------------------- (42) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Nothing, True, h), GT), h, ba) new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), LT), h, ba) new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), GT), h, ba) new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The TRS R consists of the following rules: new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Ordering, cag) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Neg(Succ(xuu3300)), Pos(xuu340)) -> LT new_lt19(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs19(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_pePe(True, xuu148) -> True new_esEs21(xuu3110000, xuu6000, app(ty_Ratio, cae)) -> new_esEs18(xuu3110000, xuu6000, cae) new_ltEs5(xuu33001, xuu34001, ty_@0) -> new_ltEs15(xuu33001, xuu34001) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Integer) -> new_compare11(new_sr0(xuu33000, xuu34001), new_sr0(xuu34000, xuu33001)) new_compare28(Just(xuu3300), Nothing, False, cbf) -> GT new_esEs27(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare112(xuu116, xuu117, True, cca) -> LT new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, app(app(ty_@2, bgd), bge)) -> new_esEs4(xuu22, xuu17, bgd, bge) new_esEs26(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_Bool) -> new_compare9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Bool, cag) -> new_esEs9(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(xuu33000, xuu34000, True, bf, bg) -> LT new_ltEs19(xuu33002, xuu34002, ty_Ordering) -> new_ltEs9(xuu33002, xuu34002) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primCmpInt(Pos(Zero), Neg(Succ(xuu3400))) -> GT new_lt20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_lt18(xuu33001, xuu34001, bef) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_esEs26(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs26(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_lt17(xuu33001, xuu34001, bed, bee) new_esEs21(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt8(xuu33000, xuu34000, ca) -> new_esEs11(new_compare18(xuu33000, xuu34000, ca), LT) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Double, fh) -> new_ltEs11(xuu33000, xuu34000) new_esEs25(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_ltEs20(xuu3300, xuu3400, ty_Ordering) -> new_ltEs9(xuu3300, xuu3400) new_compare111(xuu33000, xuu34000, True, ce, cf) -> LT new_esEs9(False, False) -> True new_ltEs9(LT, LT) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Double, cag) -> new_esEs13(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_lt17(xuu33000, xuu34000, bdb, bdc) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_[], ccd)) -> new_ltEs7(xuu33000, xuu34000, ccd) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs7(xuu3110002, xuu6002, dda, ddb) new_esEs8(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(xuu33000, xuu34000, cb, cc, cd) new_primCompAux0(xuu165, GT) -> GT new_ltEs19(xuu33002, xuu34002, ty_Double) -> new_ltEs11(xuu33002, xuu34002) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Ratio, cdc)) -> new_ltEs18(xuu33000, xuu34000, cdc) new_esEs22(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs6(xuu3110000, xuu6000, cfd, cfe, cff) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_Either, cda), cdb)) -> new_ltEs17(xuu33000, xuu34000, cda, cdb) new_lt19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_lt18(xuu33000, xuu34000, bdd) new_esEs23(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare210(xuu33000, xuu34000, True, ce, cf) -> EQ new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Float, fh) -> new_ltEs14(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, ty_Int) -> new_ltEs12(xuu33002, xuu34002) new_esEs29(xuu311000, xuu600, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(xuu311000, xuu600, cbb, cbc, cbd) new_compare1(:(xuu33000, xuu33001), [], fg) -> GT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs20(xuu3300, xuu3400, ty_Bool) -> new_ltEs6(xuu3300, xuu3400) new_esEs19(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Integer) -> new_ltEs10(xuu3300, xuu3400) new_esEs21(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCompAux0(xuu165, LT) -> LT new_not(True) -> False new_lt5(xuu33000, xuu34000) -> new_esEs11(new_compare9(xuu33000, xuu34000), LT) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs17(xuu3110002, xuu6002) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(xuu3110000, xuu6000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs6(xuu3110000, xuu6000, cab, cac, cad) new_ltEs19(xuu33002, xuu34002, ty_Bool) -> new_ltEs6(xuu33002, xuu34002) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Int, cag) -> new_esEs14(xuu3110000, xuu6000) new_compare17(xuu33000, xuu34000, ty_@0) -> new_compare8(xuu33000, xuu34000) new_compare7(xuu33000, xuu34000, cb, cc, cd) -> new_compare23(xuu33000, xuu34000, new_esEs6(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_esEs20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs6(xuu33001, xuu34001, bea, beb, bec) new_compare28(Just(xuu3300), Just(xuu3400), False, cbf) -> new_compare112(xuu3300, xuu3400, new_ltEs20(xuu3300, xuu3400, cbf), cbf) new_esEs20(xuu33001, xuu34001, app(app(ty_Either, bed), bee)) -> new_esEs7(xuu33001, xuu34001, bed, bee) new_ltEs19(xuu33002, xuu34002, ty_Integer) -> new_ltEs10(xuu33002, xuu34002) new_ltEs20(xuu3300, xuu3400, ty_Int) -> new_ltEs12(xuu3300, xuu3400) new_esEs27(xuu3110001, xuu6001, ty_Char) -> new_esEs17(xuu3110001, xuu6001) new_compare28(Nothing, Just(xuu3400), False, cbf) -> LT new_ltEs17(Left(xuu33000), Right(xuu34000), hc, fh) -> True new_ltEs19(xuu33002, xuu34002, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs13(xuu33002, xuu34002, bfc, bfd, bfe) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_esEs19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_esEs4(xuu33000, xuu34000, bcc, bcd) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs29(xuu311000, xuu600, ty_Integer) -> new_esEs12(xuu311000, xuu600) new_ltEs20(xuu3300, xuu3400, ty_Double) -> new_ltEs11(xuu3300, xuu3400) new_esEs12(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs21(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs4(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cah, cba) -> new_asAs(new_esEs22(xuu3110000, xuu6000, cah), new_esEs23(xuu3110001, xuu6001, cba)) new_esEs19(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_lt14(xuu33000, xuu34000) -> new_esEs11(new_compare19(xuu33000, xuu34000), LT) new_esEs25(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs20(xuu3300, xuu3400, app(ty_Maybe, cbg)) -> new_ltEs8(xuu3300, xuu3400, cbg) new_esEs30(xuu22, xuu17, ty_Integer) -> new_esEs12(xuu22, xuu17) new_lt17(xuu33000, xuu34000, ce, cf) -> new_esEs11(new_compare26(xuu33000, xuu34000, ce, cf), LT) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_esEs4(xuu33000, xuu34000, bf, bg) new_lt20(xuu33001, xuu34001, app(app(app(ty_@3, bea), beb), bec)) -> new_lt13(xuu33001, xuu34001, bea, beb, bec) new_lt20(xuu33001, xuu34001, ty_Double) -> new_lt11(xuu33001, xuu34001) new_compare110(xuu33000, xuu34000, True) -> LT new_compare28(xuu330, xuu340, True, cbf) -> EQ new_esEs5(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, ff)) -> new_esEs18(xuu3110000, xuu6000, ff) new_primCmpNat2(Zero, xuu3300) -> LT new_ltEs6(True, True) -> True new_lt4(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_esEs7(xuu33000, xuu34000, ce, cf) new_lt20(xuu33001, xuu34001, ty_Int) -> new_lt12(xuu33001, xuu34001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(app(ty_@3, ccf), ccg), cch)) -> new_ltEs13(xuu33000, xuu34000, ccf, ccg, cch) new_ltEs20(xuu3300, xuu3400, app(app(app(ty_@3, bbh), bca), bcb)) -> new_ltEs13(xuu3300, xuu3400, bbh, bca, bcb) new_primCmpInt(Pos(Succ(xuu3300)), Neg(xuu340)) -> GT new_ltEs20(xuu3300, xuu3400, app(app(ty_@2, bd), be)) -> new_ltEs4(xuu3300, xuu3400, bd, be) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_Either, bac), bad)) -> new_ltEs17(xuu33000, xuu34000, bac, bad) new_esEs22(xuu3110000, xuu6000, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_esEs4(xuu33001, xuu34001, bde, bdf) new_ltEs19(xuu33002, xuu34002, ty_Float) -> new_ltEs14(xuu33002, xuu34002) new_compare13(xuu33000, xuu34000, bf, bg) -> new_compare29(xuu33000, xuu34000, new_esEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_lt4(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_lt8(xuu33000, xuu34000, ca) new_lt20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_lt8(xuu33001, xuu34001, bdh) new_esEs26(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt13(xuu33000, xuu34000, bcg, bch, bda) new_lt19(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs19(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Bool, fh) -> new_ltEs6(xuu33000, xuu34000) new_ltEs20(xuu3300, xuu3400, ty_Float) -> new_ltEs14(xuu3300, xuu3400) new_compare1(:(xuu33000, xuu33001), :(xuu34000, xuu34001), fg) -> new_primCompAux1(xuu33000, xuu34000, new_compare1(xuu33001, xuu34001, fg), fg) new_primPlusNat1(Succ(xuu28200), Succ(xuu8900)) -> Succ(Succ(new_primPlusNat1(xuu28200, xuu8900))) new_lt19(xuu33000, xuu34000, ty_Ordering) -> new_lt9(xuu33000, xuu34000) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_primCmpNat0(Zero, Succ(xuu34000)) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ceb), cec), ced), cag) -> new_esEs6(xuu3110000, xuu6000, ceb, cec, ced) new_esEs22(xuu3110000, xuu6000, app(ty_Ratio, cha)) -> new_esEs18(xuu3110000, xuu6000, cha) new_esEs21(xuu3110000, xuu6000, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(xuu33000, xuu34000, bcg, bch, bda) new_ltEs14(xuu3300, xuu3400) -> new_fsEs(new_compare19(xuu3300, xuu3400)) new_esEs27(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_esEs22(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Ratio, eb)) -> new_ltEs18(xuu33001, xuu34001, eb) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_lt8(xuu33000, xuu34000, bcf) new_ltEs19(xuu33002, xuu34002, app(app(ty_@2, beg), beh)) -> new_ltEs4(xuu33002, xuu34002, beg, beh) new_primCmpNat0(Succ(xuu33000), Zero) -> GT new_esEs30(xuu22, xuu17, ty_Float) -> new_esEs15(xuu22, xuu17) new_pePe(False, xuu148) -> xuu148 new_esEs27(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_esEs26(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_lt19(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cdg), cdh), cag) -> new_esEs4(xuu3110000, xuu6000, cdg, cdh) new_ltEs5(xuu33001, xuu34001, app(app(ty_Either, dh), ea)) -> new_ltEs17(xuu33001, xuu34001, dh, ea) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_[], cef)) -> new_esEs10(xuu3110000, xuu6000, cef) new_primCmpNat1(xuu3300, Zero) -> GT new_esEs22(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Ratio, cfg)) -> new_esEs18(xuu3110000, xuu6000, cfg) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_lt11(xuu33000, xuu34000) -> new_esEs11(new_compare16(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, app(app(ty_@2, bhg), bhh)) -> new_esEs4(xuu3110000, xuu6000, bhg, bhh) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(app(ty_Either, bff), bfg)) -> new_ltEs17(xuu33002, xuu34002, bff, bfg) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(xuu3110000, xuu6000, fb, fc, fd) new_primCompAux1(xuu33000, xuu34000, xuu159, fg) -> new_primCompAux0(xuu159, new_compare17(xuu33000, xuu34000, fg)) new_esEs18(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), cbe) -> new_asAs(new_esEs24(xuu3110000, xuu6000, cbe), new_esEs25(xuu3110001, xuu6001, cbe)) new_esEs8(xuu33000, xuu34000, app(ty_[], bh)) -> new_esEs10(xuu33000, xuu34000, bh) new_esEs8(xuu33000, xuu34000, ty_Int) -> new_esEs14(xuu33000, xuu34000) new_esEs21(xuu3110000, xuu6000, app(ty_Maybe, caa)) -> new_esEs5(xuu3110000, xuu6000, caa) new_esEs22(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs23(xuu3110001, xuu6001, app(app(ty_Either, chc), chd)) -> new_esEs7(xuu3110001, xuu6001, chc, chd) new_esEs5(Nothing, Nothing, ec) -> True new_fsEs(xuu133) -> new_not(new_esEs11(xuu133, GT)) new_ltEs20(xuu3300, xuu3400, app(app(ty_Either, hc), fh)) -> new_ltEs17(xuu3300, xuu3400, hc, fh) new_ltEs6(False, False) -> True new_esEs20(xuu33001, xuu34001, ty_Char) -> new_esEs17(xuu33001, xuu34001) new_esEs22(xuu3110000, xuu6000, app(ty_[], cfh)) -> new_esEs10(xuu3110000, xuu6000, cfh) new_lt4(xuu33000, xuu34000, app(app(ty_@2, bf), bg)) -> new_lt6(xuu33000, xuu34000, bf, bg) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs5(Nothing, Just(xuu6000), ec) -> False new_esEs5(Just(xuu3110000), Nothing, ec) -> False new_esEs24(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primCmpInt(Neg(Zero), Pos(Succ(xuu3400))) -> LT new_esEs10(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bhc) -> new_asAs(new_esEs21(xuu3110000, xuu6000, bhc), new_esEs10(xuu3110001, xuu6001, bhc)) new_primMulInt(Pos(xuu31100000), Pos(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs11(xuu3300, xuu3400) -> new_fsEs(new_compare16(xuu3300, xuu3400)) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_esEs20(xuu33001, xuu34001, ty_Float) -> new_esEs15(xuu33001, xuu34001) new_esEs7(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cde), cdf), cag) -> new_esEs7(xuu3110000, xuu6000, cde, cdf) new_ltEs8(Just(xuu33000), Just(xuu34000), app(app(ty_@2, ccb), ccc)) -> new_ltEs4(xuu33000, xuu34000, ccb, ccc) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_Either, gh), ha), fh) -> new_ltEs17(xuu33000, xuu34000, gh, ha) new_ltEs19(xuu33002, xuu34002, app(ty_Maybe, bfb)) -> new_ltEs8(xuu33002, xuu34002, bfb) new_primMulNat0(Succ(xuu311000000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu600100)) -> Zero new_esEs29(xuu311000, xuu600, ty_Double) -> new_esEs13(xuu311000, xuu600) new_compare25(xuu33000, xuu34000, False) -> new_compare110(xuu33000, xuu34000, new_ltEs9(xuu33000, xuu34000)) new_ltEs9(GT, EQ) -> False new_compare28(Nothing, Nothing, False, cbf) -> LT new_esEs23(xuu3110001, xuu6001, ty_Bool) -> new_esEs9(xuu3110001, xuu6001) new_lt4(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_lt18(xuu33000, xuu34000, cg) new_esEs23(xuu3110001, xuu6001, app(ty_Maybe, chg)) -> new_esEs5(xuu3110001, xuu6001, chg) new_esEs8(xuu33000, xuu34000, ty_Float) -> new_esEs15(xuu33000, xuu34000) new_ltEs13(@3(xuu33000, xuu33001, xuu33002), @3(xuu34000, xuu34001, xuu34002), bbh, bca, bcb) -> new_pePe(new_lt19(xuu33000, xuu34000, bbh), new_asAs(new_esEs19(xuu33000, xuu34000, bbh), new_pePe(new_lt20(xuu33001, xuu34001, bca), new_asAs(new_esEs20(xuu33001, xuu34001, bca), new_ltEs19(xuu33002, xuu34002, bcb))))) new_esEs11(LT, LT) -> True new_esEs26(xuu3110000, xuu6000, app(ty_Ratio, dbe)) -> new_esEs18(xuu3110000, xuu6000, dbe) new_ltEs6(True, False) -> False new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_[], ed)) -> new_esEs10(xuu3110000, xuu6000, ed) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare1([], [], fg) -> EQ new_esEs24(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, app(ty_Maybe, dd)) -> new_ltEs8(xuu33001, xuu34001, dd) new_lt16(xuu33000, xuu34000) -> new_esEs11(new_compare6(xuu33000, xuu34000), LT) new_ltEs5(xuu33001, xuu34001, ty_Char) -> new_ltEs16(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_[], bah)) -> new_compare1(xuu33000, xuu34000, bah) new_ltEs16(xuu3300, xuu3400) -> new_fsEs(new_compare6(xuu3300, xuu3400)) new_esEs30(xuu22, xuu17, ty_@0) -> new_esEs16(xuu22, xuu17) new_primPlusNat1(Succ(xuu28200), Zero) -> Succ(xuu28200) new_primPlusNat1(Zero, Succ(xuu8900)) -> Succ(xuu8900) new_esEs22(xuu3110000, xuu6000, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(xuu3110000, xuu6000, cgf, cgg, cgh) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Ordering) -> new_ltEs9(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, False, cb, cc, cd) -> new_compare113(xuu33000, xuu34000, new_ltEs13(xuu33000, xuu34000, cb, cc, cd), cb, cc, cd) new_ltEs19(xuu33002, xuu34002, ty_Char) -> new_ltEs16(xuu33002, xuu34002) new_ltEs9(GT, GT) -> True new_esEs20(xuu33001, xuu34001, ty_@0) -> new_esEs16(xuu33001, xuu34001) new_esEs23(xuu3110001, xuu6001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(xuu3110001, xuu6001, chh, daa, dab) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Int, fh) -> new_ltEs12(xuu33000, xuu34000) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(xuu31100000), Neg(xuu60010)) -> Pos(new_primMulNat0(xuu31100000, xuu60010)) new_lt19(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(app(ty_@3, ge), gf), gg), fh) -> new_ltEs13(xuu33000, xuu34000, ge, gf, gg) new_esEs22(xuu3110000, xuu6000, app(ty_Maybe, cge)) -> new_esEs5(xuu3110000, xuu6000, cge) new_esEs29(xuu311000, xuu600, ty_Char) -> new_esEs17(xuu311000, xuu600) new_compare17(xuu33000, xuu34000, ty_Float) -> new_compare19(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Integer) -> new_lt10(xuu33001, xuu34001) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_compare27(:%(xuu33000, xuu33001), :%(xuu34000, xuu34001), ty_Int) -> new_compare12(new_sr(xuu33000, xuu34001), new_sr(xuu34000, xuu33001)) new_ltEs20(xuu3300, xuu3400, ty_Char) -> new_ltEs16(xuu3300, xuu3400) new_esEs5(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fa)) -> new_esEs5(xuu3110000, xuu6000, fa) new_esEs23(xuu3110001, xuu6001, app(ty_[], chb)) -> new_esEs10(xuu3110001, xuu6001, chb) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Integer, cag) -> new_esEs12(xuu3110000, xuu6000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Maybe, gd), fh) -> new_ltEs8(xuu33000, xuu34000, gd) new_esEs30(xuu22, xuu17, ty_Char) -> new_esEs17(xuu22, xuu17) new_esEs23(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs23(xuu3110001, xuu6001, app(app(ty_@2, che), chf)) -> new_esEs4(xuu3110001, xuu6001, che, chf) new_esEs21(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Ordering) -> new_ltEs9(xuu33001, xuu34001) new_compare9(xuu33000, xuu34000) -> new_compare24(xuu33000, xuu34000, new_esEs9(xuu33000, xuu34000)) new_compare17(xuu33000, xuu34000, ty_Integer) -> new_compare11(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, app(ty_Maybe, ca)) -> new_esEs5(xuu33000, xuu34000, ca) new_primMulInt(Pos(xuu31100000), Neg(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_primMulInt(Neg(xuu31100000), Pos(xuu60010)) -> Neg(new_primMulNat0(xuu31100000, xuu60010)) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_[], hf)) -> new_ltEs7(xuu33000, xuu34000, hf) new_esEs26(xuu3110000, xuu6000, app(app(ty_Either, dae), daf)) -> new_esEs7(xuu3110000, xuu6000, dae, daf) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs13(xuu3110002, xuu6002) new_lt13(xuu33000, xuu34000, cb, cc, cd) -> new_esEs11(new_compare7(xuu33000, xuu34000, cb, cc, cd), LT) new_esEs22(xuu3110000, xuu6000, app(app(ty_@2, cgc), cgd)) -> new_esEs4(xuu3110000, xuu6000, cgc, cgd) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Float) -> new_ltEs14(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_[], gc), fh) -> new_ltEs7(xuu33000, xuu34000, gc) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Double) -> new_ltEs11(xuu33000, xuu34000) new_esEs19(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_ltEs17(Left(xuu33000), Left(xuu34000), app(ty_Ratio, hb), fh) -> new_ltEs18(xuu33000, xuu34000, hb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(ty_[], bhd)) -> new_esEs10(xuu3110000, xuu6000, bhd) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_@2, cfa), cfb)) -> new_esEs4(xuu3110000, xuu6000, cfa, cfb) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Int) -> new_ltEs12(xuu33000, xuu34000) new_compare29(xuu33000, xuu34000, False, bf, bg) -> new_compare14(xuu33000, xuu34000, new_ltEs4(xuu33000, xuu34000, bf, bg), bf, bg) new_compare19(Float(xuu33000, Pos(xuu330010)), Float(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare19(Float(xuu33000, Neg(xuu330010)), Float(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_sr0(Integer(xuu330000), Integer(xuu340010)) -> Integer(new_primMulInt(xuu330000, xuu340010)) new_esEs29(xuu311000, xuu600, app(ty_Maybe, ec)) -> new_esEs5(xuu311000, xuu600, ec) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(ty_Maybe, cfc)) -> new_esEs5(xuu3110000, xuu6000, cfc) new_ltEs18(xuu3300, xuu3400, cbh) -> new_fsEs(new_compare27(xuu3300, xuu3400, cbh)) new_esEs27(xuu3110001, xuu6001, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(xuu3110001, xuu6001, dcd, dce, dcf) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Char, fh) -> new_ltEs16(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_lt7(xuu33001, xuu34001, bdg) new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, ee), ef)) -> new_esEs7(xuu3110000, xuu6000, ee, ef) new_esEs23(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs19(xuu33000, xuu34000, app(ty_Maybe, bcf)) -> new_esEs5(xuu33000, xuu34000, bcf) new_ltEs17(Left(xuu33000), Left(xuu34000), app(app(ty_@2, ga), gb), fh) -> new_ltEs4(xuu33000, xuu34000, ga, gb) new_compare16(Double(xuu33000, Pos(xuu330010)), Double(xuu34000, Neg(xuu340010))) -> new_compare12(new_sr(xuu33000, Pos(xuu340010)), new_sr(Neg(xuu330010), xuu34000)) new_compare16(Double(xuu33000, Neg(xuu330010)), Double(xuu34000, Pos(xuu340010))) -> new_compare12(new_sr(xuu33000, Neg(xuu340010)), new_sr(Pos(xuu330010), xuu34000)) new_ltEs5(xuu33001, xuu34001, ty_Int) -> new_ltEs12(xuu33001, xuu34001) new_esEs29(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt4(xuu33000, xuu34000, ty_Integer) -> new_lt10(xuu33000, xuu34000) new_asAs(True, xuu123) -> xuu123 new_compare113(xuu33000, xuu34000, True, cb, cc, cd) -> LT new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs9(xuu3110002, xuu6002) new_ltEs20(xuu3300, xuu3400, ty_@0) -> new_ltEs15(xuu3300, xuu3400) new_esEs23(xuu3110001, xuu6001, app(ty_Ratio, dac)) -> new_esEs18(xuu3110001, xuu6001, dac) new_lt19(xuu33000, xuu34000, app(ty_[], bce)) -> new_lt7(xuu33000, xuu34000, bce) new_esEs20(xuu33001, xuu34001, app(ty_Maybe, bdh)) -> new_esEs5(xuu33001, xuu34001, bdh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs11(xuu3110002, xuu6002) new_esEs16(@0, @0) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, eg), eh)) -> new_esEs4(xuu3110000, xuu6000, eg, eh) new_esEs19(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_esEs8(xuu33000, xuu34000, ty_@0) -> new_esEs16(xuu33000, xuu34000) new_compare111(xuu33000, xuu34000, False, ce, cf) -> GT new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Ratio, bae)) -> new_ltEs18(xuu33000, xuu34000, bae) new_ltEs19(xuu33002, xuu34002, ty_@0) -> new_ltEs15(xuu33002, xuu34002) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_primCmpInt(Pos(Succ(xuu3300)), Pos(xuu340)) -> new_primCmpNat1(xuu3300, xuu340) new_esEs10(:(xuu3110000, xuu3110001), [], bhc) -> False new_esEs10([], :(xuu6000, xuu6001), bhc) -> False new_compare110(xuu33000, xuu34000, False) -> GT new_lt12(xuu330, xuu340) -> new_esEs11(new_compare12(xuu330, xuu340), LT) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cea), cag) -> new_esEs5(xuu3110000, xuu6000, cea) new_ltEs5(xuu33001, xuu34001, ty_Double) -> new_ltEs11(xuu33001, xuu34001) new_ltEs5(xuu33001, xuu34001, app(app(app(ty_@3, de), df), dg)) -> new_ltEs13(xuu33001, xuu34001, de, df, dg) new_sr(xuu3110000, xuu6001) -> new_primMulInt(xuu3110000, xuu6001) new_esEs9(True, True) -> True new_esEs17(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs21(xuu3110000, xuu6000, app(app(ty_Either, bhe), bhf)) -> new_esEs7(xuu3110000, xuu6000, bhe, bhf) new_lt4(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(xuu33001, xuu34001, ty_Ordering) -> new_esEs11(xuu33001, xuu34001) new_primCmpInt(Neg(Succ(xuu3300)), Neg(xuu340)) -> new_primCmpNat2(xuu340, xuu3300) new_esEs30(xuu22, xuu17, ty_Double) -> new_esEs13(xuu22, xuu17) new_compare10(xuu33000, xuu34000, False) -> GT new_ltEs5(xuu33001, xuu34001, app(app(ty_@2, da), db)) -> new_ltEs4(xuu33001, xuu34001, da, db) new_esEs30(xuu22, xuu17, app(ty_Maybe, bgf)) -> new_esEs5(xuu22, xuu17, bgf) new_compare17(xuu33000, xuu34000, app(app(ty_Either, bbe), bbf)) -> new_compare26(xuu33000, xuu34000, bbe, bbf) new_compare11(Integer(xuu33000), Integer(xuu34000)) -> new_primCmpInt(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Char) -> new_esEs17(xuu33000, xuu34000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(ty_@2, hd), he)) -> new_ltEs4(xuu33000, xuu34000, hd, he) new_esEs21(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(xuu3110000, xuu6000, app(app(ty_Either, cga), cgb)) -> new_esEs7(xuu3110000, xuu6000, cga, cgb) new_esEs26(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_ltEs5(xuu33001, xuu34001, ty_Float) -> new_ltEs14(xuu33001, xuu34001) new_esEs26(xuu3110000, xuu6000, app(ty_[], dad)) -> new_esEs10(xuu3110000, xuu6000, dad) new_lt4(xuu33000, xuu34000, ty_Int) -> new_lt12(xuu33000, xuu34000) new_compare26(xuu33000, xuu34000, ce, cf) -> new_compare210(xuu33000, xuu34000, new_esEs7(xuu33000, xuu34000, ce, cf), ce, cf) new_lt19(xuu33000, xuu34000, app(app(ty_@2, bcc), bcd)) -> new_lt6(xuu33000, xuu34000, bcc, bcd) new_esEs19(xuu33000, xuu34000, app(ty_[], bce)) -> new_esEs10(xuu33000, xuu34000, bce) new_esEs27(xuu3110001, xuu6001, app(ty_Ratio, dcg)) -> new_esEs18(xuu3110001, xuu6001, dcg) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs18(xuu3110002, xuu6002, dea) new_compare17(xuu33000, xuu34000, app(ty_Ratio, bbg)) -> new_compare27(xuu33000, xuu34000, bbg) new_ltEs5(xuu33001, xuu34001, ty_Integer) -> new_ltEs10(xuu33001, xuu34001) new_lt7(xuu33000, xuu34000, bh) -> new_esEs11(new_compare1(xuu33000, xuu34000, bh), LT) new_ltEs5(xuu33001, xuu34001, ty_Bool) -> new_ltEs6(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Char, cag) -> new_esEs17(xuu3110000, xuu6000) new_ltEs6(False, True) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Integer) -> new_ltEs10(xuu33000, xuu34000) new_primCompAux0(xuu165, EQ) -> xuu165 new_ltEs9(GT, LT) -> False new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs12(xuu3110002, xuu6002) new_esEs23(xuu3110001, xuu6001, ty_Integer) -> new_esEs12(xuu3110001, xuu6001) new_ltEs8(Just(xuu33000), Just(xuu34000), app(ty_Maybe, cce)) -> new_ltEs8(xuu33000, xuu34000, cce) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Bool) -> new_esEs9(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Ordering) -> new_esEs11(xuu3110000, xuu6000) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_compare210(xuu33000, xuu34000, False, ce, cf) -> new_compare111(xuu33000, xuu34000, new_ltEs17(xuu33000, xuu34000, ce, cf), ce, cf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs8(Nothing, Just(xuu34000), cbg) -> True new_esEs11(GT, GT) -> True new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs20(xuu33001, xuu34001, ty_Double) -> new_esEs13(xuu33001, xuu34001) new_ltEs9(EQ, GT) -> True new_ltEs17(Right(xuu33000), Right(xuu34000), hc, ty_Bool) -> new_ltEs6(xuu33000, xuu34000) new_esEs11(EQ, EQ) -> True new_esEs26(xuu3110000, xuu6000, app(app(ty_@2, dag), dah)) -> new_esEs4(xuu3110000, xuu6000, dag, dah) new_compare24(xuu33000, xuu34000, True) -> EQ new_lt4(xuu33000, xuu34000, app(app(app(ty_@3, cb), cc), cd)) -> new_lt13(xuu33000, xuu34000, cb, cc, cd) new_compare17(xuu33000, xuu34000, ty_Int) -> new_compare12(xuu33000, xuu34000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs13(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr(xuu3110000, xuu6001), new_sr(xuu3110001, xuu6000)) new_esEs21(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, app(app(ty_Either, ceg), ceh)) -> new_esEs7(xuu3110000, xuu6000, ceg, ceh) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_lt9(xuu33000, xuu34000) -> new_esEs11(new_compare15(xuu33000, xuu34000), LT) new_lt4(xuu33000, xuu34000, ty_Double) -> new_lt11(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, app(app(ty_@2, bde), bdf)) -> new_lt6(xuu33001, xuu34001, bde, bdf) new_compare17(xuu33000, xuu34000, ty_Ordering) -> new_compare15(xuu33000, xuu34000) new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_[], cdd), cag) -> new_esEs10(xuu3110000, xuu6000, cdd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_@0, fh) -> new_ltEs15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs5(xuu3110002, xuu6002, dde) new_esEs29(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs5(xuu33001, xuu34001, app(ty_[], dc)) -> new_ltEs7(xuu33001, xuu34001, dc) new_esEs6(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), cbb, cbc, cbd) -> new_asAs(new_esEs26(xuu3110000, xuu6000, cbb), new_asAs(new_esEs27(xuu3110001, xuu6001, cbc), new_esEs28(xuu3110002, xuu6002, cbd))) new_primCmpInt(Neg(Zero), Neg(Succ(xuu3400))) -> new_primCmpNat1(xuu3400, Zero) new_esEs20(xuu33001, xuu34001, ty_Int) -> new_esEs14(xuu33001, xuu34001) new_esEs8(xuu33000, xuu34000, ty_Double) -> new_esEs13(xuu33000, xuu34000) new_primCmpInt(Pos(Zero), Pos(Succ(xuu3400))) -> new_primCmpNat2(Zero, xuu3400) new_ltEs19(xuu33002, xuu34002, app(ty_Ratio, bfh)) -> new_ltEs18(xuu33002, xuu34002, bfh) new_esEs20(xuu33001, xuu34001, app(ty_[], bdg)) -> new_esEs10(xuu33001, xuu34001, bdg) new_compare24(xuu33000, xuu34000, False) -> new_compare10(xuu33000, xuu34000, new_ltEs6(xuu33000, xuu34000)) new_esEs26(xuu3110000, xuu6000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(xuu3110000, xuu6000, dbb, dbc, dbd) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Integer, fh) -> new_ltEs10(xuu33000, xuu34000) new_compare23(xuu33000, xuu34000, True, cb, cc, cd) -> EQ new_ltEs7(xuu3300, xuu3400, fg) -> new_fsEs(new_compare1(xuu3300, xuu3400, fg)) new_primPlusNat0(xuu99, xuu600100) -> new_primPlusNat1(xuu99, Succ(xuu600100)) new_esEs19(xuu33000, xuu34000, ty_Bool) -> new_esEs9(xuu33000, xuu34000) new_ltEs19(xuu33002, xuu34002, app(ty_[], bfa)) -> new_ltEs7(xuu33002, xuu34002, bfa) new_not(False) -> True new_compare17(xuu33000, xuu34000, ty_Double) -> new_compare16(xuu33000, xuu34000) new_lt19(xuu33000, xuu34000, ty_Float) -> new_lt14(xuu33000, xuu34000) new_esEs30(xuu22, xuu17, app(ty_Ratio, bhb)) -> new_esEs18(xuu22, xuu17, bhb) new_compare1([], :(xuu34000, xuu34001), fg) -> LT new_esEs27(xuu3110001, xuu6001, app(app(ty_Either, dbg), dbh)) -> new_esEs7(xuu3110001, xuu6001, dbg, dbh) new_esEs22(xuu3110000, xuu6000, ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_lt20(xuu33001, xuu34001, ty_Ordering) -> new_lt9(xuu33001, xuu34001) new_compare17(xuu33000, xuu34000, app(ty_Maybe, bba)) -> new_compare18(xuu33000, xuu34000, bba) new_esEs29(xuu311000, xuu600, app(ty_[], bhc)) -> new_esEs10(xuu311000, xuu600, bhc) new_esEs7(Right(xuu3110000), Right(xuu6000), caf, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs17(xuu3110000, xuu6000) new_esEs27(xuu3110001, xuu6001, ty_Ordering) -> new_esEs11(xuu3110001, xuu6001) new_esEs20(xuu33001, xuu34001, app(ty_Ratio, bef)) -> new_esEs18(xuu33001, xuu34001, bef) new_lt19(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_esEs27(xuu3110001, xuu6001, app(ty_[], dbf)) -> new_esEs10(xuu3110001, xuu6001, dbf) new_ltEs20(xuu3300, xuu3400, app(ty_[], fg)) -> new_ltEs7(xuu3300, xuu3400, fg) new_compare25(xuu33000, xuu34000, True) -> EQ new_esEs7(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, cee), cag) -> new_esEs18(xuu3110000, xuu6000, cee) new_compare17(xuu33000, xuu34000, ty_Char) -> new_compare6(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(ty_Ratio, cbe)) -> new_esEs18(xuu311000, xuu600, cbe) new_esEs30(xuu22, xuu17, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs6(xuu22, xuu17, bgg, bgh, bha) new_ltEs20(xuu3300, xuu3400, app(ty_Ratio, cbh)) -> new_ltEs18(xuu3300, xuu3400, cbh) new_esEs30(xuu22, xuu17, app(ty_[], bga)) -> new_esEs10(xuu22, xuu17, bga) new_lt4(xuu33000, xuu34000, app(app(ty_Either, ce), cf)) -> new_lt17(xuu33000, xuu34000, ce, cf) new_esEs26(xuu3110000, xuu6000, app(ty_Maybe, dba)) -> new_esEs5(xuu3110000, xuu6000, dba) new_ltEs9(LT, EQ) -> True new_esEs30(xuu22, xuu17, ty_Int) -> new_esEs14(xuu22, xuu17) new_esEs19(xuu33000, xuu34000, ty_Ordering) -> new_esEs11(xuu33000, xuu34000) new_compare10(xuu33000, xuu34000, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs8(xuu33000, xuu34000, app(ty_Ratio, cg)) -> new_esEs18(xuu33000, xuu34000, cg) new_esEs22(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs7(Left(xuu3110000), Left(xuu6000), ty_@0, cag) -> new_esEs16(xuu3110000, xuu6000) new_esEs10([], [], bhc) -> True new_esEs19(xuu33000, xuu34000, app(app(ty_Either, bdb), bdc)) -> new_esEs7(xuu33000, xuu34000, bdb, bdc) new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_ltEs4(@2(xuu33000, xuu33001), @2(xuu34000, xuu34001), bd, be) -> new_pePe(new_lt4(xuu33000, xuu34000, bd), new_asAs(new_esEs8(xuu33000, xuu34000, bd), new_ltEs5(xuu33001, xuu34001, be))) new_esEs26(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(app(app(ty_@3, hh), baa), bab)) -> new_ltEs13(xuu33000, xuu34000, hh, baa, bab) new_lt20(xuu33001, xuu34001, ty_Float) -> new_lt14(xuu33001, xuu34001) new_ltEs9(LT, GT) -> True new_esEs27(xuu3110001, xuu6001, app(app(ty_@2, dca), dcb)) -> new_esEs4(xuu3110001, xuu6001, dca, dcb) new_lt4(xuu33000, xuu34000, app(ty_[], bh)) -> new_lt7(xuu33000, xuu34000, bh) new_compare17(xuu33000, xuu34000, app(app(ty_@2, baf), bag)) -> new_compare13(xuu33000, xuu34000, baf, bag) new_esEs27(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt15(xuu33000, xuu34000) -> new_esEs11(new_compare8(xuu33000, xuu34000), LT) new_esEs21(xuu3110000, xuu6000, ty_Integer) -> new_esEs12(xuu3110000, xuu6000) new_esEs19(xuu33000, xuu34000, app(ty_Ratio, bdd)) -> new_esEs18(xuu33000, xuu34000, bdd) new_esEs20(xuu33001, xuu34001, ty_Bool) -> new_esEs9(xuu33001, xuu34001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(xuu33000, xuu34000) -> new_esEs11(new_compare11(xuu33000, xuu34000), LT) new_primMulNat0(Succ(xuu311000000), Succ(xuu600100)) -> new_primPlusNat0(new_primMulNat0(xuu311000000, Succ(xuu600100)), xuu600100) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs4(xuu3110002, xuu6002, ddc, ddd) new_esEs22(xuu3110000, xuu6000, ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_compare29(xuu33000, xuu34000, True, bf, bg) -> EQ new_lt4(xuu33000, xuu34000, ty_Char) -> new_lt16(xuu33000, xuu34000) new_primCmpNat0(Succ(xuu33000), Succ(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_lt20(xuu33001, xuu34001, ty_Char) -> new_lt16(xuu33001, xuu34001) new_ltEs17(Left(xuu33000), Left(xuu34000), ty_Ordering, fh) -> new_ltEs9(xuu33000, xuu34000) new_esEs20(xuu33001, xuu34001, ty_Integer) -> new_esEs12(xuu33001, xuu34001) new_ltEs8(Nothing, Nothing, cbg) -> True new_esEs5(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs13(xuu3110000, xuu6000) new_lt6(xuu33000, xuu34000, bf, bg) -> new_esEs11(new_compare13(xuu33000, xuu34000, bf, bg), LT) new_ltEs10(xuu3300, xuu3400) -> new_fsEs(new_compare11(xuu3300, xuu3400)) new_ltEs8(Just(xuu33000), Nothing, cbg) -> False new_ltEs12(xuu3300, xuu3400) -> new_fsEs(new_compare12(xuu3300, xuu3400)) new_compare18(xuu33000, xuu34000, ca) -> new_compare28(xuu33000, xuu34000, new_esEs5(xuu33000, xuu34000, ca), ca) new_ltEs17(Right(xuu33000), Right(xuu34000), hc, app(ty_Maybe, hg)) -> new_ltEs8(xuu33000, xuu34000, hg) new_compare12(xuu33, xuu34) -> new_primCmpInt(xuu33, xuu34) new_ltEs15(xuu3300, xuu3400) -> new_fsEs(new_compare8(xuu3300, xuu3400)) new_compare6(Char(xuu33000), Char(xuu34000)) -> new_primCmpNat0(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, ty_Bool) -> new_esEs9(xuu311000, xuu600) new_lt20(xuu33001, xuu34001, ty_Bool) -> new_lt5(xuu33001, xuu34001) new_esEs27(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_esEs23(xuu3110001, xuu6001, ty_Double) -> new_esEs13(xuu3110001, xuu6001) new_primCmpNat1(xuu3300, Succ(xuu3400)) -> new_primCmpNat0(xuu3300, xuu3400) new_esEs29(xuu311000, xuu600, app(app(ty_@2, cah), cba)) -> new_esEs4(xuu311000, xuu600, cah, cba) new_ltEs17(Right(xuu33000), Left(xuu34000), hc, fh) -> False new_ltEs9(EQ, LT) -> False new_compare17(xuu33000, xuu34000, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_compare7(xuu33000, xuu34000, bbb, bbc, bbd) new_lt19(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_primEqNat0(Zero, Zero) -> True new_esEs7(Left(xuu3110000), Left(xuu6000), ty_Float, cag) -> new_esEs15(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs6(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs30(xuu22, xuu17, app(app(ty_Either, bgb), bgc)) -> new_esEs7(xuu22, xuu17, bgb, bgc) new_ltEs8(Just(xuu33000), Just(xuu34000), ty_Char) -> new_ltEs16(xuu33000, xuu34000) new_lt4(xuu33000, xuu34000, ty_@0) -> new_lt15(xuu33000, xuu34000) new_esEs8(xuu33000, xuu34000, ty_Integer) -> new_esEs12(xuu33000, xuu34000) new_compare14(xuu33000, xuu34000, False, bf, bg) -> GT new_esEs26(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs30(xuu22, xuu17, ty_Bool) -> new_esEs9(xuu22, xuu17) new_esEs30(xuu22, xuu17, ty_Ordering) -> new_esEs11(xuu22, xuu17) new_lt18(xuu33000, xuu34000, cg) -> new_esEs11(new_compare27(xuu33000, xuu34000, cg), LT) new_compare113(xuu33000, xuu34000, False, cb, cc, cd) -> GT new_asAs(False, xuu123) -> False new_ltEs8(Just(xuu33000), Just(xuu34000), ty_@0) -> new_ltEs15(xuu33000, xuu34000) new_esEs29(xuu311000, xuu600, app(app(ty_Either, caf), cag)) -> new_esEs7(xuu311000, xuu600, caf, cag) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs10(xuu3110002, xuu6002, dch) new_esEs27(xuu3110001, xuu6001, app(ty_Maybe, dcc)) -> new_esEs5(xuu3110001, xuu6001, dcc) new_lt20(xuu33001, xuu34001, ty_@0) -> new_lt15(xuu33001, xuu34001) new_compare112(xuu116, xuu117, False, cca) -> GT new_esEs7(Left(xuu3110000), Right(xuu6000), caf, cag) -> False new_esEs7(Right(xuu3110000), Left(xuu6000), caf, cag) -> False new_ltEs9(EQ, EQ) -> True new_lt4(xuu33000, xuu34000, ty_Bool) -> new_lt5(xuu33000, xuu34000) new_primCmpNat2(Succ(xuu3400), xuu3300) -> new_primCmpNat0(xuu3400, xuu3300) new_compare15(xuu33000, xuu34000) -> new_compare25(xuu33000, xuu34000, new_esEs11(xuu33000, xuu34000)) new_esEs29(xuu311000, xuu600, ty_Ordering) -> new_esEs11(xuu311000, xuu600) The set Q consists of the following terms: new_esEs19(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_compare14(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Just(x0), Just(x1), ty_Float) new_compare17(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_@0) new_ltEs11(x0, x1) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs30(x0, x1, ty_Bool) new_compare111(x0, x1, True, x2, x3) new_lt4(x0, x1, ty_@0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat1(x0, Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primCompAux0(x0, EQ) new_primPlusNat1(Zero, Zero) new_ltEs8(Just(x0), Just(x1), ty_@0) new_compare6(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_ltEs8(Nothing, Nothing, x0) new_ltEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs29(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) new_compare24(x0, x1, False) new_lt20(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Bool) new_lt5(x0, x1) new_compare112(x0, x1, False, x2) new_ltEs15(x0, x1) new_ltEs19(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1, x2, x3, x4) new_compare17(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs5(Nothing, Just(x0), x1) new_esEs12(Integer(x0), Integer(x1)) new_primCmpNat2(Zero, x0) new_ltEs17(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Zero, Succ(x0)) new_compare17(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt4(x0, x1, ty_Bool) new_ltEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare11(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, app(ty_[], x2)) new_esEs10([], :(x0, x1), x2) new_ltEs17(Right(x0), Right(x1), x2, ty_@0) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare23(x0, x1, True, x2, x3, x4) new_esEs29(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs19(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt4(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], :(x0, x1), x2) new_esEs9(False, False) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, ty_Int) new_compare17(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Float) new_compare8(@0, @0) new_esEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs19(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt11(x0, x1) new_lt19(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs17(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulInt(Neg(x0), Neg(x1)) new_compare14(x0, x1, True, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_lt13(x0, x1, x2, x3, x4) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Right(x0), Right(x1), x2, ty_Char) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs10(:(x0, x1), [], x2) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10([], [], x0) new_esEs19(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs9(GT, GT) new_esEs27(x0, x1, ty_Float) new_esEs20(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs29(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs20(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs23(x0, x1, ty_Float) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), ty_@0, x2) new_esEs20(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_compare25(x0, x1, True) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Integer) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs17(Right(x0), Right(x1), x2, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_compare28(Just(x0), Nothing, False, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare28(Nothing, Nothing, False, x0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare110(x0, x1, True) new_lt20(x0, x1, ty_Integer) new_compare1(:(x0, x1), [], x2) new_lt20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt15(x0, x1) new_esEs5(Just(x0), Just(x1), ty_Integer) new_compare13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_Integer) new_ltEs9(LT, LT) new_esEs5(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(x0, x1, x2) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(False, False) new_esEs5(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Char) new_primMulInt(Pos(x0), Pos(x1)) new_lt20(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Double, x2) new_lt9(x0, x1) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare112(x0, x1, True, x2) new_lt20(x0, x1, ty_Bool) new_compare10(x0, x1, False) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs14(x0, x1) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Integer) new_esEs9(True, True) new_ltEs19(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs10(:(x0, x1), :(x2, x3), x4) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Nothing, x1) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_esEs23(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_primMulNat0(Succ(x0), Zero) new_lt4(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs5(Just(x0), Just(x1), ty_Double) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1) new_compare17(x0, x1, ty_Float) new_ltEs7(x0, x1, x2) new_esEs18(:%(x0, x1), :%(x2, x3), x4) new_esEs5(Nothing, Nothing, x0) new_esEs17(Char(x0), Char(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Int) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs22(x0, x1, ty_@0) new_primMulNat0(Zero, Zero) new_primCmpNat2(Succ(x0), x1) new_esEs20(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Char) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs23(x0, x1, ty_Bool) new_compare28(Nothing, Just(x0), False, x1) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_lt17(x0, x1, x2, x3) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Integer) new_esEs5(Just(x0), Just(x1), ty_Int) new_ltEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt6(x0, x1, x2, x3) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_compare26(x0, x1, x2, x3) new_ltEs17(Left(x0), Left(x1), ty_Float, x2) new_compare1([], [], x0) new_esEs8(x0, x1, ty_Integer) new_primPlusNat0(x0, x1) new_ltEs16(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt16(x0, x1) new_esEs26(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_compare28(x0, x1, True, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_primCompAux1(x0, x1, x2, x3) new_compare210(x0, x1, False, x2, x3) new_esEs5(Just(x0), Just(x1), ty_Ordering) new_esEs24(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_ltEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt19(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_not(True) new_lt19(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs17(Right(x0), Right(x1), x2, ty_Double) new_ltEs17(Left(x0), Right(x1), x2, x3) new_ltEs17(Right(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat1(x0, Zero) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_lt18(x0, x1, x2) new_esEs25(x0, x1, ty_Integer) new_esEs20(x0, x1, ty_@0) new_compare110(x0, x1, False) new_esEs21(x0, x1, app(ty_[], x2)) new_compare12(x0, x1) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_@0) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt14(x0, x1) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_compare29(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, ty_Char) new_ltEs6(True, True) new_compare25(x0, x1, False) new_esEs8(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs26(x0, x1, ty_Ordering) new_lt12(x0, x1) new_esEs22(x0, x1, ty_Double) new_lt4(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_compare17(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, ty_Double) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_asAs(True, x0) new_sr(x0, x1) new_primCompAux0(x0, LT) new_esEs8(x0, x1, app(ty_[], x2)) new_compare18(x0, x1, x2) new_pePe(True, x0) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_compare24(x0, x1, True) new_compare9(x0, x1) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2, x3) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare28(Just(x0), Just(x1), False, x2) new_compare15(x0, x1) new_esEs8(x0, x1, ty_Double) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs25(x0, x1, ty_Int) new_compare10(x0, x1, True) new_ltEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), ty_Int) new_fsEs(x0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(False, True) new_esEs9(True, False) new_ltEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs5(x0, x1, ty_Char) new_ltEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs17(Left(x0), Left(x1), ty_Integer, x2) new_compare17(x0, x1, ty_Integer) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(GT, GT) new_esEs5(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, ty_@0) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Ordering) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare23(x0, x1, False, x2, x3, x4) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Zero, Succ(x0)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_ltEs5(x0, x1, ty_Integer) new_ltEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Just(x0), Nothing, x1) new_compare113(x0, x1, False, x2, x3, x4) new_esEs30(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(x0, x1, ty_Integer) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs6(True, False) new_ltEs6(False, True) new_compare29(x0, x1, True, x2, x3) new_esEs11(LT, LT) new_sr0(Integer(x0), Integer(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primPlusNat1(Succ(x0), Zero) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_lt8(x0, x1, x2) new_esEs27(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Ordering) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, x2) new_ltEs17(Left(x0), Left(x1), ty_Bool, x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs14(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (43) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The graph contains the following edges 4 >= 1, 5 >= 3, 7 >= 4, 8 >= 5 *new_addToFM_C(Branch(Nothing, xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C1(xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Nothing, True, h), GT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 3 >= 5, 4 >= 7, 5 >= 8 *new_addToFM_C(Branch(Just(xuu600), xuu61, xuu62, xuu63, xuu64), Nothing, xuu31101, h, ba) -> new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), LT), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 3 >= 6, 4 >= 8, 5 >= 9 *new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, False, h, ba) -> new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, new_esEs11(new_compare28(Nothing, Just(xuu600), False, h), GT), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_addToFM_C2(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu63, Nothing, xuu31101, h, ba) The graph contains the following edges 4 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 *new_addToFM_C10(xuu600, xuu61, xuu62, xuu63, xuu64, xuu31101, True, h, ba) -> new_addToFM_C(xuu64, Nothing, xuu31101, h, ba) The graph contains the following edges 5 >= 1, 6 >= 3, 8 >= 4, 9 >= 5 ---------------------------------------- (44) YES ---------------------------------------- (45) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, hg), hh)) -> new_esEs1(xuu3110000, xuu6000, hg, hh) new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xuu3110000, xuu6000, cf, cg) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xuu3110001, xuu6001, ha, hb, hc) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(xuu3110000, xuu6000, bah, bba) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xuu3110001, xuu6001, gd, ge) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(xuu3110001, xuu6001, bcb, bcc) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, fa), fb), eh) -> new_esEs0(xuu3110000, xuu6000, fa, fb) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu3110002, xuu6002, bdc, bdd) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bc), bd)) -> new_esEs1(xuu3110000, xuu6000, bc, bd) new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_[], hd)) -> new_esEs(xuu3110000, xuu6000, hd) new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, da), cc) -> new_esEs2(xuu3110000, xuu6000, da) new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu3110000, xuu6000, bab, bac, bad) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(xuu3110000, xuu6000, bbe, bbf, bbg) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(xuu3110000, xuu6000, bf, bg, bh) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], eg), eh) -> new_esEs(xuu3110000, xuu6000, eg) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu3110000, xuu6000, dg, dh) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ca) -> new_esEs(xuu3110001, xuu6001, ca) new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, baa)) -> new_esEs2(xuu3110000, xuu6000, baa) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], h)) -> new_esEs(xuu3110000, xuu6000, h) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_[], df)) -> new_esEs(xuu3110000, xuu6000, df) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(xuu3110002, xuu6002, bdh, bea, beb) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(ty_Maybe, gh)) -> new_esEs2(xuu3110001, xuu6001, gh) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_Maybe, ec)) -> new_esEs2(xuu3110000, xuu6000, ec) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, ff), eh) -> new_esEs2(xuu3110000, xuu6000, ff) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, be)) -> new_esEs2(xuu3110000, xuu6000, be) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(xuu3110000, xuu6000, bbb, bbc) new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu3110000, xuu6000, cd, ce) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(xuu3110000, xuu6000, fg, fh, ga) new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xuu3110000, xuu6000, db, dc, dd) new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, he), hf)) -> new_esEs0(xuu3110000, xuu6000, he, hf) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu3110000, xuu6000, ed, ee, ef) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(xuu3110001, xuu6001, bcg, bch, bda) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(ty_[], bca), bag) -> new_esEs(xuu3110001, xuu6001, bca) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xuu3110000, xuu6000, ea, eb) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(xuu3110001, xuu6001, bcd, bce) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(ty_[], bdb)) -> new_esEs(xuu3110002, xuu6002, bdb) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu3110000, xuu6000, ba, bb) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, fc), fd), eh) -> new_esEs1(xuu3110000, xuu6000, fc, fd) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(ty_[], gc)) -> new_esEs(xuu3110001, xuu6001, gc) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(xuu3110002, xuu6002, bdg) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], bae), baf, bag) -> new_esEs(xuu3110000, xuu6000, bae) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(xuu3110002, xuu6002, bde, bdf) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(xuu3110000, xuu6000, bbd) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(xuu3110001, xuu6001, gf, gg) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(xuu3110001, xuu6001, bcf) new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_[], cb), cc) -> new_esEs(xuu3110000, xuu6000, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (46) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, be)) -> new_esEs2(xuu3110000, xuu6000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, baa)) -> new_esEs2(xuu3110000, xuu6000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, ba), bb)) -> new_esEs0(xuu3110000, xuu6000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, he), hf)) -> new_esEs0(xuu3110000, xuu6000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bc), bd)) -> new_esEs1(xuu3110000, xuu6000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, hg), hh)) -> new_esEs1(xuu3110000, xuu6000, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(xuu3110000, xuu6000, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu3110000, xuu6000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_[], hd)) -> new_esEs(xuu3110000, xuu6000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(ty_Maybe, gh)) -> new_esEs2(xuu3110001, xuu6001, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, ff), eh) -> new_esEs2(xuu3110000, xuu6000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(xuu3110001, xuu6001, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, fa), fb), eh) -> new_esEs0(xuu3110000, xuu6000, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, fc), fd), eh) -> new_esEs1(xuu3110000, xuu6000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(xuu3110001, xuu6001, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(xuu3110001, xuu6001, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(xuu3110000, xuu6000, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], eg), eh) -> new_esEs(xuu3110000, xuu6000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), gb, app(ty_[], gc)) -> new_esEs(xuu3110001, xuu6001, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(xuu3110002, xuu6002, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(xuu3110000, xuu6000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(xuu3110001, xuu6001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, da), cc) -> new_esEs2(xuu3110000, xuu6000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_Maybe, ec)) -> new_esEs2(xuu3110000, xuu6000, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(xuu3110000, xuu6000, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(xuu3110001, xuu6001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(xuu3110002, xuu6002, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu3110000, xuu6000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu3110000, xuu6000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(xuu3110000, xuu6000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(xuu3110001, xuu6001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(xuu3110002, xuu6002, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(xuu3110000, xuu6000, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(xuu3110002, xuu6002, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(xuu3110001, xuu6001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, app(ty_[], bca), bag) -> new_esEs(xuu3110001, xuu6001, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bbh, baf, app(ty_[], bdb)) -> new_esEs(xuu3110002, xuu6002, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], bae), baf, bag) -> new_esEs(xuu3110000, xuu6000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xuu3110000, xuu6000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xuu3110000, xuu6000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xuu3110000, xuu6000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu3110000, xuu6000, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_[], df)) -> new_esEs(xuu3110000, xuu6000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_[], cb), cc) -> new_esEs(xuu3110000, xuu6000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), ca) -> new_esEs(xuu3110001, xuu6001, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], h)) -> new_esEs(xuu3110000, xuu6000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (47) YES ---------------------------------------- (48) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu311000000), Succ(xuu600100)) -> new_primMulNat(xuu311000000, Succ(xuu600100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (49) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xuu311000000), Succ(xuu600100)) -> new_primMulNat(xuu311000000, Succ(xuu600100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (50) YES ---------------------------------------- (51) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (52) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (53) YES ---------------------------------------- (54) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu28200), Succ(xuu8900)) -> new_primMinusNat(xuu28200, xuu8900) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (55) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(xuu28200), Succ(xuu8900)) -> new_primMinusNat(xuu28200, xuu8900) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (56) YES ---------------------------------------- (57) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu28200), Succ(xuu8900)) -> new_primPlusNat(xuu28200, xuu8900) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (58) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(xuu28200), Succ(xuu8900)) -> new_primPlusNat(xuu28200, xuu8900) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (59) YES